Skip to content

Instantly share code, notes, and snippets.

@jmg-duarte
Created October 27, 2023 16:30
Show Gist options
  • Save jmg-duarte/47a12d232e10228c695f99cdce266a50 to your computer and use it in GitHub Desktop.
Save jmg-duarte/47a12d232e10228c695f99cdce266a50 to your computer and use it in GitHub Desktop.
NHK Episode Downloader
# 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