Skip to content

Instantly share code, notes, and snippets.

@cblte
Created April 2, 2020 17:34
Show Gist options
  • Save cblte/ec01cd339b79a4ad58fcf84e402b53e1 to your computer and use it in GitHub Desktop.
Save cblte/ec01cd339b79a4ad58fcf84e402b53e1 to your computer and use it in GitHub Desktop.
downloading jordskott from arte in best quality. ca 1GB per episode. ca 10gb in total
$a = 'https://www.arte.tv/de/videos/062201-0{0}-A/'
for($i = 5; $i -lt 10; $i++) {
$u = $a -f $($i.ToString().PadLeft(2,"0"))
$c = "youtube-dl -f best $u -o '%(id)s_%(title)s_%(format)s.%(ext)s'"
Write-Host("Downloading: " + $u)
Invoke-Expression "$c"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment