rssVideos: Fix the options issue

This commit is contained in:
Geoffrey Frogeye 2022-04-10 09:58:06 +02:00
parent a862f5c5e3
commit 369890e348
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8

View file

@ -20,6 +20,7 @@ import re
import subprocess import subprocess
import time import time
import typing import typing
import sys
import coloredlogs import coloredlogs
import configargparse import configargparse
@ -473,8 +474,10 @@ class RVDatabase:
@property @property
def ytdl_opts(self) -> dict: def ytdl_opts(self) -> dict:
# Get user/system options # Get user/system options
_, _, _, ydl_opts = yt_dlp.parse_options([""]) prev_argv = sys.argv
# Have to put a dummy option otherwise yt-dlp will use sys.argv sys.argv = ['yt-dlp']
_, _, _, ydl_opts = yt_dlp.parse_options()
sys.argv = prev_argv
return ydl_opts return ydl_opts
@property @property