allow adding global yt-dlp flags

This commit is contained in:
j 2024-10-09 17:49:21 +01:00
parent 7cc1504069
commit 9e00dd09e3
2 changed files with 9 additions and 3 deletions

View file

@ -40,8 +40,12 @@ info_key_map = {
'display_id': 'id',
}
YT_DLP = ['yt-dlp']
if settings.YT_DLP_EXTRA:
YT_DLP += settings.YT_DLP_EXTRA
def get_info(url, referer=None):
cmd = ['yt-dlp', '-j', '--all-subs', url]
cmd = YT_DLP + ['-j', '--all-subs', url]
if referer:
cmd += ['--referer', referer]
p = subprocess.Popen(cmd,
@ -93,7 +97,7 @@ def add_subtitles(item, media, tmp):
sub.save()
def load_formats(url):
cmd = ['yt-dlp', '-q', url, '-j', '-F']
cmd = YT_DLP + ['-q', url, '-j', '-F']
p = subprocess.Popen(cmd,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE, close_fds=True)
@ -112,7 +116,7 @@ def download(item_id, url, referer=None):
if isinstance(tmp, bytes):
tmp = tmp.decode('utf-8')
os.chdir(tmp)
cmd = ['yt-dlp', '-q', media['url']]
cmd = YT_DLP + ['-q', media['url']]
if referer:
cmd += ['--referer', referer]
elif 'referer' in media:

View file

@ -291,6 +291,8 @@ DATA_UPLOAD_MAX_MEMORY_SIZE = 32 * 1024 * 1024
EMPTY_CLIPS = True
YT_DLP_EXTRA = []
#you can ignore things below this line
#=========================================================================
LOCAL_APPS = []