ffmpeg-python icon indicating copy to clipboard operation
ffmpeg-python copied to clipboard

Python bindings for FFmpeg - with complex filtering support

Results 216 ffmpeg-python issues
Sort by recently updated
recently updated
newest added

Here's my python code: ``` import ffmpeg input_dir = "C:/Users/27433/Desktop/1/" video_file = '1_1_1.mp4' subtl_file = '1_1_1.srt' ( ffmpeg .input(input_dir + video_file) .filter('subtitles', input_dir + subtl_file) .output(input_dir + 'output.mp4') .run() )...

I am trying to send encoded video packets from a source location via websockets (as per project requirements) towards a destination location and transcode them. I am trying to pipe...

program : import subprocess import ffmpeg def merge_files(): videofile = ffmpeg.input("C:\\Users\\amd\\Downloads\\ytd\\Two Minute Meditation_video.webm") audiofile = ffmpeg.input("C:\\Users\\amd\\Downloads\\ytd\\Two Minute Meditation_audio.webm") outputfile = ffmpeg.output("C:\\Users\\amd\\Downloads\\ytd\\Two Minute Meditation_complete.mp4") codec = "copy" subprocess.run(f"ffmpeg -i {videofile} -i...

Hey folks, I was hoping one of you fine folks could translate this: **"ffmpeg -f lavfi -i anullsrc=r=16000:cl=mono -f v4l2 -r 24 -i /dev/video0 -c:v libx264 -pix_fmt yuv420p -preset ultrafast...

how to do this with ffmpeg-python `ffmpeg -i video.mp4 -i image.png -map 1 -map 0 -c copy -disposition:0 attached_pic out.mp4` or `ffmpeg -i in.mp4 -i IMAGE -map 0 -map 1...

Fixes kkroening/ffmpeg-python/issues/463. Check if the stream name has already been specified as a metadata stream. there are no guarantees that the user has done this **correctly.**

When I run `pip install ffmpeg-python` in win10, I got error as below, what can I do? > Collecting ffmpeg-python Using cached ffmpeg_python-0.2.0-py3-none-any.whl (25 kB) Collecting future (from ffmpeg-python) Using...

Hi, FFmpeg is supposed to support NVIDIA CUDA CODEC SDK, please refer to [https://developer.nvidia.com/FFmpeg](url) So I wonder whether this wrapper also support the GPU back-end encode and decode? I believe...

I would like to extract the following "stream" and I found out that attachments can be dumped to a file using the `dump_attachment` argument. ```yaml Stream #0:3: Attachment: none Metadata:...