ffmpeg-cli-wrapper
ffmpeg-cli-wrapper copied to clipboard
Java wrapper around the FFmpeg command line tool
Hi, I use this library as an RTSP client to record IP camera streams. I can start the streams but I could not figure out how to stop recoding remotely,...
Greetings, Is there any way to redirect ffmpeg logs to another output stream rather than `System.out`?
how to place moov atom to play mp4 video progressively.. how to apply qt-faststart into wrapper code? my code: [FFmpegBuilder builder = new FFmpegBuilder() .setInput(input) // Filename, or a FFmpegProbeResult...
I need to manage the video's aspect ratio. For instance, I need to change a video with aspect ratio 4:3 to a video with aspect ratio 16:9 without changing number...
**Describe the bug** some usage I use it below cause different results. ``` java 1. FFmpegOutputBuilder outputBuilder = new FFmpegBuilder() .addInput(filePath) .overrideOutputFiles(true) .addOutput( output) .disableVideo() .disableSubtitle() .setAudioChannels(1) .setAudioSampleRate(16000) .setFormat("s16le"); fFmpegExecutor.createJob(outputBuilder.done()).run();...
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)....
I'm trying to encode a video into an audio, and get the output in memory rather tahn writing to a file. ``` FFmpegBuilder builder = new FFmpegBuilder() .setInput("input.mp4") // Filename,...
Hello, I'm new to ffmpeg and I have a silly question. I need to read mp4 video and rewrite frames pts data. Is there any way to achieve it with...
The output format of the flags column of codecs have changed starting with FFMpeg 1.0, and so ffmpeg.codecs() returns an empty list. This pull request uses a different regex pattern...