From 8d2915eea1ba89890dffaff0859fe6530520e93e Mon Sep 17 00:00:00 2001 From: = <=> Date: Sat, 20 Sep 2025 08:51:13 +0200 Subject: [PATCH] . --- skullbot.py | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/skullbot.py b/skullbot.py index 0595fef..b3971f8 100644 --- a/skullbot.py +++ b/skullbot.py @@ -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 = {