summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* release 2016.10.07 2016.10.07Sergey M․2016-10-074-5/+10
|
* [ChangeLog] ActualizeSergey M․2016-10-071-0/+13
|
* [vimeo] PEP 8Sergey M․2016-10-071-1/+2
| | | | [ci skip]
* [iprima] detect geo restrictionRemita Amine2016-10-071-0/+3
|
* [facebook] Fix for new handleServerJS syntax (closes #10846)Yen Chi Hsuan2016-10-072-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 MmsIEYen Chi Hsuan2016-10-071-1/+4
|
* [generic,commonprotocols] Move mms suuport from GenericIEYen Chi Hsuan2016-10-073-29/+33
| | | | And use _generic_* helpers in those extractors
* [extractor/common] Add id and title helpers for generic IEsYen Chi Hsuan2016-10-071-0/+7
|
* [generic] Support direct MMS links (closes #10838)Yen Chi Hsuan2016-10-072-0/+25
|
* Revert "[Makefilea] Fix for GNU make < 4"Yen Chi Hsuan2016-10-072-8/+2
| | | | | | This reverts commit 831a34caa2112a9b2d867e05f8a4debf965e8389. The reverted commit breaks lazy extractors.
* [Makefilea] Fix for GNU make < 4Yen Chi Hsuan2016-10-072-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-063-20/+24
|
* [nzz] Add new extractor(#4407)Remita Amine2016-10-062-0/+37
|
* [npo] detect geo restrictionRemita Amine2016-10-051-3/+12
|
* [npo] Add support for 2doc.nl (Closes #10842)Sergey M․2016-10-051-2/+24
|
* Rename "Steffan 'Ruirize' James" to "Steffan Donal"Steffan Donal2016-10-051-1/+1
| | | Legal name change!
* [lego] Add new extractor(closes #10369)Remita Amine2016-10-042-0/+87
|
* [tonline] Add new extractor(#10376)Remita Amine2016-10-042-0/+60
|
* [techtalks] Relax _VALID_URLSergey M․2016-10-041-3/+6
|
* [techtalks] Allow URL-s with name part omitted.Aleksander Nitecki2016-10-041-1/+1
|
* [youtube:live] Extend _VALID_URL (Closes #10839)Sergey M․2016-10-041-1/+4
|
* [theweatherchannel] Add new extractor(closes #7188)Remita Amine2016-10-032-0/+80
|
* Unify coding cookieDéstin Reed2016-10-0399-99/+99
|
* [thisoldhouse] Add new extractor(closes #10837)Remita Amine2016-10-032-0/+33
|
* [nhl] Add support for wch2016.com (Closes #10833)Sergey M․2016-10-031-4/+15
|
* Merge pull request #10829 from TRox1972/pornoxo_improveYen Chi Hsuan2016-10-021-19/+12
|\ | | | | [pornoxo] Use JWPlatform to improve metadata extraction
| * [pornoxo] Use JWPlatform to improve metadata extractionDéstin Reed2016-10-021-19/+12
| |
* | release 2016.10.02 2016.10.02Sergey M․2016-10-024-6/+6
| |
* | [ChangeLog] ActualizeSergey M․2016-10-021-2/+13
| |
* | [amcnetworks] Skip a restricted _TESTYen Chi Hsuan2016-10-021-0/+1
| |
* | [jwplatform] Support DASH streamsYen Chi Hsuan2016-10-023-2/+7
| |
* | [jwplatform] Support old-style jwplayer playlistsYen Chi Hsuan2016-10-022-0/+7
| |
* | [utils] Fix xattr error handlingYen Chi Hsuan2016-10-022-4/+13
| |
* | [__init__] Fix lost xattr if --embed-thumbnail usedYen Chi Hsuan2016-10-022-2/+5
| | | | | | | | | | Reported at https://github.com/rg3/youtube-dl/issues/9054#issuecomment-250451823
* | [byutv:event] Add extractorSergey M․2016-10-022-2/+42
| |
* | [byutv] Fix id and display idSergey M․2016-10-021-20/+26
| |
* | [byutv] Rely on _match_id and _parse_jsonDéstin Reed2016-10-021-7/+6
| |
* | [periscope:user] Fix extraction (Closes #10820)Sergey M․2016-10-011-1/+1
| |
* | [utils] Support xattr as well as pyxattrYen Chi Hsuan2016-10-012-12/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Closes #9054 There are two xattr packages in Python, pyxattr [1] and xattr [2]. They have different APIs. In old days pyxattr supports Linux only and xattr supports Linux, Mac, FreeBSD and Solaris, and pyxattr supports Linux only. Recently pyxattr adds support for Mac OS X. [3] An old version of [2] is shipped with Mac OS X. However, some Linux distributions have pyxattr only, for example PLD-Linux [4] and old Arch Linux. [5] As a result, supporting both is the way to go. [1] https://github.com/iustin/pyxattr [2] https://github.com/xattr/xattr [3] https://github.com/iustin/pyxattr/pull/9 [4] https://github.com/rg3/youtube-dl/issues/5498 [5] https://git.archlinux.org/svntogit/community.git/commit/?id=427c4c76401e386d865ccddea4fbfdc74df80492 https://git.archlinux.org/svntogit/community.git/commit/?id=59b40da7b69622a6761d364a8b07909e9cccaa56 python-xattr is added on 2016/06/29 while pyxattr is there for more than 6 years
* | [downloader/http] xattr values should be bytesYen Chi Hsuan2016-10-011-1/+1
| |
* | Merge pull request #10818 from TRox1972/criterion_match_idYen Chi Hsuan2016-10-011-7/+5
|\ \ | | | | | | [criterion] Rely on _match_id, improve regex and add thumbnail to test
| * | [criterion] Rely on _match_id, improve regex and add thumbnail to testDéstin Reed2016-10-011-7/+5
| | |
* | | [twitch] Skip a 404 testYen Chi Hsuan2016-10-011-0/+1
| | |
* | | Merge pull request #10817 from TRox1972/clubic_match_idYen Chi Hsuan2016-10-011-8/+3
|\ \ \ | |_|/ |/| | [clubic] Rely on _match_id and _parse_json
| * | [clubic] Rely on _match_id and _parse_jsonDéstin Reed2016-09-301-8/+3
| |/
* | [dctp] Fix extraction (closes #10734)Yen Chi Hsuan2016-10-012-37/+31
| |
* | [downloader/http] Use write_xattr function for --xattr-set-filesizeYen Chi Hsuan2016-10-012-9/+5
| |
* | [instagram] PEP 8Sergey M․2016-10-011-2/+2
| |
* | [Instagram] Extract video dimensionsDéstin Reed2016-10-011-2/+10
| |
* | [tvland] Extend _VALID_URL (Closes #10812)Sergey M․2016-09-301-1/+4
| |