Omar Riaz
Omar Riaz
In terms of syntax: you can use addStdoutOutput() and addInput("-"). Your command would look like this: ``` new FFmpegBuilder() .overrideOutputFiles(true) .setFormat("image2pipe") .addExtraArgs("-vcodec", "mpjeg") .addExtraArgs("-r", "24") .addInput("-") .addStdoutOutput() .setVideoCodec("mpeg1video") .setFormat("mpegts") .setVideoQuality(1)...
FFcomon (abstract class which is extended by FFmpeg) throws an IOException through the throwOnError(Process p) method. You should be able to view the stackTrace or catch the IOException it throws...
Updated test to support device_number. Is it ok to include the parameter if there are no duplicates and it is set to zero?
Hi @bramp , did you get a chance to review?
For an OS independent version: ``` RunProcessFunction func = new RunProcessFunction(); func.setWorkingDirectory("/path/to/working/dir"); FFmpeg ffmpeg = new FFmpeg("/path/to/ffmpeg", func); ``` [[from random example 5]](https://github.com/bramp/ffmpeg-cli-wrapper/wiki/Random-Examples) Or, if you have the path to...
You should be able to view the error that was returned from the FFmpeg process through stdout; that is, from the source with which you are viewing this stackTrace. If...
@igracia Hello. I was planing to work on this for issue #156 to get support for input devices. Are you currently working on it?
Easy way: You can call addExtraArguments() method to add the -itoffset argument and then the second input. Better but longer: use the AbstractInputStreamBuilder to implement your own InputStreamBuilder instances, which...