2022-03-18 04:09:03 +08:00
|
|
|
import os
|
|
|
|
|
2022-06-11 04:35:48 +08:00
|
|
|
from yt_shared.config import TMP_DOWNLOAD_PATH
|
2022-03-18 04:09:03 +08:00
|
|
|
|
2022-06-11 04:35:48 +08:00
|
|
|
# More here https://github.com/yt-dlp/yt-dlp/blob/master/yt_dlp/options.py
|
2022-03-18 04:09:03 +08:00
|
|
|
YTDL_OPTS = {
|
2022-06-11 04:35:48 +08:00
|
|
|
'outtmpl': os.path.join(TMP_DOWNLOAD_PATH, '%(title)s.%(ext)s'),
|
2022-03-18 04:09:03 +08:00
|
|
|
'format': 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/mp4',
|
|
|
|
'noplaylist': True,
|
2022-06-11 04:35:48 +08:00
|
|
|
'max_downloads': 1,
|
|
|
|
'concurrent_fragment_downloads': 2,
|
|
|
|
'restrictfilenames': True,
|
2022-03-18 04:09:03 +08:00
|
|
|
}
|