ffmpeg-cli-wrapper
ffmpeg-cli-wrapper copied to clipboard
Java wrapper around the FFmpeg command line tool
I am looking to detect the volume of the mp4 file to see if the user is actually speaking in the video or not. For this I planned to check...
**Affected Version** The latest version 0.7.0 and below. **Describe the vulnerability** `net.bramp.ffmpeg.FFmpeg.` is designed to create an FFmpeg object. However, passing an unchecked argument to this API can lead to...
As commented by @Euklios the java LTS are 8, 11, 17, 21, with "Java 8 was so popular that it won't die.", but many companies moving to active projects to...
id variable is added to support subtitle and close caption hex code , so that we can find the language code using it
**Is your feature request related to a problem? Please describe.** This isn't necessarily a problem, but for my use-case, I sometimes have to restart the server while ffmpeg is still...
```java public static Set closeIdSet = new HashSet(); executor.execute(() -> { // thread Thread currentThread = Thread.currentThread(); String currentJobId="xxxx"; ScheduledExecutorService sche= new ScheduledThreadPoolExecutor(1); sche.scheduleAtFixedRate(() -> { if(closeIdSet.contains(currentJobId)){ //force stop thread...
Hi folks , I wrote a simple UDP stream recorder application with using this library in Java 11. Everything works fine except stopping FFMPEG record process before the duration time....
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)....
In my project I use the following ffmpeg command, that successfully works: ffmpeg -y -i input1.mp4 -i input2.mp4 -loop 1 -framerate 25 -t 5 -i picture.png -i input3.mp4 -i input4.mp4...
**Describe the bug** When you set custom pass directory via builder (FFmpegBuilder().setPassDirectory()), generated passlog files is not deleted because in deletPassLog function https://github.com/bramp/ffmpeg-cli-wrapper/blob/master/src/main/java/net/bramp/ffmpeg/job/TwoPassFFmpegJob.java#L41 this directory is not use but always...