weboob-devel/contrib/downloadboob
theo cf60351830 Add -e to rtmpdump options
Adding -e to rtmpdump.

So instead of:
    rtmpdump -r <url> -o <file>
we will have
    rtmpdump -e -r <url> -o <file>

If <file> doesn't exist, it will be created. So the -e switch doesn't
change anything.

If <file> alredy exists, then rtmpdump will try to complete a previous
download.

That way, if videoob download <id> fails, running the command again
will complete the download without starting again from scratch.
2012-11-06 01:13:45 +01:00
..
downloadboob.conf add script contrib/downloadboob (closes #838) 2012-10-27 13:13:18 +02:00
downloadboob.py Add -e to rtmpdump options 2012-11-06 01:13:45 +01:00
README add script contrib/downloadboob (closes #838) 2012-10-27 13:13:18 +02:00

This script can be used to automatically download videos matching some criteria.

To avoid to download a video twice, all videos are stored in an unique way : .files/<backend name>/<video.id>.avi

For each entry in the configuration file, the script :
- check for new video
- download the new videos
- create a link from <user specify name>/<video.name>.avi to .files/<backend name>/<video id>.avi

In each section of the configuration file :
- backend : the backend to use
- pattern : specify the search pattern
- title_exclude : a coma seperated list. If an item in this list is substring of the title, then the video is ignored.
- max_results : maximum number of result to parse
- directory : the <user specify name> above.