ffmpeg-cli-wrapper icon indicating copy to clipboard operation
ffmpeg-cli-wrapper copied to clipboard

Java wrapper around the FFmpeg command line tool

Results 140 ffmpeg-cli-wrapper issues
Sort by recently updated
recently updated
newest added
trafficstars

Are the classes such as `FFmpeg` and `FFmpegExecutor` all thread safe, or do I need to implement synchronization externally?

question

**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...

enhancement

Can you add in this project homepage useful information for newcomers to start: - Java version supported - FFmpeg version supported - Operating systems supported

enhancement

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

enhancement

As ffmpeg is running, parse the output and provide some kind of feedback to the caller as to progress.

enhancement

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...

enhancement

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...

enhancement