“mp4 para mp3 em python” Respostas de código

mp4 para mp3 em 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 para 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!?

Respostas semelhantes a “mp4 para mp3 em python”

Perguntas semelhantes a “mp4 para mp3 em python”

Mais respostas relacionadas para “mp4 para mp3 em python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código