diff --git a/ythdd_extractor.py b/ythdd_extractor.py index 20833be..ce24117 100644 --- a/ythdd_extractor.py +++ b/ythdd_extractor.py @@ -151,6 +151,8 @@ def extract(url: str, getcomments=False, maxcomments="", manifest_fix=False): ytdl_context['extractor_args']['youtube']['player_client'] = ['default', 'web_safari'] elif ythdd_globals.config['extractor']['preferred_extractor']: ytdl_context['extractor_args']['youtube']['player_client'] = [ythdd_globals.config['extractor']['preferred_extractor']] + else: + ytdl_context['extractor_args']['youtube']['player_client'] = ['android_vr'] with yt_dlp.YoutubeDL(ytdl_opts) as ytdl: result = ytdl.sanitize_info(ytdl.extract_info(url, download=False)) return result