Skip to main content
-1 votes
0 answers
66 views

When I try to use matplotlib's ``FFMpegWriter```. import matplotlib.animation as animation FFwriter = animation.FFMpegWriter(fps=10) ... ani.save('./temp/animation.mp4', writer = FFwriter) I get the ...
Uwe.Schneider's user avatar
4 votes
1 answer
145 views

I have an initially undefined number of input mono audio files (.wav) that I want to merge into a single stereo output audio file (.mp3), so that one of the input files goes into left channel, and all ...
Maciej Zgadzaj's user avatar
0 votes
1 answer
177 views

I am trying to create a Python Cog for a Discord.py bot on Windows 10 that allows the bot to join a voice channel to play music or funny audio. It is just something for me and my friends to goof off ...
Gary Storm's user avatar
1 vote
2 answers
831 views

I am using yt_dlp with Python to load a video from Youtube as an audio-only mp3 file. Until recently this worked fine, but now I get the following error message: ERROR: Postprocessing: audio ...
Ralf Stresow's user avatar
-1 votes
1 answer
568 views

ENVIRONMENT: Python 3.10 Windows 11 ffmpeg-python==0.2.0 CONTEXT: I am trying to add hardcoded subtitles on a video with ffmpeg and Pyton. PROBLEM: ffmpeg is not able to find the path of my ass ...
Gauthier Buttez's user avatar
1 vote
2 answers
229 views

I'm trying to resize a video file which a user has uploaded to Django, by using ffmpeg-python. The documentation isn't very easy to understand, so I've tried to cobble this together from various ...
kunambi's user avatar
  • 772
2 votes
0 answers
129 views

I'm very new to ffmpeg and unable to wrap my head around the concepts entirely. My goal for this little script I've been working on all day is to: Step 1: Read a list of timestamps from a text file ...
Hriday NS's user avatar
-1 votes
1 answer
167 views

I'm working on a project where I need to transcribe audio stored in a Google Cloud Storage bucket using OpenAI's Whisper model. The audio is stored in WebM format with Opus encoding, and due to the ...
Douglas Landvik's user avatar
0 votes
1 answer
71 views

I have a mov file with multiple video streams, and I'm trying to use ffmpeg python bindings to read each stream and save all of its frames. To do so, I've made a code similar to this one: import numpy ...
Dolev Shapira's user avatar
0 votes
1 answer
203 views

Code I'm working on a script that allows users to manually select and download separate video and audio streams from YouTube using yt-dlp. The script lists the available video and audio formats, lets ...
Aditya Kumar's user avatar
0 votes
1 answer
443 views

I am a fresh programmer and I am learning the Python language. I have been trying to design a graphical application (using tkinter and ffmpeg-python libraries) that converts an image file along with ...
Karolek's user avatar
-1 votes
2 answers
74 views

final escapedOverlayText = overlayText.replaceAll(''', '\''); final command = '-i $videoPath -vf "drawtext=text='$escapedOverlayText':x=10:y=10:fontsize=24:fontcolor=white" -c:a copy $...
Umair Manzoor's user avatar
0 votes
0 answers
108 views

I am facing issues using ffmpeg python to process camera frames. My first approach with process.communicate() worked well, but has latency issues. process = ( ffmpeg .input('...
sa_penguin's user avatar
-1 votes
1 answer
112 views

I have this python script that is supposed to record my screen, on mac os. import cv2 import numpy as np from PIL import ImageGrab import subprocess import time def record_screen(): # Define the ...
John Thesaurus's user avatar
-1 votes
1 answer
60 views

I am attempting to edit some code in python for extracting frames from a video (using parallel processing to make it faster) a friend created that works on windows, so that it can be used on macOS. ...
Bruno Hawkins's user avatar

15 30 50 per page
1
2 3 4 5
9