I want to download videos with python. I tried using youtube-dl, but the site I wish to download videos from is not supported. How to download videos in Python. First I trie
urllib.URLopener doesn't handle redirects by default
urllib.URLopener
Use urllib.FancyURLopener instead:
import urllib test=urllib.FancyURLopener() test.retrieve("http://www.animefun.com/dl/googDev.php?url=/108994262975881368074/Po270.flv","testout.flv")