A framework for building web video scrapers. The main narrative goes like this:
- You pass a URL to a scraper
- The scraper extracts the video link and associated metadata and stores it in a object that is a sub-class of flvid.Video.
- The Video object has methods on it for interacting with the associated metadata, including downloading the video to a file.
import flvid
video = flvid.get_video('http://www.example.com/afgdfgdfgfag')
video.download_video(dest='/tmp')
It is the end-user's responsibility to determine whether their copying falls under fair use, or that they have permission to create copies of said videos.
- I need to put some TLC into flvid.app
Copyright (c) 2011 Brandon Sandrowicz under the MIT license. See LICENSE.txt.