Nicolas Herbaut

Results 12 comments of Nicolas Herbaut

@e-hickey @mrjavicho @12buntu I had the same problem, fixed it with the last comment of https://github.com/samanyougarg/hanuman/issues/3 it should be clearer that you can't have this site working with the git...

@Jeronimo95 It depends what are the system requirements for the project. It might be resource hungry. For example, I've deployed ampache which performs simple audio transcoding with ffmpeg, and it's...

@dularion what are the possibilities for technical integration? for example, I have a poc (https://github.com/nherbaut/vhg-adaptation-worker) that runs async transcoding and dash chunking tasks that use a transcoding workflow implemented in...

Please note that if we want to support adaptive streaming (DASH/HLS) to impove users' quality of experience, it is necessary to down-scale the videos to genereate low-def chunks. This requires...

definitely not the same thing. Also looking for the feature

adding the configuration @ilcpm suggested and restarting VSCode worked for me on v0.70

thanks @SamTV12345 for the great work!

SimpleStorage.sol ```solidity // SPDX-License-Identifier: MIT pragma solidity 0.8.19; contract SimpleStorage { string private storedData; // Function to set the string function set(string memory x) public { storedData = x; }...

and that's the java code generated with 4.11.0, that compiles and work ```java package com.zuehlke.blockchain.model; import java.math.BigInteger; import java.util.Arrays; import java.util.Collections; import org.web3j.abi.TypeReference; import org.web3j.abi.datatypes.Function; import org.web3j.abi.datatypes.Type; import org.web3j.abi.datatypes.Utf8String; import...