Created
October 27, 2023 16:30
-
-
Save jmg-duarte/47a12d232e10228c695f99cdce266a50 to your computer and use it in GitHub Desktop.
NHK Episode Downloader
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
# Huge kudos to everyone working on yt-dlp, that's the heavylifting part | |
# | |
# The link points to Japanology+ but it should work with other series, | |
# maybe you'll need some adjustments to the jq query though | |
curl https://nwapi.nhk.jp/nhkworld/vodesdlist/v7b/program/japanologyplus/en/all/all.json | | |
jq -r ".data.episodes[].url" | | |
sed "s|^|https://www3.nhk.or.jp|" | | |
xargs -n 1 -P 2 yt-dlp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment