From f08b64ed9d33c3348411d200f11bb91461001ea5 Mon Sep 17 00:00:00 2001 From: bashonly Date: Fri, 23 May 2025 04:24:38 -0500 Subject: [PATCH] set vcodec Authored by: bashonly --- yt_dlp/extractor/podchaser.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/yt_dlp/extractor/podchaser.py b/yt_dlp/extractor/podchaser.py index b42683d8fc..6c125f9ba6 100644 --- a/yt_dlp/extractor/podchaser.py +++ b/yt_dlp/extractor/podchaser.py @@ -70,6 +70,8 @@ class PodchaserIE(InfoExtractor): 'categories': (('summary', None), 'categories', ..., 'text', {str}, filter, all, {orderedSet}), 'tags': ('tags', ..., 'text', {str}), })) + info['vcodec'] = 'none' + if info.get('series_id'): podcast_slug = traverse_obj(podcast, ('slug', {str})) or 'podcast' episode_slug = traverse_obj(episode, ('slug', {str})) or 'episode' @@ -77,6 +79,7 @@ class PodchaserIE(InfoExtractor): 'https://www.podchaser.com/podcasts', '-'.join((podcast_slug[:30].rstrip('-'), info['series_id'])), '-'.join((episode_slug[:30].rstrip('-'), info['id'])))) + return info def _call_api(self, path, *args, **kwargs):