]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/downloader/fragment.py
5bc99492bc7b90abdc5c133b3f6c573d54fe9ed3
1 from __future__
import division
, unicode_literals
6 from .common
import FileDownloader
7 from .http
import HttpFD
14 class HttpQuietDownloader(HttpFD
):
15 def to_screen(self
, *args
, **kargs
):
19 class FragmentFD(FileDownloader
):
21 A base file downloader class for fragmented media (e.g. f4m/m3u8 manifests).
24 def _prepare_and_start_frag_download(self
, ctx
):
25 self
._prepare
_frag
_download
(ctx
)
26 self
._start
_frag
_download
(ctx
)
28 def _prepare_frag_download(self
, ctx
):
32 '[%s] Total fragments: %s'
33 % (self
.FD_NAME
, ctx
['total_frags'] if not ctx
['live'] else 'unknown (live)'))
34 self
.report_destination(ctx
['filename'])
35 dl
= HttpQuietDownloader(
41 'ratelimit': self
.params
.get('ratelimit'),
42 'retries': self
.params
.get('retries', 0),
43 'test': self
.params
.get('test', False),
46 tmpfilename
= self
.temp_name(ctx
['filename'])
47 dest_stream
, tmpfilename
= sanitize_open(tmpfilename
, 'wb')
50 'dest_stream': dest_stream
,
51 'tmpfilename': tmpfilename
,
54 def _start_frag_download(self
, ctx
):
55 total_frags
= ctx
['total_frags']
56 # This dict stores the download progress, it's updated by the progress
59 'status': 'downloading',
60 'downloaded_bytes': 0,
62 'frag_count': total_frags
,
63 'filename': ctx
['filename'],
64 'tmpfilename': ctx
['tmpfilename'],
70 # Total complete fragments downloaded so far in bytes
71 'complete_frags_downloaded_bytes': 0,
72 # Amount of fragment's bytes downloaded by the time of the previous
73 # frag progress hook invocation
74 'prev_frag_downloaded_bytes': 0,
77 def frag_progress_hook(s
):
78 if s
['status'] not in ('downloading', 'finished'):
81 time_now
= time
.time()
82 state
['elapsed'] = time_now
- start
83 frag_total_bytes
= s
.get('total_bytes') or 0
86 (ctx
['complete_frags_downloaded_bytes'] + frag_total_bytes
) /
87 (state
['frag_index'] + 1) * total_frags
)
88 state
['total_bytes_estimate'] = estimated_size
90 if s
['status'] == 'finished':
91 state
['frag_index'] += 1
92 state
['downloaded_bytes'] += frag_total_bytes
- ctx
['prev_frag_downloaded_bytes']
93 ctx
['complete_frags_downloaded_bytes'] = state
['downloaded_bytes']
94 ctx
['prev_frag_downloaded_bytes'] = 0
96 frag_downloaded_bytes
= s
['downloaded_bytes']
97 state
['downloaded_bytes'] += frag_downloaded_bytes
- ctx
['prev_frag_downloaded_bytes']
99 state
['eta'] = self
.calc_eta(
100 start
, time_now
, estimated_size
,
101 state
['downloaded_bytes'])
102 state
['speed'] = s
.get('speed')
103 ctx
['prev_frag_downloaded_bytes'] = frag_downloaded_bytes
104 self
._hook
_progress
(state
)
106 ctx
['dl'].add_progress_hook(frag_progress_hook
)
110 def _finish_frag_download(self
, ctx
):
111 ctx
['dest_stream'].close()
112 elapsed
= time
.time() - ctx
['started']
113 self
.try_rename(ctx
['tmpfilename'], ctx
['filename'])
114 fsize
= os
.path
.getsize(encodeFilename(ctx
['filename']))
116 self
._hook
_progress
({
117 'downloaded_bytes': fsize
,
118 'total_bytes': fsize
,
119 'filename': ctx
['filename'],
120 'status': 'finished',