Sergey M․
617e58d850
[downloader/{common,fragment}] Fix total retries reporting on python 2.6
9 years ago
Sergey M․
e33baba0dd
[downloader/dash] Add fragment retry capability
...
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.
9 years ago
Sergey M․
721f26b821
[downloader/fragment] Add report_retry_fragment
9 years ago
remitamine
4230c4894d
[external/downloader] fix rtmp downloading using FFmpegFD
9 years ago
remitamine
2e7e561c1d
Merge pull request #8611 from remitamine/ffmpegfd
...
[downloader/external] Add FFmpegFD
9 years ago
remitamine
d8515fd41c
[downloader/external] pass configuration args to ffmpeg
9 years ago
remitamine
694c47b261
[external/downloader] don't pass -t and -ss to ffmpeg
9 years ago
remitamine
77dea16ac8
[downloader/external] check for ffmpeg availablity when it used for m3u8 download
9 years ago
remitamine
6ae27bed01
[download/external] move the check for multiple selected formats to get_suitable_downloader
9 years ago
remitamine
da1973a038
[extractor/__init__] disable time range downloading
9 years ago
remitamine
be24916a7f
[downloader/rtsp] Add rtsp and mms downloader
9 years ago
remitamine
2cb99ebbd0
[downloader/external] add can_download mathod for checking downloader availibilty and support
9 years ago
remitamine
91ee320bfa
[downloader/external] wrap available_opt in a list
9 years ago
remitamine
634415ca17
[downloader/external] skip FFmpegFD when requesting multiple formats
9 years ago
remitamine
a755f82549
[ffmpeg] convert format ext to ffmpeg output formats codes
9 years ago
Sergey M․
1b5284b13f
[downloader/fragment] Make speed more smooth
...
At the beginning of every segment there was a drop to Unknown speed due to timeslice being too small to calculate speed.
Now last speed from the previous fragment is used.
9 years ago
Yen Chi Hsuan
e9c0cdd389
[jython] Introduce compat_os_name
...
os.name is always 'java' on Jython
9 years ago
remitamine
f34294fa0c
[downloader/external:ffmpegfd] check for None value of start_time
9 years ago
remitamine
99cbe98ce8
[downloader/external] check for external downloaders availability
9 years ago
remitamine
12b84ac8c1
[downloader/external] Add FFmpegFD( fixes #622 )
...
- replace HlsFD and RtspFD
- add basic support for downloading part of the video or audio
9 years ago
Sergey M․
611c1dd96e
[refactor] Single quotes consistency
9 years ago
Sergey M․
d800609c62
[refactor] Do not specify redundant None as second argument in dict.get()
9 years ago
Sergey M․
c78c9cd10d
[downloader/dash] PEP 8
9 years ago
remitamine
c43fe0268c
[downloader/dash] Implement dashsegments fd in terms of fragment fd
9 years ago
Sergey M․
56401e1e5f
[downloader/hls] Do not send 'q' to ffmpeg on Windows ( Closes #8300 )
9 years ago
remitamine
a1a22572fb
[downloader/dash] make initialization_url optional
9 years ago
Sergey M․
b8c9926c0a
[downloader/f4m] Do not update fragment list while test
9 years ago
Sergey M․
2c2f1efdcd
[downloader/fragment] Remove superfluous whitespace
9 years ago
Sergey M․
09104e9930
[downloader/f4m] Add live stream flag to context
...
Now download progress for f4m livestreams is reported correctly
9 years ago
Sergey M․
5fa1702ca6
[downloader/fragment] Do not report total bytes estimation and eta for live streams
9 years ago
Sergey M․
8ab3fe81d8
[downloader/f4m] Prefer bootstrap url attribute over inline bootstrap info
9 years ago
Jaime Marquínez Ferrándiz
7d106a65ca
Add --hls-use-mpegts option
...
When using the mpegts container hls vidoes can be played while being downloaded (useful if you are recording a live stream).
VLC and mpv play them file, but QuickTime doesn't.
9 years ago
Jaime Marquínez Ferrándiz
32d77eeb04
[downloader/common] report_retry: Don't crash when retries is infinite ( fixes #8299 )
9 years ago
Jaime Marquínez Ferrándiz
9d90e7de03
[downloader/hls] Ask ffmpeg to quit when interrupting youtube-dl with 'Ctrl+C' ( #8252 )
...
Otherwise the mp4 file can't be played.
9 years ago
Sergey M․
b83b782dc4
[downloader/fragment] Move helper data to context dict
9 years ago
Sergey M․
709185a264
[downloader/fragment] More smooth calculations
...
`downloaded_bytes` is now updated on each fragment progress hook invocation
9 years ago
Sergey M․
9cb1a06b6c
[downloader/fragment] Remove unused code and fix zero division error
9 years ago
Jaime Marquínez Ferrándiz
3c91e41614
[downloader/fragment] Don't fail if the 'Content-Length' header is missing
...
In some dailymotion videos (like http://www.dailymotion.com/video/x3k0dtv from #8156 ) the segments URLs don't have the 'Content-Length' header and HttpFD sets the 'totat_bytes' field to None, so we also use '0' in that case (since we do different math operations with it).
9 years ago
Jaime Marquínez Ferrándiz
3f17c357d9
[downloader/hls] Don't let ffmpeg read from stdin ( #8139 )
...
If you run 'while read aurl ; do youtube-dl "${aurl}"; done < path_to_batch_file' (batch_file contains one url per line that uses the hls downloader) each call to youtube-dl consumed some characters and 'read' would assing to 'aurl' a non valid url
(This is the same problem that was fixed for the ffmpeg postprocessors in cffcbc02de
)
9 years ago
Sergey M․
9b9c5355e4
Rename error_to_str to error_to_compat_str
9 years ago
Sergey M․
7f8b271465
Properly convert errors to strings
9 years ago
Sergey M․
4db43567e8
[downloader/f4m] Decode manifest before fixing
9 years ago
Sergey M․
17b786ae73
[downloader/f4m] Fix malformed manifests ( Closes #7823 )
9 years ago
Yen Chi Hsuan
94e8c80473
[downloader/hls] Respect Youtubedl-* headers
9 years ago
Yen Chi Hsuan
9d0e366880
[downloader/hls] Remove Accept-encoding from headers passed to ffmpeg
...
Fails for Youtube Gaming live streams (#7671 )
9 years ago
Sergey M?
5c2266df4b
Switch codebase to use sanitized_Request instead of
...
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
9 years ago
ashutosh-mishra
17cc153435
Typo fix, found while going through the code.
9 years ago
Jaime Marquínez Ferrándiz
36e6f62cd0
Use a wrapper around xml.etree.ElementTree.fromstring in python 2.x ( #7178 )
...
Attributes aren't unicode objects, so they couldn't be directly used in info_dict fields (for example '--write-description' doesn't work with bytes).
9 years ago
Sergey M․
8cd9614abf
[downloader/f4m] More accurate fragment URL construction
9 years ago
remitamine
324ac0a243
[downloader/f4m] get the redirected f4m_url and handle url query string properly
9 years ago
Yen Chi Hsuan
985e4fdc07
[downloader/hls] Add headers only for http(s) URLs
...
ffmpeg 2.8.1 raises an error with -headers and non-http input files.
9 years ago
Sergey M․
964e7b2dd0
[downloader/common] Always skip "already downloaded" check when outputting to stdout
9 years ago
AndroKev
f101079ae0
[downloader/rtmp] Respect --no-continue option
...
now when downloading a "rtmp-file" the --no-continue option works!
9 years ago
Sergey M․
f102819463
[downloader/hls] Pass http headers to downloader
9 years ago
Jaime Marquínez Ferrándiz
8a7bbd1606
[postprocessor/ffmpeg] Always use the 'file:' protocol for filenames ( fixes #6874 )
...
If the filename contains ':' it is interpreted as a protocol.
It also handles filenames starting with '-'.
9 years ago
Sergey M․
133a2b4ac2
[downloader/hls] Properly close stream
9 years ago
Sergey M․
1195a38f46
[downloader/external] Use generalized cli option converters
9 years ago
remitamine
dc534b674f
[downloader/external] change _argless_option function to _valueless_option
9 years ago
remitamine
f30c2e8e98
[downloader/external] add _argless_option for option without arguments
9 years ago
remitamine
266b0ad676
[downloader/external] add _bool_option to pass value to bool option
9 years ago
remitamine
e7a8c3032d
[downloader/external] Respect --no-check-certificate for curl and aria2c and --proxy for curl
9 years ago
Sergey M․
fcd9e423ec
[hls] Properly encode fragment filename
9 years ago
Sergey M․
db8f2bfd99
[f4m] Add missing imports
9 years ago
Sergey M.
55801fc76e
Merge pull request #5588 from aajanki/encode_frag_filenames
...
[f4m] Fix encode error by sanitizing fragment filenames
9 years ago
Sergey M․
7393746da2
[downloader/hls] Add _debug_cmd
9 years ago
Sergey M․
6828c809e4
[downloader/fragment] Respect --retries for fragment based downloaders ( Closes #6549 )
9 years ago
Sergey M․
9f3da13860
[downloader/external] Use generic _option
9 years ago
Sergey M․
bf812ef714
[downloader/external] Forward --proxy to wget and aria2c
9 years ago
Sergey M․
154655a85a
[downloader/external] Respect --no-check-certificate for wget
9 years ago
vijayanand nandam
e0ac521438
adding support for axel download manager
9 years ago
Sergey M․
84bc4dcb0f
[downloader/http] Clarify rationale for Content-Range check ( #6426 )
9 years ago
Sergey M․
10eaa8ef1d
[downloader/http] Report unable to resume
9 years ago
Sergey M․
c3124c3085
[downloader/http] Simplify
9 years ago
remitamine
8d5b8b477e
[utils] import re
9 years ago
remitamine
d7d2a9a3db
[utils] restart download if server does not support byte ranges
9 years ago
Sergey M․
f9a5affad9
[hls] Implement hlsnative fd in terms of fragment fd
9 years ago
Sergey M․
ab81ef8fa7
[f4m] Implement f4m fd in terms of fragment fd
9 years ago
Sergey M․
95d8f7ea12
[fragment] Generalize fragmented media file downloader
9 years ago
Jaime Marquínez Ferrándiz
59db9f8018
[downloader/dash] Improve 'combine_url' ( fixes #6341 )
...
In some videos the base_url already ends with '/'.
9 years ago
Jaime Marquínez Ferrándiz
2ee8f5d80f
Merge remote-tracking branch 'yan12125/download-dash-segments' ( #5886 )
9 years ago
Sergey M․
6c4d20cd6f
[downloader/external] Fix externals downloaders specified with extension on Windows
9 years ago
Jaime Marquínez Ferrándiz
906e2f0eac
[downloader/external] Add downloader for httpie ( closes #6079 )
9 years ago
Yen Chi Hsuan
5bf3276e8d
[downloader/dash] Add testing facility
10 years ago
Yen Chi Hsuan
93dfcb9357
[downloader/dash] Do not pollute ```self```
10 years ago
Yen Chi Hsuan
423d2be5f8
[downloader/dash] Rename the protocol
...
'http_dash_segments' looks more like a protocol name than
'dash_segments'
10 years ago
Yen Chi Hsuan
453a1617aa
[downloader/dash] Reorder imports
10 years ago
Yen Chi Hsuan
b9258c6178
[YoutubeDL] Change how DashSegmentsFD is selected
10 years ago
Yen Chi Hsuan
6800d3372f
[YoutubeDL] Support DASH manifest downloading
10 years ago
Yen Chi Hsuan
156fc83a55
[downloader/rtmp] Fix a typo
10 years ago
Antti Ajanki
233c1c0e76
[downloader/f4m] Fragment filenames must be sanitized
...
because the fragment was written to a file with a sanitized name by
http_dl.download()
10 years ago
Jaime Marquínez Ferrándiz
2ddcd88129
Remove code that was only used by the Grooveshark extractor
10 years ago
Sergey M․
74f8654a53
[downloader/external] Use encodeArgument
10 years ago
Sergey M․
9e105a858c
[downloader/rtmp] Fix arguments encoding and simplify retry logic ( Closes #5528 )
10 years ago
Sergey M․
cd8a07a764
[downloader/common] Use decodeArgument
10 years ago
Sergey M․
a5ebf77d87
[mplayer] Rename to RTSP
10 years ago
Sergey M․
b874495b1f
[mplayer] Simplify
10 years ago
Sergey M․
b860f5dfd4
[mplayer] Clarify error message
10 years ago
mrkrossxdx
db37e0c273
Added support for mpv if mplayer is not available
10 years ago
Yen Chi Hsuan
c6391cd587
[Senate] Add new extractor ( #5302 )
10 years ago
Philipp Hagemeister
c59e701e35
Default to continuedl=True
...
We already do this in the CLI interface, so it should be just fine.
10 years ago
Jaime Marquínez Ferrándiz
70a1165b32
Don't use bare 'except:'
...
They catch any exception, including KeyboardInterrupt, we don't want to catch it.
10 years ago
Jaime Marquínez Ferrándiz
43d6280d0a
[downloader/f4m] Fix use of base64 in python 3.2 ( fixes #5132 )
...
b64decode needs a byte string, but on 3.4 it also accepts strings.
10 years ago
Jaime Marquínez Ferrándiz
f28fe66970
[downloader/http] Add missing fields for _hook_progress call
...
It would fail if you run 'youtube-dl --no-part URL' a second time when the file has already been downloaded.
(Reported in Fedora: https://bugzilla.redhat.com/show_bug.cgi?id=1195779 )
10 years ago
Jaime Marquínez Ferrándiz
123397317c
[downloader/http] Remove wrong '_hook_progress' call ( fixes #5117 )
10 years ago
Philipp Hagemeister
c75f0b361a
[downloader/external] Add support for custom options ( Fixes #4885 , closes #5098 )
10 years ago
Philipp Hagemeister
2a15a98a6a
[rmtp] Encode filename before invoking subprocess
...
This fixes #5066 .
Reproducible with
LC_ALL=C youtube-dl "http://www.prosieben.de/tv/germanys-next-topmodel/video/playlist/ganze-folge-episode-2-das-casting-in-muenchen "
10 years ago
Antti Ajanki
5eaaeb7c31
[f4m] Tolerate missed fragments on live streams
10 years ago
Antti Ajanki
c4f8c453ae
[f4m] Refresh fragment list periodically on live streams
10 years ago
Philipp Hagemeister
8fb3ac3649
PEP8: W503
10 years ago
Philipp Hagemeister
09ab40b7d1
Merge branch 'progress-as-hook2'
10 years ago
Philipp Hagemeister
a91a2c1a83
[downloader] Remove various unneeded assignments and imports
10 years ago
Philipp Hagemeister
16e7711e22
[downloader/http] Remove gruesome import
10 years ago
Philipp Hagemeister
5cda4eda72
[YoutubeDL] Use a progress hook for progress reporting
...
Instead of every downloader calling two helper functions, let our progress report be an ordinary progress hook like everyone else's.
Closes #4875 .
10 years ago
Philipp Hagemeister
8ac27a68e6
[hls] Switch to available as a property
10 years ago
Jaime Marquínez Ferrándiz
fbc503d696
[downloader/hls] Fix detection of ffmpeg/avconv (reported in #4966 )
10 years ago
Jaime Marquínez Ferrándiz
163d966707
[downloader/external] curl: Add the '--location' flag
...
curl doesn't follow redirections by default
10 years ago
Philipp Hagemeister
85729c51af
[downloader] Add --hls-prefer-native to use the native HLS downloader ( #4966 )
10 years ago
Philipp Hagemeister
73fac4e911
[ffmpeg] Add --ffmpeg-location
10 years ago
Philipp Hagemeister
cc9ca3ba6e
[downloader/external] Simplify source_address
...
'' might actually be passed in, so check for None.
10 years ago
Sergey M․
ae7773942e
[downloader/external] Simplify
10 years ago
Sergey M․
469a64cebf
[downloader/external] Simplify
10 years ago
vijayanand nandam
6a66904f8e
passing source address option to external downloaders
10 years ago
Philipp Hagemeister
1283204917
[http] PEP8 ( #4831 )
10 years ago
Philipp Hagemeister
6789defea9
Merge pull request #4831 from light94/master
...
Handling Connection Reset by Peer Error
10 years ago
Sergey M․
4a3da4ebdb
[hls] Simplify
10 years ago
Sergey M․
027008b14e
[hls] Fix encode issues on python2 @ Windows
10 years ago
light94
e77d2975af
Handling Connection Reset by Peer Error
10 years ago
Jaime Marquínez Ferrándiz
e41b1f7385
Fix flake8 errors
10 years ago
Philipp Hagemeister
d543bdc351
[downloader/f4m] Clarify that we should eventually just implement the DRM scheme ( #3000 )
10 years ago
Philipp Hagemeister
c7ff0c6422
Merge remote-tracking branch 'rzhxeo/f4m-drm'
10 years ago
Paul Hartmann
7bb3ceb4c7
[dctp] prefix real_time parameter with rtmp_
10 years ago
Paul Hartmann
0865f397ae
added extractor for dctp.tv
10 years ago
rzhxeo
6ca85be6f8
Filter DRM protected media in f4m downloader
10 years ago
Philipp Hagemeister
3dee7826e7
[rtl2] PEP8, simplify, make rtmp tests run ( #470 )
10 years ago
Philipp Hagemeister
d4f64cabf4
Merge remote-tracking branch 'David-Development/rtl2.py'
10 years ago
Philipp Hagemeister
881e6a1f5c
Add --xattr-set-filesize option ( Fixes #1348 )
10 years ago
David-Development
7906d199a1
[rtl2] Add new extractor
10 years ago
Jaime Marquínez Ferrándiz
e5660ee6ae
[YoutubeDL] Fill the info dict 'http_headers' field with all the headers available
...
Useful for external tools using the json output.
The methods '_calc_headers' and '_calc_cookies' have been copied from the downloader/external, now they just use "info_dict['http_headers']".
10 years ago
Jaime Marquínez Ferrándiz
587a9c2749
[downloader/external] Use the 'http_headers' field
10 years ago
Jaime Marquínez Ferrándiz
e1554a407d
[extractors] Use http_headers for setting the User-Agent and the Referer
10 years ago
Jaime Marquínez Ferrándiz
3fcfb8e9fa
[utils] YoutubeDLHandler: don't use 'Youtubedl-user-agent' for overriding the default user agent
...
Setting the 'User-Agent' header is enough
10 years ago
Philipp Hagemeister
384b62028a
[downloader/external] Add curl and aria2c ( Closes #182 )
10 years ago
Philipp Hagemeister
222516d97d
[downloader] Lay groundwork for external downloaders.
...
This comes with a very simply implementation for wget; the real work is in setting up the infrastructure.
10 years ago
Philipp Hagemeister
a055469faf
[downloader] Improve downloader selection
10 years ago
Jaime Marquínez Ferrándiz
bf7fa94ec7
[downloader/f4m] build_fragments_list: Support videos with more than 1 segment
10 years ago
Philipp Hagemeister
5f0d813d93
Merge remote-tracking branch 'rupertbaxter2/master'
...
Conflicts:
youtube_dl/__init__.py
youtube_dl/downloader/common.py
10 years ago
Pierre
4340decad2
check for overwriting files in the downloader ( fixes #3916 , closes #3829 )
10 years ago
Antti Ajanki
f14f2a6d79
[downloader/f4m] Minor cleanup
10 years ago
Antti Ajanki
2c322cc5d6
[downloader/f4m] The last value in a tag is the tag length
10 years ago
Antti Ajanki
3b8f3a1504
[downloader/f4m] <metadata> is optional according to the F4M specs
10 years ago
Jaime Marquínez Ferrándiz
63948fc62c
[downloader/hls] Respect the 'prefer_ffmpeg' option
10 years ago
Philipp Hagemeister
95ceeec722
Remove unused import
10 years ago
Jaime Marquínez Ferrándiz
d26b1317ed
[downloader/mplayer] Use check_executable
10 years ago
Philipp Hagemeister
fdc8000810
[downloader] Handle a file ./- ( Fixes #4498 )
10 years ago
Philipp Hagemeister
7af808a5ef
Improve code style
10 years ago
Philipp Hagemeister
71b640cc5b
[YoutubeDL] Add declarative version of progress hooks
10 years ago
Philipp Hagemeister
da4d4191a9
Merge branch 'master' of github.com:rg3/youtube-dl
10 years ago
Philipp Hagemeister
1cc79574fc
Fix imports and general cleanup
...
· Import from compat what comes from compat. Yes, some names are available in utils too, but that's an implementation detail.
· Use _match_id consistently whenever possible
· Fix some outdated tests
· Use consistent valid URL (always match the whole protocol, no ^ at start required)
· Use modern test definitions
10 years ago
Philipp Hagemeister
cc8c9281e6
[downloader/common] Do not use classic int division
10 years ago
Philipp Hagemeister
cf372f0778
Merge remote-tracking branch 'SyxbEaEQ2/rate-limit'
10 years ago
Philipp Hagemeister
5f9b83944d
[ffmpeg] Improve version check and call it from hls ( Fixes #4377 )
10 years ago
Philipp Hagemeister
80310134e0
[mplayer] Modernize
10 years ago
Philipp Hagemeister
4d2d638df4
[http] Modernize
10 years ago
Philipp Hagemeister
0e44f90e18
[hls] Remove useless u porefixes
10 years ago
Philipp Hagemeister
14d4e90eb1
[downloader/__init__] Define proper __all__
10 years ago
Jouke Waleson
9e1a5b8455
PEP8: applied even more rules
10 years ago
Jouke Waleson
2514d2635e
PEP8: E225,E227
10 years ago
Jouke Waleson
8bcc875676
PEP8: more applied
10 years ago
Jouke Waleson
5f6a1245ff
PEP8 applied
10 years ago
Philipp Hagemeister
b6b70730bf
[downloader/common] Modernize
10 years ago
Philipp Hagemeister
4c83c96795
[YoutubeDL] Include rtmpdump in exe versions -v output
10 years ago
Philipp Hagemeister
ee966928af
[f4m] Support bootstrap URLs
10 years ago
Philipp Hagemeister
fec02bcc90
[hlsnative] Correct handling when remaining_bytes is None
10 years ago
Philipp Hagemeister
b686fc18da
[hlsnative] Support test parameter
10 years ago
Philipp Hagemeister
f0b5d6af74
[vevo] Support 1080p videos ( Fixes #3656 )
10 years ago
Jaime Marquínez Ferrándiz
b509a4b176
[downloader/f4m] If <pv-2.0> is in the manifest, add it to the fragments urls query ( fixes #3176 )
...
It's used in some akamai videos (for example for theplatform.com).
10 years ago
Sergey M․
88a23aef5a
[http] Avoid closing stdout ( Fixes #3686 )
10 years ago
Jaime Marquínez Ferrándiz
7798fad535
[downloader/rtmp] Use check_exectuble
10 years ago
Jaime Marquínez Ferrándiz
baf2907501
[downloader/hls] Return False if ffmpeg or avconv couldn't be found
10 years ago
Jaime Marquínez Ferrándiz
3c765c68c4
[downloader/hls] Use check_executable
10 years ago
Jaime Marquínez Ferrándiz
29153f49b3
[downloader/hls] Use the correct program when reporting an error
10 years ago
Philipp Hagemeister
d769be6c96
[grooveshark,http] Make HTTP POST downloads work
10 years ago
rupertbaxter2
a42c921598
Removed sleep and sleep output when interval is zero
10 years ago
rupertbaxter2
f96252b913
Merge remote-tracking branch 'upstream/master'
10 years ago
Sergey M․
c767dc74b8
[downloader/common] Fix typo
10 years ago
SyxbEaEQ2
00cf122d7a
[downloader/common] Fix possible negative sleep time in slow_down()
10 years ago
rupertbaxter2
03359e9864
Added --sleep-interval option
10 years ago
SyxbEaEQ2
c7667c2d7f
[downloader/(common/http)] Changes calculation of the rate-limit. ( Fix #2297 , fix #2140 , fix #595 , fix #2370 )
10 years ago
Jaime Marquínez Ferrándiz
31bb8d3f51
[bloomberg] Extract the available formats ( closes #2776 )
...
It uses a helper method in the InfoExtractor class.
The downloader will pick the requested formats using the bitrate in the info dict.
10 years ago
Jaime Marquínez Ferrándiz
23566e0d78
rtmp and hls downloaders: Clarify error message when the external tools are not installed
...
Ask to install them, as we do in the postprocessor.
We get some reports with it, like #3061 or #3048 .
11 years ago
Jaime Marquínez Ferrándiz
087ca2cb07
[naver] Add rtmp formats ( fixes #3054 )
11 years ago
Sergey M․
eb45133451
[rtmp] Add support for multiple AFM data entries
11 years ago
Sergey M․
32fd27ec98
[http] Fix string/None comparison with int while in test
11 years ago
Sergey M․
df297c8794
[http] Improve download mechanism when Range HTTP header is ignored
11 years ago
Jaime Marquínez Ferrándiz
e3ced9ed61
[downloader/common] Use `compat_str` with the error in `try_rename` (appeared in #2389 )
...
Otherwise on python 2.x we get `UnicodeDecodeError` because it may contain non ascii characters.
11 years ago
Jaime Marquínez Ferrándiz
b900e7cba4
[downloader/f4m] Close the final video
11 years ago
Sergey M․
a59e40a1ea
Replace 'referer' with 'http_referer'
11 years ago
Sergey M․
1d0e49e1c7
Use explicitly set Referer header for downloading
11 years ago
Philipp Hagemeister
75f2e25ba9
[downloader/hls] Encode filename ( Fixes #2609 )
11 years ago
Jaime Marquínez Ferrándiz
22ff5d2105
[http] Use the `YoutubeDL.urlopen` method
11 years ago