This commit is contained in:
= 2025-09-20 08:51:13 +02:00
parent d6de10e6da
commit 8d2915eea1

View file

@ -214,13 +214,15 @@ async def playlist_cmd(ctx):
# YTDL / FFMPEG SETUP
# =====================
ytdl_format_options = {
"format": "bestaudio/best",
"cookiefile": "/app/cookies.txt",
"extractor_args": {
"youtube": {"player_client": ["android"]}
},
"noplaylist": True,
"quiet": True,
'format': 'bestaudio/best',
'noplaylist': True,
'quiet': True,
'extractaudio': True,
'audioformat': 'mp3',
'nocheckcertificate': True,
'ignoreerrors': True,
'source_address': '0.0.0.0',
'cookiefile': '/app/cookies.txt',
}
ffmpeg_options = {