]> code.delx.au - webdl/summary
 
descriptionWebDL is a set of Python scripts to grab video from online Free To Air Australian channels.
last changeSun, 4 Jun 2023 21:40:43 +0000 (07:40 +1000)
readme

WebDL

WebDL is a set of Python scripts to grab video from online Free To Air Australian channels.

News

2023-06-05

2018-02-24

2017-02-24

Updating to the latest version

You must use git to keep up to date. The autograbber-cron.sh script is how I do this. If you'd like to manually update just run these commands.

cd webdl
git pull --ff-only

Installation using pip

Install the following packages using your package manager:

Clone the WebDL repository:

git clone https://bitbucket.org/delx/webdl
cd webdl

Set up a Python virtualenv and use pip to install the other dependencies:

virtualenv .virtualenv
. .virtualenv/bin/activate
pip install -r requirements.txt

Whenever you want to run WebDL you must source the .virtualenv/bin/activate script from your shell.

Installation on Debian/Ubuntu

Clone the WebDL repository:

git clone https://bitbucket.org/delx/webdl
cd webdl

Install Python 3 and needed libraries:

apt-get install python3 python3-lxml python3-requests python3-requests-cache

You must also install Streamlink, or if it unavailable, the older Livestreamer. Depending on the age of your distro you'll need either:

Install ffmpeg:

apt-get install ffmpeg

Interactive usage (grabber.py)

You can run WebDL interactively to browse categories and episode lists and download TV episodes.

$ ./grabber.py
 1) ABC iView
 2) SBS
 0) Back
Choose> 1
 1) ABC 4 Kids
 2) Arts & Culture
 3) Comedy
 4) Documentary
<snipped>
Choose> 4
 1) ABC Open Series 2012
 2) Art Of Germany
 3) Baby Beauty Queens
 4) Catalyst Series 13
<snipped>
Choose> 4
 1) Catalyst Series 13 Episode 15
 2) Catalyst Series 13 Episode 16
 0) Back
Choose> 1
RTMPDump v2.3
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
Connecting ...
INFO: Connected...
Starting download at: 0.000 kB

The bolded parts are what you type. Note that you can go back on any screen by typing “0”. At the list of episodes you can download a single episode by typing one number, or multiple episodes by typing several numbers separated by spaces.

Cron scripted usage (autograbber.py)

You can schedule a regular download of your favourite shows. This example uses chronic from moreutils.

# m    h  dom mon dow   command
  0    1   *   *   *     timeout 6h chronic $HOME/webdl/autograbber-cron.sh /videos/ABC4Kids /videos/Insight

Each of these directories should contain a .patterns.txt with shell-style globs:

ABC iView/By Channel/ABC4Kids/*/*
SBS/Channel/SBS1/Insight*

You may optionally created a .excludes.txt file with shell-style globs. This is matched against the episode title and can be used to filter out things you don't want. For example:

*(Mandarin)*
*(Chinese)*

Whenever an episode is downloaded it is recorded into .downloaded_auto.txt. Even if you move the files somewhere else they will not be redownloaded.

Bug reports

Please raise issues on the Bitbucket project.

shortlog
2023-06-04 James BuntonFixed silly bug in removing ffmpeg detection master
2023-06-04 James BuntonUpdate README
2023-06-04 James BuntonAdded NITV to SBS
2023-06-04 James BuntonOnly support ffmpeg
2023-06-04 James BuntonFix weird requests errors
2023-06-04 James BuntonFixed SBS
2021-08-25 Paul WiseMerged in fix-sbs (pull request #10)
2021-08-16 Paul WiseDownload SBS player params from the API
2020-11-04 Paul WiseAdd support for ABC iView HLS livestreams
2020-09-20 James BuntonFixed iView downloads
2020-07-24 James BuntonFixed iView to use categories and channels from API
2020-06-29 James BuntonLog to stdout instead of stderr
2020-06-13 James BuntonFixed missing import
2020-06-13 James BuntonFix SBS download
2020-04-13 James BuntonSend user-agent when downloading HLS videos (fixes...
2020-04-13 James BuntonDrop livestreamer support, it probably didn't work...
...
heads
10 months ago master
7 years ago python2