Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | [vimeo:review] Fix extraction (#10900) | Yen Chi Hsuan | 2016-10-12 | 2 | -3/+6 | |
| | | | | | Now Vimeo Review videos uses React. Thanks @davekaro for analyzing the problem! | |||||
* | [test/test_http] Update tests | Yen Chi Hsuan | 2016-10-12 | 1 | -2/+2 | |
| | | | | | After switching to HTML5 extraction helpers in generic.py, the result info_dict is always a playlist. | |||||
* | [extractor/common] Support HTML media elements without child nodes | Yen Chi Hsuan | 2016-10-12 | 2 | -1/+6 | |
| | ||||||
* | [nhl] Skip invalid m3u8 formats (closes #10713) | Yen Chi Hsuan | 2016-10-11 | 2 | -2/+17 | |
| | ||||||
* | [hbo] Add HBOEpisodeIE (#10892) | Yen Chi Hsuan | 2016-10-11 | 1 | -1/+4 | |
| | ||||||
* | [footyroom] Fix extraction and update _TESTS (closes #10810) | Yen Chi Hsuan | 2016-10-11 | 2 | -13/+20 | |
| | ||||||
* | [streamable] Add helper for extracting embedded videos | Yen Chi Hsuan | 2016-10-11 | 1 | -0/+11 | |
| | ||||||
* | [abc.net.au:iview] Fix for non-series videos (closes #10895) | Yen Chi Hsuan | 2016-10-11 | 2 | -11/+12 | |
| | ||||||
* | [hbo] Add display_id and another test (#10892) | Yen Chi Hsuan | 2016-10-11 | 1 | -1/+8 | |
| | ||||||
* | [hbo] Support episode pages (closes #10892) | Yen Chi Hsuan | 2016-10-11 | 2 | -14/+50 | |
| | ||||||
* | [allocine] Fix for /video/ videos (closes #10860) | Yen Chi Hsuan | 2016-10-09 | 1 | -13/+43 | |
| | ||||||
* | [allocine] Fix extraction (closes #10860) | Yen Chi Hsuan | 2016-10-09 | 2 | -36/+22 | |
| | | | | | | I change the URL of the third test case, because now the original URL does not contain a video anymore, and there's no easy to get the real URL from the /film/ one. | |||||
* | [nextmedia] Support action news (動新聞) on Apple Daily | Yen Chi Hsuan | 2016-10-09 | 2 | -1/+7 | |
| | ||||||
* | [Makefile] Fix for GNU make < 4 (closes #9387) | Yen Chi Hsuan | 2016-10-09 | 3 | -3/+9 | |
| | | | | | | | Shell assignment operator in BSD make != is ported to GNU make in version 4.0, so 3.x doesn't work. I choose to drop BSD make support as installing GNU make on *BSD systems is easier than installing newer GNU make. | |||||
* | [slutload] Fix test and simplify | Déstin Reed | 2016-10-09 | 1 | -6/+2 | |
| | ||||||
* | [reverbnation] Eliminate code duplication in thumbnails extraction | Sergey M․ | 2016-10-09 | 1 | -10/+12 | |
| | ||||||
* | [reverbnation] Modernize | Déstin Reed | 2016-10-09 | 1 | -10/+17 | |
| | ||||||
* | [lego] improve info extraction and bypass geo restriction(closes #10872) | Remita Amine | 2016-10-08 | 1 | -23/+65 | |
| | ||||||
* | release 2016.10.07 | Sergey M․ | 2016-10-07 | 4 | -5/+10 | |
| | ||||||
* | [ChangeLog] Actualize | Sergey M․ | 2016-10-07 | 1 | -0/+13 | |
| | ||||||
* | [vimeo] PEP 8 | Sergey M․ | 2016-10-07 | 1 | -1/+2 | |
| | | | | [ci skip] | |||||
* | [iprima] detect geo restriction | Remita Amine | 2016-10-07 | 1 | -0/+3 | |
| | ||||||
* | [facebook] Fix for new handleServerJS syntax (closes #10846) | Yen Chi Hsuan | 2016-10-07 | 2 | -1/+2 | |
| | | | | | According to the dump file in #10846, handleServerJS() now accepts an optional second argument. It's a string from available dump files. | |||||
* | [extractors] Add MmsIE | Yen Chi Hsuan | 2016-10-07 | 1 | -1/+4 | |
| | ||||||
* | [generic,commonprotocols] Move mms suuport from GenericIE | Yen Chi Hsuan | 2016-10-07 | 3 | -29/+33 | |
| | | | | And use _generic_* helpers in those extractors | |||||
* | [extractor/common] Add id and title helpers for generic IEs | Yen Chi Hsuan | 2016-10-07 | 1 | -0/+7 | |
| | ||||||
* | [generic] Support direct MMS links (closes #10838) | Yen Chi Hsuan | 2016-10-07 | 2 | -0/+25 | |
| | ||||||
* | Revert "[Makefilea] Fix for GNU make < 4" | Yen Chi Hsuan | 2016-10-07 | 2 | -8/+2 | |
| | | | | | | This reverts commit 831a34caa2112a9b2d867e05f8a4debf965e8389. The reverted commit breaks lazy extractors. | |||||
* | [Makefilea] Fix for GNU make < 4 | Yen Chi Hsuan | 2016-10-07 | 2 | -2/+8 | |
| | | | | | | | | | | | | | | | | | | | | Closes #9387 The shell assignment operator != was introduced in GNU make 4.0, or specifically the commit in [1]. This fix removes such usages and fallback to a more portable syntax. Tested with: * GNU make 3.82 on CentOS 7.2 * bmake 20150910 on CentOS 7.2, source RPM from Fedora 24 [2] * GNU make 4.2.1 on Arch Linux (Arch official package) * bmake 20160926 on Arch Linux (Arch official package) * GNU make 3.82 on Arch Linux (Compiled from source) * Apple bsdmake-24 on macOS Sierra, binary package from Homebrew Thanks @bdeyal for the feedback of the first tests [1] http://git.savannah.gnu.org/cgit/make.git/commit/?id=b34438bee83ee906a23b881f257e684a0993b9b1 [2] http://koji.fedoraproject.org/koji/buildinfo?buildID=716769 | |||||
* | [generic] Add support for multiple vimeo embeds (Closes #10862) | Sergey M․ | 2016-10-06 | 3 | -20/+24 | |
| | ||||||
* | [nzz] Add new extractor(#4407) | Remita Amine | 2016-10-06 | 2 | -0/+37 | |
| | ||||||
* | [npo] detect geo restriction | Remita Amine | 2016-10-05 | 1 | -3/+12 | |
| | ||||||
* | [npo] Add support for 2doc.nl (Closes #10842) | Sergey M․ | 2016-10-05 | 1 | -2/+24 | |
| | ||||||
* | Rename "Steffan 'Ruirize' James" to "Steffan Donal" | Steffan Donal | 2016-10-05 | 1 | -1/+1 | |
| | | | Legal name change! | |||||
* | [lego] Add new extractor(closes #10369) | Remita Amine | 2016-10-04 | 2 | -0/+87 | |
| | ||||||
* | [tonline] Add new extractor(#10376) | Remita Amine | 2016-10-04 | 2 | -0/+60 | |
| | ||||||
* | [techtalks] Relax _VALID_URL | Sergey M․ | 2016-10-04 | 1 | -3/+6 | |
| | ||||||
* | [techtalks] Allow URL-s with name part omitted. | Aleksander Nitecki | 2016-10-04 | 1 | -1/+1 | |
| | ||||||
* | [youtube:live] Extend _VALID_URL (Closes #10839) | Sergey M․ | 2016-10-04 | 1 | -1/+4 | |
| | ||||||
* | [theweatherchannel] Add new extractor(closes #7188) | Remita Amine | 2016-10-03 | 2 | -0/+80 | |
| | ||||||
* | Unify coding cookie | Déstin Reed | 2016-10-03 | 99 | -99/+99 | |
| | ||||||
* | [thisoldhouse] Add new extractor(closes #10837) | Remita Amine | 2016-10-03 | 2 | -0/+33 | |
| | ||||||
* | [nhl] Add support for wch2016.com (Closes #10833) | Sergey M․ | 2016-10-03 | 1 | -4/+15 | |
| | ||||||
* | Merge pull request #10829 from TRox1972/pornoxo_improve | Yen Chi Hsuan | 2016-10-02 | 1 | -19/+12 | |
|\ | | | | | [pornoxo] Use JWPlatform to improve metadata extraction | |||||
| * | [pornoxo] Use JWPlatform to improve metadata extraction | Déstin Reed | 2016-10-02 | 1 | -19/+12 | |
| | | ||||||
* | | release 2016.10.02 | Sergey M․ | 2016-10-02 | 4 | -6/+6 | |
| | | ||||||
* | | [ChangeLog] Actualize | Sergey M․ | 2016-10-02 | 1 | -2/+13 | |
| | | ||||||
* | | [amcnetworks] Skip a restricted _TEST | Yen Chi Hsuan | 2016-10-02 | 1 | -0/+1 | |
| | | ||||||
* | | [jwplatform] Support DASH streams | Yen Chi Hsuan | 2016-10-02 | 3 | -2/+7 | |
| | | ||||||
* | | [jwplatform] Support old-style jwplayer playlists | Yen Chi Hsuan | 2016-10-02 | 2 | -0/+7 | |
| | |