ffmpeg-cli-wrapper
ffmpeg-cli-wrapper copied to clipboard
Java wrapper around the FFmpeg command line tool
Are the classes such as `FFmpeg` and `FFmpegExecutor` all thread safe, or do I need to implement synchronization externally?
**Describe the bug** id variable in FFmpegStream is missing id attribute has hex value of subtitle or close caption language. **To Reproduce** ``` // Example code //In class FFmpegStream we...
It would be useful to support arbitrary extra arguments to FFprobe. Specifically I'm trying to set the expected input format, or a format/protocol whitelist. Currently this means I must reimplement...
Can you add in this project homepage useful information for newcomers to start: - Java version supported - FFmpeg version supported - Operating systems supported
I'm using the `setComplexVideoFilter` to add an `adelay/amix` filter, to merge audio and video tracks that have different lengths, into a single file. I have ffmpeg 3.2 installed in OS...
Right now it's required to provide at least one input. I've got situation when: 1. input definition is complex: `-f lavfi -i aevalsrc=0` 2. it has to be before `extra_args`...
Convert many of the objects to AutoValues with https://github.com/google/auto/blob/master/value/userguide/index.md
As ffmpeg is running, parse the output and provide some kind of feedback to the caller as to progress.
Format and AudioSampleRate needed in FFmpegBuilder. ffmpeg -f s16le -ar 16000 -i input.pcm output.wav It wont work with ffmpeg -i input.pcm -f s16le -ar 16000 output.wav I added format and...
Use ffmpeg to get frames e.g. as BufferedImage. Set decoding options to runtime, e.g. nextFrame(), seek(int timestamp), ... This possibilities are highly needed to perform imageprocessing tools to videos. Is...