2014-09-24 12:16:56 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2013-09-23 15:59:27 +00:00
|
|
|
import os
|
2014-09-24 12:16:56 +00:00
|
|
|
import re
|
2013-09-23 15:59:27 +00:00
|
|
|
import subprocess
|
|
|
|
|
|
|
|
from .common import FileDownloader
|
2015-07-28 20:28:30 +00:00
|
|
|
from .fragment import FragmentFD
|
|
|
|
|
|
|
|
from ..compat import compat_urlparse
|
|
|
|
from ..postprocessor.ffmpeg import FFmpegPostProcessor
|
2014-12-13 11:24:42 +00:00
|
|
|
from ..utils import (
|
2015-02-01 17:49:23 +00:00
|
|
|
encodeArgument,
|
2013-09-23 15:59:27 +00:00
|
|
|
encodeFilename,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class HlsFD(FileDownloader):
|
|
|
|
def real_download(self, filename, info_dict):
|
|
|
|
url = info_dict['url']
|
|
|
|
self.report_destination(filename)
|
|
|
|
tmpfilename = self.temp_name(filename)
|
|
|
|
|
2015-01-04 12:40:30 +00:00
|
|
|
ffpp = FFmpegPostProcessor(downloader=self)
|
2015-02-17 16:35:03 +00:00
|
|
|
if not ffpp.available:
|
2014-11-26 11:26:21 +00:00
|
|
|
self.report_error('m3u8 download detected but ffmpeg or avconv could not be found. Please install one.')
|
2014-08-27 13:50:03 +00:00
|
|
|
return False
|
2014-12-06 11:14:26 +00:00
|
|
|
ffpp.check_version()
|
2015-02-01 17:49:23 +00:00
|
|
|
|
2015-02-01 17:54:38 +00:00
|
|
|
args = [
|
|
|
|
encodeArgument(opt)
|
2015-02-13 10:14:01 +00:00
|
|
|
for opt in (ffpp.executable, '-y', '-i', url, '-f', 'mp4', '-c', 'copy', '-bsf:a', 'aac_adtstoasc')]
|
2015-02-01 17:49:23 +00:00
|
|
|
args.append(encodeFilename(tmpfilename, True))
|
|
|
|
|
2015-08-13 15:10:11 +00:00
|
|
|
self._debug_cmd(args)
|
|
|
|
|
2015-02-01 17:54:38 +00:00
|
|
|
retval = subprocess.call(args)
|
2013-09-23 15:59:27 +00:00
|
|
|
if retval == 0:
|
|
|
|
fsize = os.path.getsize(encodeFilename(tmpfilename))
|
2015-02-01 17:54:38 +00:00
|
|
|
self.to_screen('\r[%s] %s bytes' % (args[0], fsize))
|
2013-09-23 15:59:27 +00:00
|
|
|
self.try_rename(tmpfilename, filename)
|
|
|
|
self._hook_progress({
|
|
|
|
'downloaded_bytes': fsize,
|
|
|
|
'total_bytes': fsize,
|
|
|
|
'filename': filename,
|
|
|
|
'status': 'finished',
|
|
|
|
})
|
|
|
|
return True
|
|
|
|
else:
|
2014-11-26 11:26:21 +00:00
|
|
|
self.to_stderr('\n')
|
2015-02-13 10:14:01 +00:00
|
|
|
self.report_error('%s exited with code %d' % (ffpp.basename, retval))
|
2013-09-23 15:59:27 +00:00
|
|
|
return False
|
2014-09-24 12:16:56 +00:00
|
|
|
|
|
|
|
|
2015-07-28 20:28:30 +00:00
|
|
|
class NativeHlsFD(FragmentFD):
|
2014-09-24 12:16:56 +00:00
|
|
|
""" A more limited implementation that does not require ffmpeg """
|
|
|
|
|
2015-07-28 20:28:30 +00:00
|
|
|
FD_NAME = 'hlsnative'
|
|
|
|
|
2014-09-24 12:16:56 +00:00
|
|
|
def real_download(self, filename, info_dict):
|
2015-07-28 20:28:30 +00:00
|
|
|
man_url = info_dict['url']
|
|
|
|
self.to_screen('[%s] Downloading m3u8 manifest' % self.FD_NAME)
|
|
|
|
manifest = self.ydl.urlopen(man_url).read()
|
2014-09-24 12:16:56 +00:00
|
|
|
|
2015-07-28 20:28:30 +00:00
|
|
|
s = manifest.decode('utf-8', 'ignore')
|
|
|
|
fragment_urls = []
|
2014-09-24 12:16:56 +00:00
|
|
|
for line in s.splitlines():
|
|
|
|
line = line.strip()
|
|
|
|
if line and not line.startswith('#'):
|
|
|
|
segment_url = (
|
|
|
|
line
|
|
|
|
if re.match(r'^https?://', line)
|
2015-07-28 20:28:30 +00:00
|
|
|
else compat_urlparse.urljoin(man_url, line))
|
|
|
|
fragment_urls.append(segment_url)
|
|
|
|
# We only download the first fragment during the test
|
|
|
|
if self.params.get('test', False):
|
2014-09-24 12:38:40 +00:00
|
|
|
break
|
2014-09-24 12:16:56 +00:00
|
|
|
|
2015-07-28 20:28:30 +00:00
|
|
|
ctx = {
|
2014-09-24 12:16:56 +00:00
|
|
|
'filename': filename,
|
2015-07-28 20:28:30 +00:00
|
|
|
'total_frags': len(fragment_urls),
|
|
|
|
}
|
|
|
|
|
|
|
|
self._prepare_and_start_frag_download(ctx)
|
|
|
|
|
|
|
|
frags_filenames = []
|
|
|
|
for i, frag_url in enumerate(fragment_urls):
|
|
|
|
frag_filename = '%s-Frag%d' % (ctx['tmpfilename'], i)
|
|
|
|
success = ctx['dl'].download(frag_filename, {'url': frag_url})
|
|
|
|
if not success:
|
|
|
|
return False
|
|
|
|
with open(frag_filename, 'rb') as down:
|
|
|
|
ctx['dest_stream'].write(down.read())
|
|
|
|
frags_filenames.append(frag_filename)
|
|
|
|
|
|
|
|
self._finish_frag_download(ctx)
|
|
|
|
|
|
|
|
for frag_file in frags_filenames:
|
|
|
|
os.remove(frag_file)
|
|
|
|
|
2014-09-24 12:16:56 +00:00
|
|
|
return True
|