aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/downloader/dash.py
AgeCommit message (Collapse)Author
2023-04-13[DashSegmentsFD] Correctly detect errors when `fragment_retries` == 0dirkf
* use the success flag instead of the retry count * establish the fragment_url outside the retry loop * only report skipping a fragment once. * resolves #32033
2023-04-05[FragmentFD] Fix iteration with infinite limitdirkf
* fixes ytdl-org/youtube-dl/baa6c5e * resolves #31885
2023-03-14[FragmentFD] Respect `--no-continue`dirkf
* discard partial fragment on `--no-continue` * continue with correct progress display otherwise Resolves #21467
2019-07-26Fix typos (#21901)Kitten King
2018-07-08[downloader/dash] Improve error handling (#16927)Sergey M․
2017-08-05Use relative paths for DASH fragments (closes #12990)Sergey M․
10x reduced JSON size refs #13810
2017-04-22[downloader/fragment] use the documented names for fragment progress_hooks ↵Remita Amine
fields
2017-04-19[fragment,hls,f4m,dash,ism] improve fragment downloadingRemita Amine
- resume immediately - no need to concatenate segments and decrypt them on every resume - no need to save temp files for segments and for hls downloader: - no need to download keys for segments that already downloaded
2017-02-19[downloader/dash] Honor HTTP headers when downloading fragmentsSergey M․
For example, https://www.oppetarkiv.se/video/1196142/natten-ar-dagens-mor
2016-09-17Refactor fragments interface and dash segments downloaderSergey M․
- Eliminate segment_urls and initialization_url + Introduce manifest_url (manifest may contain unfragmented data in this case url will be used for direct media URL and manifest_url for manifest itself correspondingly) * Rewrite dashsegments downloader to use fragments data * Improve generic mpd extraction
2016-09-04[downloader/dash] Abort if the first segment failsYen Chi Hsuan
Closes #10497, Closes #10542
2016-09-03[downloader/dash] Abort download immediately after giving up on some fragmentSergey M․
2016-09-03[downloader/dash:hls] Report exact fragment error on retrySergey M․
2016-09-03[downloader/dash:hls] Respect --fragment-retries and ↵Sergey M․
--skip-unavailable-fragments (Closes #10165, closes #10448)
2016-03-19[downloader/dash] Add fragment retry capabilitySergey M․
YouTube may often return 404 HTTP error for a fragment causing the whole download to fail. However if the same fragment is immediately retried with the same request data this usually succeeds (1-2 attemps is usually enough) thus allowing to download the whole file successfully. So, we will retry all fragments that fail with 404 HTTP error for now.
2016-02-14[downloader/dash] PEP 8Sergey M․
2016-02-09[downloader/dash] Implement dashsegments fd in terms of fragment fdremitamine
2016-02-02[downloader/dash] make initialization_url optionalremitamine
2015-11-23Switch codebase to use sanitized_Request instead ofSergey M?
compat_urllib_request.Request [downloader/dash] Use sanitized_Request [downloader/http] Use sanitized_Request [atresplayer] Use sanitized_Request [bambuser] Use sanitized_Request [bliptv] Use sanitized_Request [brightcove] Use sanitized_Request [cbs] Use sanitized_Request [ceskatelevize] Use sanitized_Request [collegerama] Use sanitized_Request [extractor/common] Use sanitized_Request [crunchyroll] Use sanitized_Request [dailymotion] Use sanitized_Request [dcn] Use sanitized_Request [dramafever] Use sanitized_Request [dumpert] Use sanitized_Request [eitb] Use sanitized_Request [escapist] Use sanitized_Request [everyonesmixtape] Use sanitized_Request [extremetube] Use sanitized_Request [facebook] Use sanitized_Request [fc2] Use sanitized_Request [flickr] Use sanitized_Request [4tube] Use sanitized_Request [gdcvault] Use sanitized_Request [extractor/generic] Use sanitized_Request [hearthisat] Use sanitized_Request [hotnewhiphop] Use sanitized_Request [hypem] Use sanitized_Request [iprima] Use sanitized_Request [ivi] Use sanitized_Request [keezmovies] Use sanitized_Request [letv] Use sanitized_Request [lynda] Use sanitized_Request [metacafe] Use sanitized_Request [minhateca] Use sanitized_Request [miomio] Use sanitized_Request [meovideo] Use sanitized_Request [mofosex] Use sanitized_Request [moniker] Use sanitized_Request [mooshare] Use sanitized_Request [movieclips] Use sanitized_Request [mtv] Use sanitized_Request [myvideo] Use sanitized_Request [neteasemusic] Use sanitized_Request [nfb] Use sanitized_Request [niconico] Use sanitized_Request [noco] Use sanitized_Request [nosvideo] Use sanitized_Request [novamov] Use sanitized_Request [nowness] Use sanitized_Request [nuvid] Use sanitized_Request [played] Use sanitized_Request [pluralsight] Use sanitized_Request [pornhub] Use sanitized_Request [pornotube] Use sanitized_Request [primesharetv] Use sanitized_Request [promptfile] Use sanitized_Request [qqmusic] Use sanitized_Request [rtve] Use sanitized_Request [safari] Use sanitized_Request [sandia] Use sanitized_Request [shared] Use sanitized_Request [sharesix] Use sanitized_Request [sina] Use sanitized_Request [smotri] Use sanitized_Request [sohu] Use sanitized_Request [spankwire] Use sanitized_Request [sportdeutschland] Use sanitized_Request [streamcloud] Use sanitized_Request [streamcz] Use sanitized_Request [tapely] Use sanitized_Request [tube8] Use sanitized_Request [tubitv] Use sanitized_Request [twitch] Use sanitized_Request [twitter] Use sanitized_Request [udemy] Use sanitized_Request [vbox7] Use sanitized_Request [veoh] Use sanitized_Request [vessel] Use sanitized_Request [vevo] Use sanitized_Request [viddler] Use sanitized_Request [videomega] Use sanitized_Request [viewvster] Use sanitized_Request [viki] Use sanitized_Request [vk] Use sanitized_Request [vodlocker] Use sanitized_Request [voicerepublic] Use sanitized_Request [wistia] Use sanitized_Request [xfileshare] Use sanitized_Request [xtube] Use sanitized_Request [xvideos] Use sanitized_Request [yandexmusic] Use sanitized_Request [youku] Use sanitized_Request [youporn] Use sanitized_Request [youtube] Use sanitized_Request [patreon] Use sanitized_Request [extractor/common] Remove unused import [nfb] PEP 8
2015-07-23[downloader/dash] Improve 'combine_url' (fixes #6341)Jaime Marquínez Ferrándiz
In some videos the base_url already ends with '/'.
2015-06-10[downloader/dash] Add testing facilityYen Chi Hsuan
2015-06-10[downloader/dash] Do not pollute ```self```Yen Chi Hsuan
2015-06-04[downloader/dash] Reorder importsYen Chi Hsuan
2015-06-03[YoutubeDL] Support DASH manifest downloadingYen Chi Hsuan