I need to remove all audio from a video and save the video without the audio. The original can de discarded.
All answers I've found use ffmpeg, but this is not really an option for my use case.
You can use moviepy:
from moviepy.editor import VideoFileClip
videoclip = VideoFileClip("video.mp4")
new_clip = videoclip.without_audio()
new_clip.write_videofile("final_cut.mp4")
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With