Skip to content

Instantly share code, notes, and snippets.

@cblte
Created March 31, 2020 08:44
Show Gist options
  • Save cblte/7298d5df25ab85db5b193881e2757b34 to your computer and use it in GitHub Desktop.
Save cblte/7298d5df25ab85db5b193881e2757b34 to your computer and use it in GitHub Desktop.
How to download Agreppine from Arte.tv for offline view or if you cannot watch it because the website tells you not availble in your country
$arte = 'http://www.arte.tv/de/videos/026291-0{0}-A/'
for($i = 1; $i -lt 27; $i++) {
$url = $arte -f $($i.ToString().PadLeft(2,"0"))
$ydlcmd = "youtube-dl --geo-bypass -f best $url"
Write-Host("Downloading: " + $url)
Write-Host($ydlcmd)
Invoke-Expression "$ydlcmd"
}
#arte #agreppine #offline
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment