Yen Chi Hsuan
e2e84aed7e
Merge branch 'lkho-pr/#10268'
2016-08-11 19:09:18 +08:00
Yen Chi Hsuan
b1927f4e8a
[YoutubeDL] Disable newline conversion when writing subtitles
...
By default io.open() convert all '\n' occurrences to '\r\n' when writing
files. If the content already contains '\r\n', it will be converted to
'\r\r\n', breaking some video players.
2016-08-11 19:04:23 +08:00
Yen Chi Hsuan
3b9323d96e
Merge branch 'pr/#10268' of https://github.com/lkho/youtube-dl into lkho-pr/#10268
2016-08-11 19:03:08 +08:00
Yen Chi Hsuan
69d8eeeec5
[ctsnews] Fix extraction
2016-08-10 11:38:38 +08:00
Yen Chi Hsuan
81c13222c6
[utils] Recognize more formats in unified_timestamp
...
Used in CtsNews
2016-08-10 11:37:23 +08:00
Yen Chi Hsuan
3dc240e8c6
[sohu] Update _TESTS ( closes #10260 )
2016-08-08 18:48:21 +08:00
Yen Chi Hsuan
a41a6c5094
[chaturbate] Skip the invalid test
2016-08-08 13:06:02 +08:00
Yen Chi Hsuan
d71207121d
[biqle] Skip an invalid test
2016-08-08 12:59:55 +08:00
Yen Chi Hsuan
b1c6f21c74
[aparat] Fix extraction
2016-08-08 12:59:07 +08:00
Yen Chi Hsuan
412abb8760
[bilibili] Update _TESTS
2016-08-08 12:57:17 +08:00
Yen Chi Hsuan
f17d5f6d14
[features.aol.com] Fix _TESTS
2016-08-08 12:52:36 +08:00
Yen Chi Hsuan
b2bd968f4b
[kuwo:singer] Fix extraction
2016-08-07 22:59:34 +08:00
Yen Chi Hsuan
c1decda58c
[openload] Fix extraction ( closes #9706 )
2016-08-07 02:44:15 +08:00
Yen Chi Hsuan
d3f8e038fe
[utils] Add decode_png for openload ( #9706 )
2016-08-07 02:42:58 +08:00
Yen Chi Hsuan
962250f7ea
[cbslocal] Fix timestamp parsing ( closes #10213 )
2016-08-05 11:44:50 +08:00
Yen Chi Hsuan
7dc2a74e0a
[utils] Fix unified_timestamp for formats parsed by parsedate_tz()
2016-08-05 11:41:55 +08:00
Yen Chi Hsuan
6bb0fbf9fb
Revert "[README.md] Use full paths for all configuration files ( #8863 )"
...
This reverts commit 899d2bea63 .
2016-08-04 09:54:28 +08:00
Yen Chi Hsuan
899d2bea63
[README.md] Use full paths for all configuration files ( #8863 )
2016-08-03 11:15:27 +08:00
Yen Chi Hsuan
116e7e0d04
[bloomberg] Support BPlayer() players ( closes #10187 )
2016-07-31 14:47:19 +08:00
Yen Chi Hsuan
35aa6c538f
Add ChangeLog
2016-07-30 12:33:09 +08:00
Yen Chi Hsuan
35f6e0ff36
[mtv.de] Skip 2 geo-restricted tests
2016-07-26 13:19:47 +08:00
Yen Chi Hsuan
326fa4e6e5
[generic] Skip an invalid test
2016-07-26 13:16:04 +08:00
Yen Chi Hsuan
c74299a72c
[cmt] Detect unavailable videos and update _TESTS
2016-07-26 13:13:14 +08:00
Yen Chi Hsuan
10a1bb3a78
[mtv] Fix for videos with missing bitrates
2016-07-26 13:12:24 +08:00
Yen Chi Hsuan
4d3e543c73
Update extractors.py
2016-07-26 11:17:28 +08:00
Yen Chi Hsuan
05d1e7aaa9
[generic] Fix an MTV test and another test that breaks nosetests
2016-07-26 11:11:36 +08:00
Yen Chi Hsuan
a3aa814b77
Update _TESTS for MTV sites
2016-07-26 11:10:41 +08:00
Yen Chi Hsuan
5c32a77cad
[nextmovie] Remove extractor
...
This domain name now redirects to mtv.com
2016-07-26 11:08:55 +08:00
Yen Chi Hsuan
14a28e705b
[test/test_all_urls] Remove *.cc.com tests
2016-07-26 11:08:09 +08:00
Yen Chi Hsuan
cc99d4f826
[comedycentral] Remove IEs for *.cc.com except tosh.cc.com
...
All other subdomains now redirects to cc.com/* URLs
2016-07-26 11:06:50 +08:00
Yen Chi Hsuan
712c7530ff
[mtv] Extract more metadata and more
...
1. Remove MTVIggyIE. All www.mtviggy.com URLs now redirects to
www.mtv.com
2. Fix MTVDEIE
3. Return multiple URLs from _transform_rtmp_url. This is for
tosh.cc.com
2016-07-26 11:03:43 +08:00
Yen Chi Hsuan
998895dffa
[cloudy] Drop videoraj.to
...
videoraj.ch is now a shoe-selling website, and videoraj.to domain name
is gone.
2016-07-16 15:37:54 +08:00
Yen Chi Hsuan
aadd3ce21f
[cliphunter] Update _TESTS
2016-07-16 15:37:54 +08:00
Yen Chi Hsuan
ae7b846203
[cbsnews] Update _TESTS of CBSNewsLiveVideoIE
2016-07-16 15:37:54 +08:00
Yen Chi Hsuan
21ba7d0981
[cbc] Skip geo-restricted test case
2016-07-16 15:37:54 +08:00
Yen Chi Hsuan
23495d6a39
Revert "[ffmpeg] Fix embedding subtitles ( #9063 )"
...
This reverts commit ccff2c404d .
Fixes #10081 .
The new approach breaks embedding subtitles into video-only or
audio-only files. FFMpeg provides a trick: add '?' after the argument of
'-map' so that a missing stream is ignored. For example:
opts = [
'-map', '0:v?',
'-c:v', 'copy',
'-map', '0:a?',
'-c:a', 'copy',
# other options...
]
Unfortunately, such a format is not implemented in avconv, either.
I guess adding '-ignore_unknown' if self.basename == 'ffmpeg' is the
best solution. However, the example mentioned in #9063 no longer serves
problematic files, so I can't test it. I'll reopen #9063 and wait for
another example so that I can test '-ignore_unknown'.
2016-07-15 20:02:36 +08:00
Yen Chi Hsuan
9d865a1af6
[travis] Skip downloading srelay
...
SOCKS tests never run on Travis CI due to unknown reasons, and
downloading them broke some tests (e.g.
https://travis-ci.org/rg3/youtube-dl/builds/144306425 )
2016-07-13 14:27:14 +08:00
Yen Chi Hsuan
2a49d01600
[playvid] Update _TESTS
...
Blocks https://travis-ci.org/rg3/youtube-dl/jobs/143809100
2016-07-11 15:15:28 +08:00
Yen Chi Hsuan
b99af8a51c
[biobiochiletv] Fix extraction and update _TESTS
2016-07-11 13:23:57 +08:00
Yen Chi Hsuan
8e7020daef
[rudo] Add new extractor
...
Used in biobiochile.tv
2016-07-11 13:19:25 +08:00
Yen Chi Hsuan
e2dbcaa1bf
[vuclip] Fix extraction
2016-07-11 00:52:25 +08:00
Yen Chi Hsuan
ae01850165
[miomio] Fix _TESTS
2016-07-11 00:03:24 +08:00
Yen Chi Hsuan
c3baaedfc8
[miomio] Support new 'h5' player ( closes #9605 )
...
Depends on #8876
2016-07-10 23:46:48 +08:00
Yen Chi Hsuan and GitHub
0b68de3cc1
Merge pull request #8876 from remitamine/html5_media
...
[extractor/common] add helper method to extract html5 media entries
2016-07-10 23:40:45 +08:00
Yen Chi Hsuan
c03adf90bd
[generic] Add the test. Closes #1638
2016-07-09 14:39:01 +08:00
Yen Chi Hsuan
0ece114b7b
[vimeo] Recognize non-standard embeds ( #1638 )
2016-07-09 14:38:27 +08:00
Yen Chi Hsuan and GitHub
5b6a74856b
Merge pull request #9288 from reyyed/issue#9063fix
...
[ffmpeg] Fix embedding subtitles (#9063 )
2016-07-09 14:29:53 +08:00
Yen Chi Hsuan
ae8cb5328d
Merge branch 'JakubAdamWieczorek-polskie-radio'
2016-07-08 19:35:21 +08:00
Yen Chi Hsuan
2e32ac0b9a
[polskieradio] Fix regex in _TESTS
2016-07-08 19:34:53 +08:00
Yen Chi Hsuan
672f01c370
Merge branch 'polskie-radio' of https://github.com/JakubAdamWieczorek/youtube-dl into JakubAdamWieczorek-polskie-radio
2016-07-08 19:33:28 +08:00
Yen Chi Hsuan
0ab7f4fe2b
[nick] support nickjr.com ( closes #7542 )
2016-07-08 15:11:28 +08:00
Yen Chi Hsuan
ec3518725b
[compat] Fix test_cmdline_umlauts on Python 2.6
...
The original statement raises uncaught UnicodeWarning on Python 2.6
2016-07-07 22:30:58 +08:00
Yen Chi Hsuan
dfe5fa49ae
[compat] Fix compat_shlex_split for non-ASCII input
...
Closes #9871
2016-07-07 17:37:29 +08:00
Yen Chi Hsuan
f7291a0b7c
[daum.net] Fix extraction for specific examples
...
Closes #9972
2016-07-07 01:26:14 +08:00
Yen Chi Hsuan
c65aa4e9e1
[brightcove:legacy] Support 'playlistTabs' and skip a dead test
...
Closes #9965
2016-07-07 01:13:37 +08:00
Yen Chi Hsuan
ad213a1d74
[francetv] Recognize more Dailymotion embedded videos
...
Closes #9955
2016-07-06 23:37:54 +08:00
Yen Chi Hsuan
43f1e4e41e
[onet] Add MD5 checksum
2016-07-06 20:32:03 +08:00
Yen Chi Hsuan
54b0e909d5
[amp] Fix a typo
2016-07-06 20:10:47 +08:00
Yen Chi Hsuan
f8752b86ac
[Onet,ClipRs] Add new extractor for onet.tv and use it for clip.rs
...
Closes #9950
2016-07-06 20:09:05 +08:00
Yen Chi Hsuan
84c237fb8a
[utils] Add get_element_by_class
...
For #9950
2016-07-06 20:02:52 +08:00
Yen Chi Hsuan
c6054e3201
[xuite] Support videos with already encoded media id
2016-07-05 14:26:42 +08:00
Yen Chi Hsuan
4080530624
[youtube:shared] Recognize the new 'shared' URLs
...
Closes #10007
2016-07-05 13:15:05 +08:00
Yen Chi Hsuan
3a212ed62e
[iqiyi] Skip an unstable MD5 checksum
2016-07-04 11:25:46 +08:00
Yen Chi Hsuan
40f3666f6b
[test/test_http] Update tests for 38cce791c7
2016-07-03 23:50:55 +08:00
Yen Chi Hsuan
38cce791c7
Rename --cn-verfication-proxy to --geo-verification-proxy
...
And deprecate the former one
Since commit f138873900 , this option is
not limited to China websites, so rename it.
2016-07-03 23:29:56 +08:00
Yen Chi Hsuan
2644e911be
[iqiyi] Fix extraction
...
See https://github.com/soimort/you-get/issues/1211#issuecomment-229011559
2016-07-03 22:19:56 +08:00
Yen Chi Hsuan
15e4b6b758
[rai] Support an alternative form of embedded relinker URL
...
Closes #8551
2016-07-03 19:52:11 +08:00
Yen Chi Hsuan
2b28b892d8
[rai] Support videos with embedded content item ID ( #8551 )
2016-07-03 19:52:11 +08:00
Yen Chi Hsuan
477b7a8474
[downloader/f4m] Fix for Rai live streams
2016-07-03 19:26:39 +08:00
Yen Chi Hsuan
034a884957
[rai] Support direct relinker URLs ( closes #8552 )
2016-07-03 19:26:39 +08:00
Yen Chi Hsuan
f138873900
[rai] Fix extraction and update _TESTS
...
Closes #8617
Closes #9157
Closes #9232
2016-07-03 15:49:35 +08:00
Yen Chi Hsuan
e793338c88
[buzzfeed] Detect Facebook embed and update _TESTS
...
Closes #5701
2016-07-03 14:12:02 +08:00
Yen Chi Hsuan
369bb06206
[facebook] Improve embed detection ( #5701 )
2016-07-03 14:11:29 +08:00
Yen Chi Hsuan
712b0b5b70
[la7.it] Fix the extractor
2016-07-02 23:49:03 +08:00
Yen Chi Hsuan
6a424391d9
[facebook] Make embed detection stricter to prevent false-positives
2016-07-02 23:15:55 +08:00
Yen Chi Hsuan
dbf0157a26
[generic] Add MD5 checksums
2016-07-02 21:58:07 +08:00
Yen Chi Hsuan
7deef1ba67
[generic] Support Wordpress "YouTube Video Importer" plugin
...
Closes #9938
2016-07-02 21:58:07 +08:00
Yen Chi Hsuan
fd6ca38262
[facebook] Improve Facebook embedded detection
...
Related to #9938 .
Another example comes from 9834872bf6 .
2016-07-02 21:58:07 +08:00
Yen Chi Hsuan
fc3996bfe1
[iqiyi] Remove codes for debugging
2016-06-26 15:45:41 +08:00
Yen Chi Hsuan
5b6ad8630c
[iqiyi] Partially fix IqiyiIE
...
Use the HTML5 API. Only low-resolution formats available
Related: #9839
Thanks @zhangn1985 for the overall algorithm (soimort/you-get#1224 )
2016-06-26 15:18:32 +08:00
Yen Chi Hsuan
30105f4ac0
[le] Move urshift() to utils.py
2016-06-26 15:17:26 +08:00
Yen Chi Hsuan
1143535d76
[utils] Add urshift()
...
Used in IqiyiIE and LeIE
2016-06-26 15:16:49 +08:00
Yen Chi Hsuan
7d52c052ef
[generic] Fix test_Generic_76
...
Broken: https://travis-ci.org/rg3/youtube-dl/jobs/140251658
2016-06-26 11:56:27 +08:00
Yen Chi Hsuan
896cc72750
[mixcloud] View count and like count may be absent
...
Closes #9874
2016-06-24 17:26:12 +08:00
Yen Chi Hsuan
c1ff6e1ad0
[vimeo:review] Fix extraction for password-protected videos
...
Closes #9853
2016-06-24 16:48:37 +08:00
Yen Chi Hsuan
e4f90ea0a7
[svt] Fix extraction for SVTPlay ( closes #9809 )
2016-06-21 17:55:53 +08:00
Yen Chi Hsuan
6c83e583b3
[radiojavan] PEP8
...
E275 is added in pycodestyle 2.6
See https://github.com/PyCQA/pycodestyle/pull/491
2016-06-19 13:32:08 +08:00
Yen Chi Hsuan and GitHub
6aeb64b673
Merge pull request #8201 from remitamine/hls-aes
...
[downloader/hls] Add support for AES-128 encrypted segments in hlsnative downloader
2016-06-19 13:25:08 +08:00
Yen Chi Hsuan
b0b128049a
[extractors] Update references to sportschau ( #9799 )
2016-06-18 13:43:47 +08:00
Yen Chi Hsuan
e8f13f2637
[sportschau.de] Fix extraction and moved to its own file ( closes #9799 )
2016-06-18 13:42:58 +08:00
Yen Chi Hsuan
b5aad37f6b
[ard] Remove SportschauIE, which is now based on WDR ( #9799 )
2016-06-18 13:42:39 +08:00
Yen Chi Hsuan
6d0d4fc26d
[wdr] Add WDRBaseIE, for Sportschau ( #9799 )
2016-06-18 13:40:55 +08:00
Yen Chi Hsuan
0278aa443f
[br] Skip invalid tests
2016-06-18 12:53:48 +08:00
Yen Chi Hsuan
1f35745758
[azubu] Don't fail on optional fields
2016-06-18 12:39:08 +08:00
Yen Chi Hsuan
573c35272f
[bbc] Skip a geo-restricted test case
2016-06-18 12:35:55 +08:00
Yen Chi Hsuan
09e3f91e40
[arte] Update _TESTS and fix for pages with multiple YouTube videos
...
Some tests are from #6895 and #6613
2016-06-18 12:34:58 +08:00
Yen Chi Hsuan
1b6cf16be7
[aftonbladet] Fix extraction
2016-06-18 12:27:39 +08:00
Yen Chi Hsuan
26264cb056
[adobetv] Use embedded data in the webpage
...
Sometimes the HTML webpage is returned even with '?format=json'
2016-06-18 12:21:40 +08:00
Yen Chi Hsuan
a72df5f36f
[mtvservices] Fix ext for RTMP streams
2016-06-18 12:19:06 +08:00
Yen Chi Hsuan
c878e635de
[bet] Moved to MTVServices
2016-06-18 12:17:24 +08:00