summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | [nicknight] Add extractorNeroBurner2016-11-022-1/+27
| |
* | [extractor/common] Improve mpd base URL extraction (closes #10909, closes ↵Sergey M․2016-11-011-1/+1
| | | | | | | | #11079)
* | [utils] Fix --match-filter for int-like strings (closes #11082)Sergey M․2016-10-312-3/+15
| |
* | release 2016.10.31Sergey M․2016-10-313-5/+5
| |
* | [README.md] Fix a typoMel Shafer2016-10-311-1/+1
| |
* | release 2016.10.30Sergey M․2016-10-304-5/+6
| |
* | [ChangeLog] ActualizeSergey M․2016-10-301-0/+4
| |
* | [vessel] Add tests for #11068Sergey M․2016-10-301-0/+6
| |
* | [vessel] Improve video id extractiondundua2016-10-301-2/+2
| |
* | [facebook] Remove SWF params so that 1080P are detectedYen Chi Hsuan2016-10-302-38/+23
| | | | | | | | | | | | | | | | Closes #11073 In the provided link, SWF params give up to 720P, and VideoConfig gives 1080P for both best and bestvideo. I guess all Facebook videos supports HTML5 now, so I remove the old detection for SWF params
* | [imgur] Recognize /r/ URLs (closes #11071)Yen Chi Hsuan2016-10-302-1/+5
| |
* | [beeg] Fix extraction (closes #11069)Sergey M․2016-10-301-7/+7
| |
* | Credit @Thor77 for jamendo (#10934)Sergey M․2016-10-301-0/+1
| |
* | [openload] Fix extraction (#10408)Yen Chi Hsuan2016-10-292-1/+2
| | | | | | | | Thanks @TwelveCharzz again for studying openload codes
* | [gvsearch] Modernize and fix page result request (closes #11051)Sergey M․2016-10-281-9/+9
| |
* | [ard] Fix typoneutric2016-10-271-1/+1
| |
* | [adultswim] Fix extraction (closes #10979)Yen Chi Hsuan2016-10-272-0/+24
| |
* | [nobelprize] Add new extractor(closes #9999)Remita Amine2016-10-262-0/+63
| |
* | [hornbunny] Fix extraction (#10981)Yen Chi Hsuan2016-10-272-20/+19
| |
* | [tvp] improve video id extraction(closes #10585)Remita Amine2016-10-261-1/+2
| |
* | release 2016.10.26Sergey M․2016-10-264-5/+7
| |
* | [ChangeLog] ActualizeSergey M․2016-10-261-0/+8
| |
* | [rentv] Move rentv test from generic extractor and add only matching testsSergey M․2016-10-262-18/+24
| |
* | [rentv] Add new extractor(closes #10620)Remita Amine2016-10-262-0/+60
| |
* | [ard] Detect unavailable videos (closes #11018)Sergey M․2016-10-251-4/+10
| |
* | [vk] Fix extraction (closes #11022)Sergey M․2016-10-251-3/+12
| |
* | release 2016.10.25Sergey M․2016-10-254-6/+10
| |
* | [ChangeLog] ActualizeSergey M․2016-10-251-0/+1
| | | | | | | | [ci skip]
* | [jamendo] ImproveSergey M․2016-10-252-61/+54
| |
* | [jamendo] Add extractorThor772016-10-252-0/+118
| |
* | [ChangeLog] ActualizeSergey M․2016-10-251-0/+5
| |
* | Credit @azuwis for pandatv (#10736)Sergey M․2016-10-251-0/+1
| |
* | [pandatv] Extract m3u8, document reverse source and PEP 8Sergey M․2016-10-251-22/+29
| |
* | [pandatv] Add new extractorZhong Jianxin2016-10-252-0/+85
| |
* | [movieclips] Fix _VALID_URLSergey M․2016-10-241-1/+1
| |
* | [dotsub] Support vimeo embed (closes #10964)Yen Chi Hsuan2016-10-242-8/+39
| |
* | [litv] Fix extraction (#11006)Yen Chi Hsuan2016-10-232-22/+20
| |
* | [vimeo] Delegate ondemand redirects to ondemand extractor (closes #10994)Sergey M․2016-10-231-1/+22
| |
* | [vivo] Fix extraction (closes #11003)Sergey M․2016-10-232-40/+65
| |
* | [twitch:stream] Add support for rebroadcasts (closes #10995)Sergey M․2016-10-231-1/+2
| |
* | [pluralsight] Fix subtitles conversion (closes #10990)Sergey M․2016-10-221-3/+7
| |
* | Merge branch 'johnhawkinson-stdin2'Yen Chi Hsuan2016-10-222-0/+10
|\ \
| * | [ChangeLog] Update for #10996Yen Chi Hsuan2016-10-221-0/+6
| | |
| * | [utils] Clarify for redirecting STDIN in get_exe_version()Yen Chi Hsuan2016-10-221-0/+3
| | |
| * | [get_exe_version] Do version probes with <&-John Hawkinson2016-10-221-0/+1
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When doing version probes for ffmpeg, do the equivalent of calling it as: ffmpeg -version <&- Where <&- is shell syntax for closing stdin before calling the program. This is roughly equivalent to </dev/null without actually opening /dev/null. This prevents ffmpeg -version from hanging when run in the background. Fixes #955. The reason is that ffmpeg tries to manipulate stdin to set up terminal characteristic, and that causes the kernel to suspend the parent process (youtube-dl). Note that closing stdin is achieved by calling subprocess.Popen() with stdin set to subprocess.PIPE and without passing any input to Popen.communicate(). This is somewhat subtle.
* | release 2016.10.21.1Sergey M․2016-10-213-5/+5
| |
* | [ChangeLog] ActualizeSergey M․2016-10-211-0/+6
| |
* | [adobepass] PEP 8Sergey M․2016-10-211-4/+8
| |
* | [pluralsight] Process all clip URLs (closes #10984)Sergey M․2016-10-211-11/+23
| |
* | release 2016.10.21Sergey M․2016-10-213-5/+5
| |