Mein Code: < /p>
Code: Select all
with open('Links.txt') as f:
content = f.readlines()
for links in content:
ydl_opts = {
'format': 'bestaudio/best',
'postprocessors': [{
'key': 'FFmpegExtractAudio',
'preferredcodec': 'mp3',
'preferredquality': '192',
}],
}
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
ydl.download([links])
und ich brauche die Option oder eine Möglichkeit, die Ausgabe auszublenden. < /p>