“MP4 bis MP3 in Python” Code-Antworten

MP4 bis MP3 in Python

# -*- coding: utf-8 -*-
from moviepy.editor import *

video = VideoFileClip('Sora no Kiseki the 3rd Evolution [BGM RIP] - Cry for your Eternity.mp4')
video.audio.write_audiofile('test.mp3')
Uptight Unicorn

Python mp4 bis mp3

import os
from moviepy.editor import *
video = VideoFileClip(os.path.join("path","to","movie.mp4"))
video.audio.write_audiofile(os.path.join("path","to","movie_sound.mp3"))
dex!?

Ähnliche Antworten wie “MP4 bis MP3 in Python”

Fragen ähnlich wie “MP4 bis MP3 in Python”

Weitere verwandte Antworten zu “MP4 bis MP3 in Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen