aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/downloader/dash.py
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2015-06-03 23:10:18 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2015-06-03 23:10:18 +0800
commit6800d3372f35e08dcc4d34d06601815bf0cb0a3d (patch)
treef619f599f021410b83367e80517de198f2556185 /youtube_dl/downloader/dash.py
parent8f9478412424b87e4fb77be53d239c13932b078a (diff)
downloadyoutube-dl-6800d3372f35e08dcc4d34d06601815bf0cb0a3d.tar.xz
[YoutubeDL] Support DASH manifest downloading
Diffstat (limited to 'youtube_dl/downloader/dash.py')
-rw-r--r--youtube_dl/downloader/dash.py50
1 files changed, 50 insertions, 0 deletions
diff --git a/youtube_dl/downloader/dash.py b/youtube_dl/downloader/dash.py
new file mode 100644
index 000000000..18eca2c04
--- /dev/null
+++ b/youtube_dl/downloader/dash.py
@@ -0,0 +1,50 @@
+from __future__ import unicode_literals
+from .common import FileDownloader
+from ..compat import compat_urllib_request
+
+import re
+
+
+class DashSegmentsFD(FileDownloader):
+ """
+ Download segments in a DASH manifest
+ """
+ def real_download(self, filename, info_dict):
+ self.report_destination(filename)
+ tmpfilename = self.temp_name(filename)
+ base_url = info_dict['url']
+ segment_urls = info_dict['segment_urls']
+
+ self.byte_counter = 0
+
+ def append_url_to_file(outf, target_url, target_name):
+ self.to_screen('[DashSegments] %s: Downloading %s' % (info_dict['id'], target_name))
+ req = compat_urllib_request.Request(target_url)
+ data = self.ydl.urlopen(req).read()
+ outf.write(data)
+ self.byte_counter += len(data)
+
+ def combine_url(base_url, target_url):
+ if re.match(r'^https?://', target_url):
+ return target_url
+ return '%s/%s' % (base_url, target_url)
+
+ with open(tmpfilename, 'wb') as outf:
+ append_url_to_file(
+ outf, combine_url(base_url, info_dict['initialization_url']),
+ 'initialization segment')
+ for i, segment_url in enumerate(segment_urls):
+ append_url_to_file(
+ outf, combine_url(base_url, segment_url),
+ 'segment %d / %d' % (i + 1, len(segment_urls)))
+
+ self.try_rename(tmpfilename, filename)
+
+ self._hook_progress({
+ 'downloaded_bytes': self.byte_counter,
+ 'total_bytes': self.byte_counter,
+ 'filename': filename,
+ 'status': 'finished',
+ })
+
+ return True