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

I need to add text on video in random time. Something like this [example (click)](https://www.codegrepper.com/code-examples/whatever/add+text+to+video+ffmpeg) Can I do something like this with your library?

I am using a translator because I am not good at English, so please understand. If you issue the following command for a vertical video, ffprobe will output the following...

When I wanna use the code in `FFmpegGetInfoTest`, but I found that the inner Enum `Codec.Type` is unable to access in the outside. So just simpley public this Enum please~

I saw the state enumeration value provided by ffmpegjob, but I didn't see it in the source code, such as echo $? Is it my negligence to ask again whether...

Hi i want to do it as simply as the title says , i am very new with this wrapper but it looks so great project :) I have read...

Adds support for #93 Also, I had to change the base java version to 11 due to this error: ``` [ERROR] Failed to execute goal com.spotify.fmt:fmt-maven-plugin:2.18:format (default) on project ffmpeg:...

**Describe the bug** FFmpegBuilder some params order must add in -i option back **To Reproduce** ```java File file = new File("cut1.png"); file.createNewFile(); FFmpegBuilder builder = new FFmpegBuilder() .overrideOutputFiles(true) .addOutput(file.getAbsolutePath()).done() .addInput(probeResult).addExtraArgs("-vframes",...

Hi, While browsing the test codes, I tried adding watermark to the video. But I did not get any successful results. ![image](https://user-images.githubusercontent.com/34922338/167411875-adc0208e-ab56-44db-8ebd-fd9ba5c549d3.png) **First error;** - java.lang.IllegalStateException: Target size does not...

``` FFmpegBuilder fFmpegBuilder = new FFmpegBuilder() .setInput(filePath) .overrideOutputFiles(true) .addOutput(filePathWithoutExtension.concat("_144_video_output.webm")) .setAudioCodec("libvorbis") .setVideoCodec("libvpx-vp9") .setVideoResolution(256, 144) .done(); fFmpegExecutor.createJob(fFmpegBuilder).run(); ``` I am creating .webm file of different resolution Now i want to create webm...

I have a question what i need to write in path to ffmpeg in Lunux Ubuntu actually Is executable file or something else Do I need to do make install...