.
This commit is contained in:
parent
d6de10e6da
commit
8d2915eea1
1 changed files with 9 additions and 7 deletions
16
skullbot.py
16
skullbot.py
|
@ -214,13 +214,15 @@ async def playlist_cmd(ctx):
|
||||||
# YTDL / FFMPEG SETUP
|
# YTDL / FFMPEG SETUP
|
||||||
# =====================
|
# =====================
|
||||||
ytdl_format_options = {
|
ytdl_format_options = {
|
||||||
"format": "bestaudio/best",
|
'format': 'bestaudio/best',
|
||||||
"cookiefile": "/app/cookies.txt",
|
'noplaylist': True,
|
||||||
"extractor_args": {
|
'quiet': True,
|
||||||
"youtube": {"player_client": ["android"]}
|
'extractaudio': True,
|
||||||
},
|
'audioformat': 'mp3',
|
||||||
"noplaylist": True,
|
'nocheckcertificate': True,
|
||||||
"quiet": True,
|
'ignoreerrors': True,
|
||||||
|
'source_address': '0.0.0.0',
|
||||||
|
'cookiefile': '/app/cookies.txt',
|
||||||
}
|
}
|
||||||
|
|
||||||
ffmpeg_options = {
|
ffmpeg_options = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue