“Python YouTube Download mp3” Code-Antworten

Laden Sie YouTube Audio Python herunter

from youtube_dl import YoutubeDL

audio_downloder = YoutubeDL({'format':'bestaudio'})

audio_downloader.extract_info(link to the video)
Hugh_Man

Python YouTube Download mp3

from __future__ import unicode_literals
import youtube_dl
print("Insert the link")
link = input ("")

ydl_opts = {
    'format': 'bestaudio/best',
    'postprocessors': [{
        'key': 'FFmpegExtractAudio',
        'preferredcodec': 'mp3',
        'preferredquality': '320',
    }],
}

with youtube_dl.YoutubeDL(ydl_opts) as ydl:
    ydl.download([link])
#note: you need to have ffmpeg for this to work
#but in the end you get a real mp3 
#instead of a mp4 with mp3 as file name
MaarS

Ähnliche Antworten wie “Python YouTube Download mp3”

Fragen ähnlich wie “Python YouTube Download mp3”

Weitere verwandte Antworten zu “Python YouTube Download mp3” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen