Add comprehensive investigation for Apple Podcasts video support in yt-dlp#8
Open
Add comprehensive investigation for Apple Podcasts video support in yt-dlp#8
Conversation
…t-dlp Investigation reveals that yt-dlp's ApplePodcasts extractor hardcodes 'vcodec: none' for all episodes, causing video podcasts to download as audio-only. Apple's JSON includes a 'mediaType' field that correctly identifies video vs audio content. This package includes: - Complete technical investigation with JSON analysis - Git patch ready to apply to yt-dlp - Fixed extractor code with video test case - Verification script proving the bug exists - GitHub bug report and PR templates - Step-by-step contribution guide The fix is simple (3 lines) and fully backward compatible. Files: - APPLE_PODCASTS_VIDEO_INVESTIGATION.md: Technical analysis - applepodcasts_video_fix.patch: Git patch file - applepodcasts_fixed.py: Complete fixed extractor - verify_issue.py: Proof-of-concept verification script - GITHUB_BUG_REPORT.md: Bug report template - GITHUB_PR_DESCRIPTION.md: PR description template - YTDLP_CONTRIBUTION_SUMMARY.md: Contribution guide - README_YTDLP_FIX.md: Quick reference
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Investigation reveals that yt-dlp's ApplePodcasts extractor hardcodes
'vcodec: none' for all episodes, causing video podcasts to download as
audio-only. Apple's JSON includes a 'mediaType' field that correctly
identifies video vs audio content.
This package includes:
The fix is simple (3 lines) and fully backward compatible.
Files: