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

Hi there, I'am working on a project where I have to decode, encode and join several raw audio files. For example: file1.pcma file2.pcma with a command like this: ``` ffmpeg.exe...

enhancement

By ignoring warning messages about unhandled key `out_time_us` are not displayed. Fixes #191

**Describe the bug** When using ffmpeg 4.1 and ProgressListener the following line gets logged a lot ``` 2018-12-19 16:52:28,759 [TcpProgressParser(tcp://127.0.0.1:34256)] WARN net.bramp.ffmpeg.progress.Progress - skipping unhandled key: out_time_us = 37909333 ```...

ffmpeg -i source.mp4 -codec:v libx264 -codec:a mp3 -map 0 -f ssegment -segment_format mpegts -segment_list playlist.m3u8 -segment_time 10 out%03d.ts how do i perform the above command using ffmpeg-cli-wrapper thx plz be...

The ffmpeg-cli-wrapper library is a simple wrapper around the ffmpeg command line. If you have questions on how to use the library, please check out the [usage](https://github.com/bramp/ffmpeg-cli-wrapper#usage), or [random examples](https://github.com/bramp/ffmpeg-cli-wrapper/wiki/Random-Examples)....

**Is your feature request related to a problem? Please describe.** I was using JavaCV to play multiple audio and video streams. However, the audio gradually lags behind. I tried to...

I hope to provide customizable throwOnError time. ``` protected void throwOnError(Process p) throws IOException { try { // TODO In java 8 use waitFor(long timeout, TimeUnit unit) if (ProcessUtils.waitForWithTimeout(p, 1,...

I need run FFmpegExecutor, and return java.io.File, its possible?

The ffmpeg-cli-wrapper library is a simple wrapper around the ffmpeg command line. If you have questions on how to use the library, please check out the [usage](https://github.com/bramp/ffmpeg-cli-wrapper#usage), or [random examples](https://github.com/bramp/ffmpeg-cli-wrapper/wiki/Random-Examples)....

Question, I include this library in a small FX application, and I would like to know how to go about killing (SIGINT) the ffmpeg process in the event of the...

question