2015-07-28 20:26:16 +00:00
|
|
|
from __future__ import division, unicode_literals
|
|
|
|
|
|
|
|
import os
|
|
|
|
import time
|
2017-04-19 17:34:25 +00:00
|
|
|
import json
|
2015-07-28 20:26:16 +00:00
|
|
|
|
|
|
|
from .common import FileDownloader
|
|
|
|
from .http import HttpFD
|
|
|
|
from ..utils import (
|
2016-08-26 21:57:59 +00:00
|
|
|
error_to_compat_str,
|
2015-07-28 20:26:16 +00:00
|
|
|
encodeFilename,
|
|
|
|
sanitize_open,
|
2016-11-13 15:06:16 +00:00
|
|
|
sanitized_Request,
|
2015-07-28 20:26:16 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class HttpQuietDownloader(HttpFD):
|
|
|
|
def to_screen(self, *args, **kargs):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class FragmentFD(FileDownloader):
|
|
|
|
"""
|
|
|
|
A base file downloader class for fragmented media (e.g. f4m/m3u8 manifests).
|
2016-03-19 14:54:21 +00:00
|
|
|
|
|
|
|
Available options:
|
|
|
|
|
2016-08-26 21:52:18 +00:00
|
|
|
fragment_retries: Number of times to retry a fragment for HTTP error (DASH
|
|
|
|
and hlsnative only)
|
|
|
|
skip_unavailable_fragments:
|
|
|
|
Skip unavailable fragments (DASH and hlsnative only)
|
2017-04-23 20:09:08 +00:00
|
|
|
keep_fragments: Keep downloaded fragments on disk after downloading is
|
|
|
|
finished
|
2017-04-24 16:50:20 +00:00
|
|
|
|
|
|
|
For each incomplete fragment download youtube-dl keeps on disk a special
|
|
|
|
bookkeeping file with download state and metadata (in future such files will
|
|
|
|
be used for any incomplete download handled by youtube-dl). This file is
|
|
|
|
used to properly handle resuming, check download file consistency and detect
|
|
|
|
potential errors. The file has a .ytdl extension and represents a standard
|
|
|
|
JSON file of the following format:
|
|
|
|
|
|
|
|
extractor:
|
|
|
|
Dictionary of extractor related data. TBD.
|
|
|
|
|
|
|
|
downloader:
|
|
|
|
Dictionary of downloader related data. May contain following data:
|
|
|
|
current_fragment:
|
|
|
|
Dictionary with current (being downloaded) fragment data:
|
2017-04-25 16:33:35 +00:00
|
|
|
index: 0-based index of current fragment among all fragments
|
2017-04-24 16:50:20 +00:00
|
|
|
fragment_count:
|
|
|
|
Total count of fragments
|
2017-04-30 15:04:01 +00:00
|
|
|
|
2017-04-25 16:33:35 +00:00
|
|
|
This feature is experimental and file format may change in future.
|
2015-07-28 20:26:16 +00:00
|
|
|
"""
|
|
|
|
|
2016-06-28 17:07:50 +00:00
|
|
|
def report_retry_fragment(self, err, frag_index, count, retries):
|
2016-03-19 14:41:24 +00:00
|
|
|
self.to_screen(
|
2016-06-28 17:07:50 +00:00
|
|
|
'[download] Got server HTTP error: %s. Retrying fragment %d (attempt %d of %s)...'
|
|
|
|
% (error_to_compat_str(err), frag_index, count, self.format_retries(retries)))
|
2016-03-19 14:41:24 +00:00
|
|
|
|
2016-06-28 17:07:50 +00:00
|
|
|
def report_skip_fragment(self, frag_index):
|
|
|
|
self.to_screen('[download] Skipping fragment %d...' % frag_index)
|
2016-08-26 21:52:18 +00:00
|
|
|
|
2016-11-13 15:06:16 +00:00
|
|
|
def _prepare_url(self, info_dict, url):
|
|
|
|
headers = info_dict.get('http_headers')
|
|
|
|
return sanitized_Request(url, None, headers) if headers else url
|
|
|
|
|
2015-07-28 20:26:16 +00:00
|
|
|
def _prepare_and_start_frag_download(self, ctx):
|
|
|
|
self._prepare_frag_download(ctx)
|
|
|
|
self._start_frag_download(ctx)
|
|
|
|
|
2017-04-24 16:05:56 +00:00
|
|
|
@staticmethod
|
|
|
|
def __do_ytdl_file(ctx):
|
|
|
|
return not ctx['live'] and not ctx['tmpfilename'] == '-'
|
|
|
|
|
2017-04-23 19:54:17 +00:00
|
|
|
def _read_ytdl_file(self, ctx):
|
2018-04-28 17:33:31 +00:00
|
|
|
assert 'ytdl_corrupt' not in ctx
|
2017-04-23 19:54:17 +00:00
|
|
|
stream, _ = sanitize_open(self.ytdl_filename(ctx['filename']), 'r')
|
2018-04-28 17:33:31 +00:00
|
|
|
try:
|
|
|
|
ctx['fragment_index'] = json.loads(stream.read())['downloader']['current_fragment']['index']
|
|
|
|
except Exception:
|
|
|
|
ctx['ytdl_corrupt'] = True
|
|
|
|
finally:
|
|
|
|
stream.close()
|
2017-04-23 19:54:17 +00:00
|
|
|
|
|
|
|
def _write_ytdl_file(self, ctx):
|
|
|
|
frag_index_stream, _ = sanitize_open(self.ytdl_filename(ctx['filename']), 'w')
|
2017-04-24 16:50:20 +00:00
|
|
|
downloader = {
|
|
|
|
'current_fragment': {
|
|
|
|
'index': ctx['fragment_index'],
|
2017-04-23 19:54:17 +00:00
|
|
|
},
|
2017-04-24 16:50:20 +00:00
|
|
|
}
|
|
|
|
if ctx.get('fragment_count') is not None:
|
|
|
|
downloader['fragment_count'] = ctx['fragment_count']
|
|
|
|
frag_index_stream.write(json.dumps({'downloader': downloader}))
|
2017-04-23 19:54:17 +00:00
|
|
|
frag_index_stream.close()
|
|
|
|
|
2016-06-28 17:07:50 +00:00
|
|
|
def _download_fragment(self, ctx, frag_url, info_dict, headers=None):
|
2017-04-23 19:54:17 +00:00
|
|
|
fragment_filename = '%s-Frag%d' % (ctx['tmpfilename'], ctx['fragment_index'])
|
|
|
|
success = ctx['dl'].download(fragment_filename, {
|
2016-06-28 17:07:50 +00:00
|
|
|
'url': frag_url,
|
|
|
|
'http_headers': headers or info_dict.get('http_headers'),
|
|
|
|
})
|
|
|
|
if not success:
|
|
|
|
return False, None
|
2017-04-23 19:54:17 +00:00
|
|
|
down, frag_sanitized = sanitize_open(fragment_filename, 'rb')
|
|
|
|
ctx['fragment_filename_sanitized'] = frag_sanitized
|
|
|
|
frag_content = down.read()
|
2016-06-28 17:07:50 +00:00
|
|
|
down.close()
|
|
|
|
return True, frag_content
|
|
|
|
|
|
|
|
def _append_fragment(self, ctx, frag_content):
|
2017-04-23 19:54:17 +00:00
|
|
|
try:
|
|
|
|
ctx['dest_stream'].write(frag_content)
|
2017-12-02 14:15:45 +00:00
|
|
|
ctx['dest_stream'].flush()
|
2017-04-23 19:54:17 +00:00
|
|
|
finally:
|
2017-04-24 16:05:56 +00:00
|
|
|
if self.__do_ytdl_file(ctx):
|
2017-04-23 19:54:17 +00:00
|
|
|
self._write_ytdl_file(ctx)
|
2017-04-23 20:09:08 +00:00
|
|
|
if not self.params.get('keep_fragments', False):
|
2017-12-17 20:31:53 +00:00
|
|
|
os.remove(encodeFilename(ctx['fragment_filename_sanitized']))
|
2017-04-23 19:54:17 +00:00
|
|
|
del ctx['fragment_filename_sanitized']
|
2016-06-28 17:07:50 +00:00
|
|
|
|
2015-07-28 20:26:16 +00:00
|
|
|
def _prepare_frag_download(self, ctx):
|
2016-01-30 13:20:52 +00:00
|
|
|
if 'live' not in ctx:
|
|
|
|
ctx['live'] = False
|
2017-10-14 23:13:07 +00:00
|
|
|
if not ctx['live']:
|
|
|
|
total_frags_str = '%d' % ctx['total_frags']
|
|
|
|
ad_frags = ctx.get('ad_frags', 0)
|
|
|
|
if ad_frags:
|
|
|
|
total_frags_str += ' (not including %d ad)' % ad_frags
|
|
|
|
else:
|
|
|
|
total_frags_str = 'unknown (live)'
|
2016-01-30 13:20:52 +00:00
|
|
|
self.to_screen(
|
2017-10-14 23:13:07 +00:00
|
|
|
'[%s] Total fragments: %s' % (self.FD_NAME, total_frags_str))
|
2015-07-28 20:26:16 +00:00
|
|
|
self.report_destination(ctx['filename'])
|
|
|
|
dl = HttpQuietDownloader(
|
|
|
|
self.ydl,
|
|
|
|
{
|
|
|
|
'continuedl': True,
|
|
|
|
'quiet': True,
|
|
|
|
'noprogress': True,
|
2016-02-14 08:25:04 +00:00
|
|
|
'ratelimit': self.params.get('ratelimit'),
|
2015-08-13 15:07:14 +00:00
|
|
|
'retries': self.params.get('retries', 0),
|
2017-02-06 16:07:59 +00:00
|
|
|
'nopart': self.params.get('nopart', False),
|
2015-07-28 20:26:16 +00:00
|
|
|
'test': self.params.get('test', False),
|
|
|
|
}
|
|
|
|
)
|
|
|
|
tmpfilename = self.temp_name(ctx['filename'])
|
2016-06-28 17:07:50 +00:00
|
|
|
open_mode = 'wb'
|
|
|
|
resume_len = 0
|
2017-04-23 19:54:17 +00:00
|
|
|
|
2016-06-28 17:07:50 +00:00
|
|
|
# Establish possible resume length
|
|
|
|
if os.path.isfile(encodeFilename(tmpfilename)):
|
|
|
|
open_mode = 'ab'
|
|
|
|
resume_len = os.path.getsize(encodeFilename(tmpfilename))
|
2017-04-23 19:54:17 +00:00
|
|
|
|
2017-04-24 16:05:56 +00:00
|
|
|
# Should be initialized before ytdl file check
|
|
|
|
ctx.update({
|
|
|
|
'tmpfilename': tmpfilename,
|
|
|
|
'fragment_index': 0,
|
|
|
|
})
|
2017-04-23 19:54:17 +00:00
|
|
|
|
2017-04-24 16:05:56 +00:00
|
|
|
if self.__do_ytdl_file(ctx):
|
|
|
|
if os.path.isfile(encodeFilename(self.ytdl_filename(ctx['filename']))):
|
|
|
|
self._read_ytdl_file(ctx)
|
2018-04-28 17:33:31 +00:00
|
|
|
is_corrupt = ctx.get('ytdl_corrupt') is True
|
|
|
|
is_inconsistent = ctx['fragment_index'] > 0 and resume_len == 0
|
|
|
|
if is_corrupt or is_inconsistent:
|
|
|
|
message = (
|
|
|
|
'.ytdl file is corrupt' if is_corrupt else
|
|
|
|
'Inconsistent state of incomplete fragment download')
|
2017-10-17 15:53:34 +00:00
|
|
|
self.report_warning(
|
2018-04-28 17:33:31 +00:00
|
|
|
'%s. Restarting from the beginning...' % message)
|
2017-09-14 16:19:53 +00:00
|
|
|
ctx['fragment_index'] = resume_len = 0
|
2018-04-28 17:33:31 +00:00
|
|
|
if 'ytdl_corrupt' in ctx:
|
|
|
|
del ctx['ytdl_corrupt']
|
2017-09-14 16:19:53 +00:00
|
|
|
self._write_ytdl_file(ctx)
|
2017-04-24 16:05:56 +00:00
|
|
|
else:
|
|
|
|
self._write_ytdl_file(ctx)
|
2017-09-14 16:19:53 +00:00
|
|
|
assert ctx['fragment_index'] == 0
|
2017-04-23 19:54:17 +00:00
|
|
|
|
2016-06-28 17:07:50 +00:00
|
|
|
dest_stream, tmpfilename = sanitize_open(tmpfilename, open_mode)
|
|
|
|
|
2015-07-28 20:26:16 +00:00
|
|
|
ctx.update({
|
|
|
|
'dl': dl,
|
|
|
|
'dest_stream': dest_stream,
|
|
|
|
'tmpfilename': tmpfilename,
|
2016-06-28 17:07:50 +00:00
|
|
|
# Total complete fragments downloaded so far in bytes
|
|
|
|
'complete_frags_downloaded_bytes': resume_len,
|
2015-07-28 20:26:16 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
def _start_frag_download(self, ctx):
|
2019-08-10 23:57:43 +00:00
|
|
|
resume_len = ctx['complete_frags_downloaded_bytes']
|
2015-07-28 20:26:16 +00:00
|
|
|
total_frags = ctx['total_frags']
|
|
|
|
# This dict stores the download progress, it's updated by the progress
|
|
|
|
# hook
|
|
|
|
state = {
|
|
|
|
'status': 'downloading',
|
2019-08-10 23:57:43 +00:00
|
|
|
'downloaded_bytes': resume_len,
|
2017-04-22 15:42:24 +00:00
|
|
|
'fragment_index': ctx['fragment_index'],
|
|
|
|
'fragment_count': total_frags,
|
2015-07-28 20:26:16 +00:00
|
|
|
'filename': ctx['filename'],
|
|
|
|
'tmpfilename': ctx['tmpfilename'],
|
2016-01-12 18:00:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
start = time.time()
|
|
|
|
ctx.update({
|
|
|
|
'started': start,
|
2016-01-12 17:18:38 +00:00
|
|
|
# Amount of fragment's bytes downloaded by the time of the previous
|
|
|
|
# frag progress hook invocation
|
2016-01-12 18:00:31 +00:00
|
|
|
'prev_frag_downloaded_bytes': 0,
|
|
|
|
})
|
2015-07-28 20:26:16 +00:00
|
|
|
|
|
|
|
def frag_progress_hook(s):
|
|
|
|
if s['status'] not in ('downloading', 'finished'):
|
|
|
|
return
|
|
|
|
|
2016-01-30 13:20:52 +00:00
|
|
|
time_now = time.time()
|
2016-01-30 13:30:31 +00:00
|
|
|
state['elapsed'] = time_now - start
|
2016-01-10 13:32:53 +00:00
|
|
|
frag_total_bytes = s.get('total_bytes') or 0
|
2016-01-30 13:20:52 +00:00
|
|
|
if not ctx['live']:
|
|
|
|
estimated_size = (
|
2019-05-10 20:56:22 +00:00
|
|
|
(ctx['complete_frags_downloaded_bytes'] + frag_total_bytes)
|
|
|
|
/ (state['fragment_index'] + 1) * total_frags)
|
2016-01-30 13:20:52 +00:00
|
|
|
state['total_bytes_estimate'] = estimated_size
|
2015-07-28 20:26:16 +00:00
|
|
|
|
2016-01-12 17:18:38 +00:00
|
|
|
if s['status'] == 'finished':
|
2017-04-22 15:42:24 +00:00
|
|
|
state['fragment_index'] += 1
|
|
|
|
ctx['fragment_index'] = state['fragment_index']
|
2016-01-12 18:00:31 +00:00
|
|
|
state['downloaded_bytes'] += frag_total_bytes - ctx['prev_frag_downloaded_bytes']
|
|
|
|
ctx['complete_frags_downloaded_bytes'] = state['downloaded_bytes']
|
|
|
|
ctx['prev_frag_downloaded_bytes'] = 0
|
2016-01-12 17:18:38 +00:00
|
|
|
else:
|
|
|
|
frag_downloaded_bytes = s['downloaded_bytes']
|
2016-01-12 18:00:31 +00:00
|
|
|
state['downloaded_bytes'] += frag_downloaded_bytes - ctx['prev_frag_downloaded_bytes']
|
2016-01-30 13:20:52 +00:00
|
|
|
if not ctx['live']:
|
|
|
|
state['eta'] = self.calc_eta(
|
2019-08-10 23:57:43 +00:00
|
|
|
start, time_now, estimated_size - resume_len,
|
|
|
|
state['downloaded_bytes'] - resume_len)
|
2016-03-05 23:36:52 +00:00
|
|
|
state['speed'] = s.get('speed') or ctx.get('speed')
|
|
|
|
ctx['speed'] = state['speed']
|
2016-01-12 18:00:31 +00:00
|
|
|
ctx['prev_frag_downloaded_bytes'] = frag_downloaded_bytes
|
2015-07-28 20:26:16 +00:00
|
|
|
self._hook_progress(state)
|
|
|
|
|
|
|
|
ctx['dl'].add_progress_hook(frag_progress_hook)
|
|
|
|
|
|
|
|
return start
|
|
|
|
|
|
|
|
def _finish_frag_download(self, ctx):
|
|
|
|
ctx['dest_stream'].close()
|
2017-04-24 16:05:56 +00:00
|
|
|
if self.__do_ytdl_file(ctx):
|
|
|
|
ytdl_filename = encodeFilename(self.ytdl_filename(ctx['filename']))
|
|
|
|
if os.path.isfile(ytdl_filename):
|
|
|
|
os.remove(ytdl_filename)
|
2015-07-28 20:26:16 +00:00
|
|
|
elapsed = time.time() - ctx['started']
|
2018-03-24 08:59:48 +00:00
|
|
|
|
|
|
|
if ctx['tmpfilename'] == '-':
|
|
|
|
downloaded_bytes = ctx['complete_frags_downloaded_bytes']
|
|
|
|
else:
|
|
|
|
self.try_rename(ctx['tmpfilename'], ctx['filename'])
|
|
|
|
downloaded_bytes = os.path.getsize(encodeFilename(ctx['filename']))
|
2015-07-28 20:26:16 +00:00
|
|
|
|
|
|
|
self._hook_progress({
|
2018-03-24 08:59:48 +00:00
|
|
|
'downloaded_bytes': downloaded_bytes,
|
|
|
|
'total_bytes': downloaded_bytes,
|
2015-07-28 20:26:16 +00:00
|
|
|
'filename': ctx['filename'],
|
|
|
|
'status': 'finished',
|
|
|
|
'elapsed': elapsed,
|
|
|
|
})
|