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

Java wrapper around the FFmpeg command line tool

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

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

enhancement

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

Bumps org.apache.commons:commons-lang3 from 3.16.0 to 3.18.0. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.commons:commons-lang3&package-manager=maven&previous-version=3.16.0&new-version=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...

dependencies
java

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

enhancement