Replies: 1 comment
-
|
This isn't currently possible with podsync. How it works:
The update logic only downloads episodes with new or error status, so episodes marked as cleaned are skipped. We probably could add some CLI commands to list and skip episodes from database. Feel free to open a feature request if this would be useful. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I have two scenarios where I need to clean up after mistakes:
I created a feed for a whole channel without a filter. This pulled in all videos including their YouTube Shorts which aren't really suitable as podcast material. Lesson learned, I set a filter for minimum video length to avoid getting the Shorts.
Second mistake, after setting
custom_format = { youtube_dl_format = "worstaudio[ext=m4a]", extension = "m4a" }on some videos with alternate language audio tracks it pulled in an audio track for a different language. So I need to amend that to{ youtube_dl_format = "worstaudio[ext=m4a][format_note*=original]", extension = "m4a" }.In this case how do I prune the shorts and tracks with incorrect audio? And for the ones with incorrect audio, how do I re-download them now that I have a corrected format setting?
What I've tried
So I discovered this flow that at least addresses the first scenario:
To address the second scenario I would need to locate all files that have improper audio tracks (tbd if I can discover that from CLI somehow) and delete those as well, then preform the same DB drop and re-download.
Beta Was this translation helpful? Give feedback.
All reactions