python-ffmpeg
python-ffmpeg copied to clipboard
A python interface for FFmpeg using asyncio
This PR is mostly a refactoring of the code base to cover the whole project with correct type-hints. Additionally it also: - adds support for any `AsyncIterable[bytes]` as pipe input...
I have a similar issue to https://github.com/jonghwanhyeon/python-ffmpeg/pull/61 where I want to change the priority of the FFMpeg process. The problem I see is there are too many options available and...
This is a raw `ffmpeg` command for muxing audio and video ```bash ffmpeg -i temp.mp4 \ -i temp.m4a \ -c:v copy -c:a aac -map 0:v:0 -map 1:a:0 \ output.mp4 ```...
I'm trying to use these binding to read in an rtsp stream so that I can get some of the data sent along with it. I am trying to run...
Can you make the binary path optional when creating an instance and add it to the `execute` method? For example: ```py stream = ( FFmpeg() .option("y") .input(audio_file) .input(image_file) .output("Output.mp3", {...})...
File "D:\py240417\pythonPro\.venv\Lib\site-packages\ffmpeg\ffmpeg.py", line 204, in execute raise FFmpegError.create(message=futures[2].result(), arguments=self.arguments) ffmpeg.errors.FFmpegError: Conversion failed!