ffmpeg-cli-wrapper
ffmpeg-cli-wrapper copied to clipboard
Java wrapper around the FFmpeg command line tool
**Is your feature request related to a problem? Please describe.** I need to ensure that some videos have a specific color space. To check this I would like to use...
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)....
Bumps org.apache.commons:commons-lang3 from 3.16.0 to 3.18.0. [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...
Hello, @bramp, @Euklios I added support for the `-map` option. This option allows users to control which input streams are included in the output. Since FFmpeg allows multiple -input options,...
## Changes + add getter (passDirectory, passlogPrefix) + add test + add get pass directory when delete passlog ## Related Issue #287
```java package net.bramp.ffmpeg.io; import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeoutException; /** * A collection of utility methods for dealing with processes. * * @author bramp */ public final class ProcessUtils { private ProcessUtils()...