ffmpeg-cli-wrapper
ffmpeg-cli-wrapper copied to clipboard
Java wrapper around the FFmpeg command line tool
Is LAME library supported so we can convert to mp3's? That would be a really really nice feature. Execute stuff like: ``` ffmpeg -i inputfile.m4a -c:a libmp3lame -ac 2 -q:a...
This also supports requirement mentioned in #138. In this version `-show_frames` is included in the ffprobe command, and frame data is extracted and deserialised. This is accomplished by a new...
Hi I was looking at the following link for adding a watermark [https://github.com/bramp/ffmpeg-cli-wrapper/issues/76](https://github.com/bramp/ffmpeg-cli-wrapper/issues/76) Specifically the code `FFmpegBuilder builder = new FFmpegBuilder() .setInput(infile) .addInput(sampleWatermarkImg) .overrideOutputFiles(true) .addOutput(destFile) .setVideoCodec(codec) .addExtraArgs(extraArgs) .setVideoFrameRate(24, 1) .setVideoResolution(...
Hi, Is there a way to join mp3 to a video? If so, please share with me some sample code for it. I couldn't find the perfect code that works....
I used this library in my spring-boot application and it was running OK, but when I deployed the application with a jar file, compression stopped working as it expects to...
**Is your feature request related to a problem? Please describe.** There is a wiki that shows examples of how to convert a ffmpeg command string to FFmpegBuilder instance. So it...
with ffprobe version 4.2.1: ` FFmpegProbeResult probeResult = fFprobe.probe(INPUT_MP4_FILE_LOCATION, "-show_data");` this gives the error: > { > "error": { > "code": -1414549496, > "string": "Option not found" > } >...
Merge Videos
Hi I was following this [issue ](https://github.com/bramp/ffmpeg-cli-wrapper/issues/49)but I am still having issues merging 2 video files My code is as follows `@Test public void test() throws IOException { String introVideoFile="C:\\development\\vid\\final\\tmpIntro_3.mp4";...
i have a project rtsp to rtmp,when i don't want to see rtmp video,how to close ffmpeg?