diff options
author | NeodarZ <neodarz@neodarz.net> | 2018-04-14 18:38:25 +0200 |
---|---|---|
committer | NeodarZ <neodarz@neodarz.net> | 2018-04-14 18:38:25 +0200 |
commit | 9745989d7c25c7582885b43d07123fcf1f02bd39 (patch) | |
tree | 11d1b49bd8670dc38f617d02260ce9890c5122e6 | |
download | arte.tv-dl-9745989d7c25c7582885b43d07123fcf1f02bd39.tar.xz arte.tv-dl-9745989d7c25c7582885b43d07123fcf1f02bd39.zip |
Initial commit
Diffstat (limited to '')
-rw-r--r-- | README.md | 22 | ||||
-rwxr-xr-x | arte.tv-dl.py | 43 | ||||
-rw-r--r-- | requirements.txt | 1 |
3 files changed, 66 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..21ccef3 --- /dev/null +++ b/README.md @@ -0,0 +1,22 @@ +# arte.tv-dl.sh + +This little script can download a video from arte.tv website. + +## Installation + +Juste run the following command for install requirements on your system: + +``` +pip install -r requirements.txt +``` + +## Usage + +``` +./arte.tv-dl.sh <arte.tv_link> +``` + +## Licence + +All code in this repository are written by neodarz <neodarz@neodarz.net> and +under GPL-3 licence. diff --git a/arte.tv-dl.py b/arte.tv-dl.py new file mode 100755 index 0000000..bc61bdf --- /dev/null +++ b/arte.tv-dl.py @@ -0,0 +1,43 @@ +#!/bin/python + +"""A download a video from arte.tv website.""" + +from bs4 import BeautifulSoup +from urllib.request import urlopen, unquote, urlretrieve +import re, json, sys + +if len(sys.argv) != 2: + print("Usage:") + print(" "+sys.argv[0]+" <arte.tv_link>") + print("Example:") + print(" "+sys.argv[0]+" https://www.arte.tv/fr/videos/051868-000-A/liberte-egalite-indemnites-vers-un-revenu-universel/") + sys.exit(0) + +url = sys.argv[1] + +content = urlopen(url) + +soup = BeautifulSoup(content, "lxml") + +iframes = soup.find_all("iframe") + +url = "" + +for iframe in iframes: + url = unquote(iframe['src']) + +url = re.split("url=",url)[1] +url = re.split("\?autostart", url)[0] + +content = urlopen(url) +json = json.loads(content.read().decode()) +name = json['videoJsonPlayer']['VTI'] +url = json['videoJsonPlayer']['VSR']['HTTPS_SQ_1']['url'] + +name=name+".mp4" +try: + print("Downloading '"+name+"'...") + urlretrieve(url, name) + print("\nDownload completed") +except Exception as e: + print(e) diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..cd91942 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +beautifulsoup4==4.6.0 |