rzhxeo
c8434e8316
Add support for crunchyroll.com
11 years ago
rzhxeo
4894fe8c5b
Report download progress of rtmpdump
11 years ago
Jaime Marquínez Ferrándiz
dd5bcdc4c9
[brightcove] Set the 'Referer' header if the url has the 'linkBaseUrl' parameter ( fixes #1553 )
11 years ago
Philipp Hagemeister
6161d17579
release 2013.11.07
11 years ago
Jaime Marquínez Ferrándiz
4ac5306ae7
Fix the report progress when file_size is unknown ( #1731 )
...
The report_progress function will accept eta and percent with None value and will set the message to 'Unknow ETA' or 'Unknown %'.
Otherwise the values must be numbers.
11 years ago
Jaime Marquínez Ferrándiz
b1a80ec1a9
[xnxx] Accept urls that start with 'www' ( fixes #1734 )
11 years ago
Philipp Hagemeister
672fe94dcb
release 2013.11.06.1
11 years ago
Jaime Marquínez Ferrándiz
51040b72ed
[brightcove] Support redirected urls from bcove.me ( fixes #1732 )
...
'bctid' needs to be changed to '@videoPlayer', and 'bckey' to 'playerKey'.
11 years ago
Jaime Marquínez Ferrándiz
4f045eef8f
[youtube:channel] Fix the extraction
...
The page don't include the 'load more' button anymore, now we directly get the 'c4_browse_ajax' pages.
11 years ago
Jaime Marquínez Ferrándiz
5d7b253ea0
Add an extractor for eitb.tv ( fixes #1608 )
...
The BrighcoveExperience object doesn't contain the video id, the extractor adds it and passes the url to BrightcoveIE.
11 years ago
Jaime Marquínez Ferrándiz
b0759f0c19
[brightcove] Extract all the available formats
11 years ago
Jaime Marquínez Ferrándiz
065472936a
Add an extractor for space.com ( fixes #1718 )
...
It uses Brightcove, but requires some special process for getting a url with the playerKey field in some videos
11 years ago
Jaime Marquínez Ferrándiz
fc4a0c2aec
[brightcove] Change the 'videoId' or 'videoID' field to '@videoPlayer' ( fixes #1697 )
...
It seems to be needed when using the htmlFederated page
11 years ago
Jaime Marquínez Ferrándiz
eeb165e674
[brightcove] Add the extraction of the url from generic
11 years ago
Jaime Marquínez Ferrándiz
9ee2b5f6f2
tests: don't run the test if any of the extractors listed in the 'add_ie' field is marked as not working
11 years ago
Philipp Hagemeister
da54be877a
release 2013.11.06
11 years ago
Philipp Hagemeister
50a886b7ab
Fix reporting when file size is unkown ( Fixes #1731 )
11 years ago
Philipp Hagemeister
76e67c2cb6
Clean up imports
11 years ago
Marcin Cieślak
5137ebac0b
[tvp] Telewizja Polska: new extractor for tvp.pl, fixes #1719
...
Thanks-To: mplonski
https://github.com/mplonski/linux/blob/master/tvp-dl.py
11 years ago
Marcin Cieślak
a8eeb0597b
Fix AssertionError when og property not found
...
On tvp.pl some webpages contain OpenGraph
metadata and some don't.
If og property is not found, _og_search_description
fails with
WARNING: unable to extract OpenGraph description; please report this issue on http://yt-dl.org/bug
Traceback (most recent call last):
File "/usr/home/saper/bin/youtube-dl", line 18, in <module>
youtube_dl.main()
File "/usr/home/saper/sw/youtube-dl/youtube_dl/__init__.py", line 766, in main
_real_main(argv)
File "/usr/home/saper/sw/youtube-dl/youtube_dl/__init__.py", line 719, in _real_main
retcode = ydl.download(all_urls)
File "/usr/home/saper/sw/youtube-dl/youtube_dl/YoutubeDL.py", line 715, in download
videos = self.extract_info(url)
File "/usr/home/saper/sw/youtube-dl/youtube_dl/YoutubeDL.py", line 348, in extract_info
ie_result = ie.extract(url)
File "/usr/home/saper/sw/youtube-dl/youtube_dl/extractor/common.py", line 125, in extract
return self._real_extract(url)
File "/usr/home/saper/sw/youtube-dl/youtube_dl/extractor/tvp.py", line 56, in _real_extract
info['description'] = self._og_search_description(webpage)
File "/usr/home/saper/sw/youtube-dl/youtube_dl/extractor/common.py", line 331, in _og_search_description
return self._og_search_property('description', html, fatal=False, **kargs)
File "/usr/home/saper/sw/youtube-dl/youtube_dl/extractor/common.py", line 325, in _og_search_property
return unescapeHTML(escaped)
File "/usr/home/saper/sw/youtube-dl/youtube_dl/utils.py", line 494, in unescapeHTML
assert type(s) == type(u'')
AssertionError
The patch allows me to use:
try:
info['description'] = self._og_search_description(webpage)
info['thumbnail'] = self._og_search_thumbnail(webpage)
except RegexNotFoundError:
pass
11 years ago
Ismaël Mejía
4ed3e51080
[ted] fixed error in case of no subtitles present
...
I created a test, but I leave it commented since TED videos get
new subtitles frequently.
11 years ago
rzhxeo
2dcf7d8f99
[GenericIE] Also detect youtube if src url of iframe is embedded in ' instaed of "
11 years ago
Jaime Marquínez Ferrándiz
19b0668251
[canal2c] Accept more urls ( fixes #1723 )
...
The url only needs to have the 'idVideo' field in the query, in any position.
We have to set the 'void=oui' in the webpage url, so that we get the file name.
11 years ago
Jaime Marquínez Ferrándiz
e7e6b54d8a
[teamcoco] Parse the xml file and extract all the formats
11 years ago
Jaime Marquínez Ferrándiz
2a1a8ffe41
Merge pull request #1693 from alexvh/teamcoco_fix
...
[teamcoco] Fix video url extraction for some videos
11 years ago
Philipp Hagemeister
08fb86c49b
[youtube] Add description for YoutubeSearchDateIE ( #1710 )
11 years ago
Philipp Hagemeister
3633d77c0f
Merge remote-tracking branch 'CBGoodBuddy/ytsearchtime'
11 years ago
Philipp Hagemeister
165e179764
release 2013.11.03
11 years ago
Philipp Hagemeister
12ebdd1506
[viddler] Support non-digit IDs ( Fixes #1714 )
11 years ago
Jaime Marquínez Ferrándiz
1baf9a5938
Merge pull request #1698 from rzhxeo/cinemassacre
...
[CinemassacreIE] Support more embed urls
11 years ago
Jaime Marquínez Ferrándiz
a56f9de156
Style fixes for extractors: remove spaces around (,),{ and }
11 years ago
Jaime Marquínez Ferrándiz
fa5d47af4b
Merge pull request #1679 from rzhxeo/mofosex
...
Add support for http://www.mofosex.com
11 years ago
Jaime Marquínez Ferrándiz
d607038753
Merge pull request #1677 from rzhxeo/xtube
...
Add support for http://www.xtube.com
11 years ago
Jaime Marquínez Ferrándiz
9ac6a01aaf
Merge pull request #1676 from rzhxeo/extremetube
...
Add support for http://www.extremetube.com
11 years ago
Jaime Marquínez Ferrándiz
be97abc247
Set the 'extractor_key' field in the info_dict
...
It's the string returned by the class method 'ie_key', which allows to retrieve the extractor with 'get_info_extractor'
11 years ago
Jaime Marquínez Ferrándiz
9103bbc5cd
Add the 'webpage_url' field to info_dict
...
The url for the video page, it must allow to reproduce the result.
It's automatically set by YoutubeDL if it's missing.
11 years ago
Jaime Marquínez Ferrándiz
b6c45014ae
Set the extra_info inside YoutubeDL.process_ie_result and set only if the keys are missing
11 years ago
Craig Markwardt
a3dd924871
Add YoutubeSearchDateIE extractor to youtube.py & __init__.py, which searches by publication date.
11 years ago
rzhxeo
137bbb3e37
[XTubeIE] Add description to TEST
11 years ago
rzhxeo
86ad94bb2e
[ExtremeTubeIE] Set age_limit to 18 and fix uploader extraction
11 years ago
Jaime Marquínez Ferrándiz
3e56add7c9
Merge pull request #1678 from rzhxeo/keezmovies
...
[KeezMoviesIE] Detect URLs with numbers in the SEO part correct
11 years ago
Jaime Marquínez Ferrándiz
f52f01b5d2
[brightcove] Don't set the extension
...
If the video only has the 'FLVFullLengthURL' key, it can still be an mp4 file.
11 years ago
Jaime Marquínez Ferrándiz
98d7efb537
[exfm] skip tests
...
The site is down too often.
11 years ago
Jaime Marquínez Ferrándiz
cf51923545
[youtube] Remove vevo test
...
The video is no longer available and it seems that vevo video don't use encrypted signatures anymore.
11 years ago
Ismaël Mejía
38fcd4597a
Merge remote-tracking branch 'iemejia/master'
11 years ago
Jaime Marquínez Ferrándiz
165e3bb67a
[bambuser] Add an extractor for channels ( closes #1702 )
11 years ago
Ismaël Mejía
38db46794f
Merge branch 'ted_subtitles'
11 years ago
Ismaël Mejía
a9a3876d55
[ted] Added support for subtitle download
11 years ago
Ismaël Mejía
1f343eaabb
[subtitles] refactor to support websites with subtitle information the
...
webpage.
I added the parameter webpage, so now it's similar to the way automatic
captions are handled. This is an improvement needed for websites like
TED.
11 years ago
Jaime Marquínez Ferrándiz
72a5b4f702
Add an extractor for bambuser.com ( #1702 )
11 years ago
rzhxeo
0a43ddf320
[CinemassacreIE] Add live paramter to extracted info as a workaround
11 years ago
rzhxeo
31366066bd
Add support for live parameter to rtmpdump
11 years ago
Philipp Hagemeister
aa2484e390
release 2013.11.02
11 years ago
Philipp Hagemeister
8eddf3e91d
[youtube] Encode subtitle track name in request ( Fixes #1700 )
11 years ago
Jaime Marquínez Ferrándiz
60d142aa8d
Add an extractor for vk.com ( closes #1635 )
11 years ago
Jaime Marquínez Ferrándiz
66cf3ac342
[metacafe] Fix support for age-restricted videos ( fixes #1696 )
...
The 'Content-Type' header must be set for disabling the family filter.
The 'flashversion' cookie is only needed for AnyClip videos.
Added tests for standard metacafe videos and for age-restricted videos.
Also set the 'age_limit' field.
11 years ago
rzhxeo
ab4e151347
[CinemassacreIE] Support more embed urls
11 years ago
Alex Van't Hof
ac2547f5ff
[teamcoco] Fix video url extraction for some videos
...
Video url extraction failed for some videos,
e.g. http://teamcoco.com/video/old-time-baseball
The url extracted was also occasionally suboptimal quality,
e.g. http://teamcoco.com/video/louis-ck-interview-george-w-bush
11 years ago
Jaime Marquínez Ferrándiz
5f1ea943ab
[livestream] fix the extraction of events
...
It now uses a json dictionary from the webpage.
11 years ago
Philipp Hagemeister
9f1109a564
[dailymotion] Fix support for age-restricted videos ( Fixes #1688 )
11 years ago
Philipp Hagemeister
33b1d9595d
release 2013.10.30
11 years ago
Philipp Hagemeister
7193498811
Use index in formt string (Fixes vevo test on Python 2.6)
11 years ago
Philipp Hagemeister
72321ead7b
[vevo] Readd support for SMIL ( Fixes #1683 )
11 years ago
Philipp Hagemeister
b5d0d817bc
Remove superfluous space
11 years ago
Philipp Hagemeister
94badb2599
Fix output indenting for --list-formats
11 years ago
Filippo Valsorda
b9a836515f
Update the Vimeo test vector md5
...
confirmed that this is indeed the first 10241 (we went off by one with
byte range 0-10240) of the full, playing mp4, so they probably
reencoded or something
11 years ago
Jaime Marquínez Ferrándiz
21c924f406
[arte] Download the 'Originalversion' version if it's the only one available ( fixes #1682 )
11 years ago
Philipp Hagemeister
e54fd4b23b
[vevo] Add more format details
11 years ago
Philipp Hagemeister
57dd9a8f2f
Nicer --list-formats output
11 years ago
Philipp Hagemeister
912cbf5d4e
[vevo] Fix timestamp handling
...
( / 1000 is implicit float division )
11 years ago
Philipp Hagemeister
43d7895ea0
release 2013.10.29
11 years ago
Philipp Hagemeister
f7ff55aa78
Merge remote-tracking branch 'origin/master'
11 years ago
Philipp Hagemeister
795f28f871
[youtube] Fix login ( Fixes #1681 )
11 years ago
Jaime Marquínez Ferrándiz
321a01f971
[mtv] Remove the templates from the mediagen url
11 years ago
Jaime Marquínez Ferrándiz
2563bcc85c
Add an extractor for MySpace ( closes #1666 )
11 years ago
Jaime Marquínez Ferrándiz
702665c085
tests: build the filename from the info_dict if the 'file' key is missing
...
It will need to have the 'id' and 'ext' keys to work.
11 years ago
rzhxeo
dcc2a706ef
Add support for http://www.xtube.com
11 years ago
rzhxeo
2bc67c35ac
[KeezMoviesIE] Detect URLs with numbers in the SEO part correct
11 years ago
rzhxeo
77ae65877e
Add support for http://www.mofosex.com
11 years ago
rzhxeo
32a35e4418
Add support for http://www.extremetube.com
11 years ago
rzhxeo
216d71d001
Check if description and thumbnail are None to prevent crash
11 years ago
Philipp Hagemeister
78a3a9f89e
Make "requested format not available" expected ( #1655 )
11 years ago
Philipp Hagemeister
a7685f3bf4
mixcloud does not do any format selection
11 years ago
Philipp Hagemeister
f088ea5486
release 2013.10.28
11 years ago
Philipp Hagemeister
1003d108d5
[vimeo] Support hash in URL ( Fixes #1669 )
11 years ago
Philipp Hagemeister
8abeeb9449
Nicer --list-formats output
11 years ago
Philipp Hagemeister
c1002e96e9
Let extractors omit ext in formats
11 years ago
Philipp Hagemeister
77d0a82fef
[addanime] Use new formats system
11 years ago
Philipp Hagemeister
ebc14f251c
Merge remote-tracking branch 'origin/master'
11 years ago
Philipp Hagemeister
d41e6efc85
New debug option --write-pages
11 years ago
Filippo Valsorda
8ffa13e03e
[Instagram] get the non-https link, as they are serving Akamai cert from a instagram.com domain
11 years ago
Filippo Valsorda
750e9833b8
Add the missing age_limit tags; added a devscript to do a superficial check for porn sites without the age_limit tag in the test
11 years ago
Filippo Valsorda
82f0ac657c
Merge pull request #1657 by @rzhxeo
...
[YouPornIE] Extract all encrypted links and remove doubles at the end
11 years ago
Filippo Valsorda
eb6a2277a2
Merge pull request #1659 by @rzhxeo
...
Add support for http://www.tube8.com
11 years ago
Filippo Valsorda
f8778fb0fa
Merge pull request #1663 by @rzhxeo
...
Add support for http://www.spankwire.com
11 years ago
Filippo Valsorda
e2f9de207c
Merge pull request #1664 by @rzhxeo
...
Add support for http://www.keezmovies.com
11 years ago
Filippo Valsorda
a93cc0d943
Merge pull request #1661 by @rzhxeo
...
Add support for http://www.pornhub.com
11 years ago
Filippo Valsorda
7d8c2e07f2
[Exfm] replace the failing Soundcloud test vector (broken also in browser)
11 years ago
Filippo Valsorda
efb4c36b18
Merge pull request #1660 from pyed/master
...
[addanime] try to download HQ before normal
11 years ago
Jaime Marquínez Ferrándiz
29526d0d2b
Merge pull request #1656 from rzhxeo/xhamster
...
[XHamsterIE] Extract SD and HD video
11 years ago
Abdulelah Alfntokh
198e370f23
[addanime] better regex.
11 years ago
Jaime Marquínez Ferrándiz
c19f7764a5
[generic] Detect bandcamp pages that use custom domains ( closes #1662 )
...
They embed the original url in the 'og:url' property.
11 years ago
Jaime Marquínez Ferrándiz
bc63d9d329
[rtlnow] Change the test for rtlnitronow
11 years ago
Jaime Marquínez Ferrándiz
aa929c37d5
[generic] Fix test video's checksum
11 years ago
Jaime Marquínez Ferrándiz
af4d506eb3
[faz] Use a regex for getting the description
...
The page cannot be parsed in python2.6 with the html parser.
11 years ago
rzhxeo
5da0549581
[KeezMoviesIE] Correct return value for embedded videos
11 years ago
Jaime Marquínez Ferrándiz
749a4fd2fd
[facebook] Don't recommend to report the issue if the video is private.
11 years ago
Jaime Marquínez Ferrándiz
6f71ef580c
[facebook] Report a more meaningful message if the video cannot be accessed ( closes #1658 )
11 years ago
Jaime Marquínez Ferrándiz
67874aeffa
[facebook] Fix the login process ( fixes #1244 )
11 years ago
Abdulelah Alfntokh
3e6a330d38
[addanime] fix md5sum
11 years ago
Abdulelah Alfntokh
aee5e18c8f
[addanime] catch 'RegexNotFoundError'
11 years ago
rzhxeo
5b11143d05
Add support for http://www.keezmovies.com
11 years ago
rzhxeo
7b2212e954
Add support for http://www.spankwire.com
11 years ago
rzhxeo
71865091ab
[Tube8IE] Fix regex for uploader extraction
11 years ago
rzhxeo
125cfd78e8
Add support for http://www.pornhub.com
11 years ago
rzhxeo
8cb57d9b91
[Tube8IE] Escape dot in regex
11 years ago
pyed
14e10b2b6e
[addanime] try to download HQ before normal
11 years ago
rzhxeo
6e76104d66
[YouPornIE] Make webpage download more robust
11 years ago
rzhxeo
1d45a23b74
Add support for http://www.tube8.com
11 years ago
rzhxeo
7df286540f
[YouPornIE] Extract all encrypted links and remove doubles at the end
11 years ago
rzhxeo
5d0c97541a
[XHamsterIE] Extract SD and HD video
11 years ago
Philipp Hagemeister
49a25557b0
[8tracks] Use track count instead of looking at at_last_track property
...
This fixes the error:
$ youtube-dl http://8tracks.com/vladmc/counting-stars
[8tracks] counting-stars: Downloading webpage
[8tracks] counting-stars: Downloading song information 1/4
[8tracks] counting-stars: Downloading song information 2/4
[8tracks] counting-stars: Downloading song information 3/4
[8tracks] counting-stars: Downloading song information 4/4
[8tracks] counting-stars: Downloading song information 5/4
Traceback (most recent call last):
File "/usr/lib/python2.7/runpy.py", line 162, in _run_module_as_main
"__main__", fname, loader, pkg_name)
File "/usr/lib/python2.7/runpy.py", line 72, in _run_code
exec code in run_globals
File "/home/phihag/projects/youtube-dl/youtube_dl/__main__.py", line 18, in <module>
youtube_dl.main()
File "/home/phihag/projects/youtube-dl/youtube_dl/__init__.py", line 761, in main
_real_main(argv)
File "/home/phihag/projects/youtube-dl/youtube_dl/__init__.py", line 714, in _real_main
retcode = ydl.download(all_urls)
File "/home/phihag/projects/youtube-dl/youtube_dl/YoutubeDL.py", line 701, in download
videos = self.extract_info(url)
File "/home/phihag/projects/youtube-dl/youtube_dl/YoutubeDL.py", line 342, in extract_info
ie_result = ie.extract(url)
File "/home/phihag/projects/youtube-dl/youtube_dl/extractor/common.py", line 121, in extract
return self._real_extract(url)
File "/home/phihag/projects/youtube-dl/youtube_dl/extractor/eighttracks.py", line 111, in _real_extract
'id': track_data['id'],
KeyError: 'id'
11 years ago
Jaime Marquínez Ferrándiz
b5936c0059
Document the %(format_id)s field for the output template
11 years ago
Jaime Marquínez Ferrándiz
600cc1a4f0
[youtube] Set the format_id field to the itag of the format ( closes #1624 )
11 years ago
Jaime Marquínez Ferrándiz
ea32fbacc8
Fix the extensions of two tests with youtube videos
...
The best quality is now a mp4 video.
11 years ago
Jaime Marquínez Ferrándiz
00fe14fc75
[youtube] Also use the 'adaptative_fmts' field from the /get_video_info page ( fixes #1649 )
...
The 'adaptative_fmts' field from the video page is not added to the 'url_encoded_fmt_stream_map'
11 years ago
Jaime Marquínez Ferrándiz
fcc28edb2f
[cinemassacre] Simplify
...
* Remove some rtmp parameters that are not needed.
* Remove the md5 checksums, the video is not downloaded.
* Remove the code used before the current format system.
11 years ago
Jaime Marquínez Ferrándiz
fac6be2dd5
Merge pull request #1632 from rzhxeo/cinemassacre
...
[Cinemassacre] Download video that is shown in flash player
11 years ago
Philipp Hagemeister
1cf64ee468
release 2013.10.23.2
11 years ago
Jaime Marquínez Ferrándiz
cdec0190c4
[dailymotion] Extract all the available formats ( closes #1028 )
11 years ago
Jaime Marquínez Ferrándiz
2450bcb28b
[nowvideo] Fix key extraction
...
Extract it from the embed page
11 years ago
Jaime Marquínez Ferrándiz
3126050c0f
Hide the video password on verbose mode
11 years ago
Jaime Marquínez Ferrándiz
93b22c7828
[vimeo] fix the extraction for videos protected with password
...
Added a test video.
11 years ago
Philipp Hagemeister
0a89b2852e
release 2013.10.23.1
11 years ago
Jaime Marquínez Ferrándiz
55b3e45bba
[vimeo] Fix pro videos and player.vimeo.com urls
...
The old process can still be used for those videos.
Added RegexNotFoundError, which is raised by _search_regex if it can't extract the info.
11 years ago
Philipp Hagemeister
365bcf6d97
Merge remote-tracking branch 'origin/master'
11 years ago
Philipp Hagemeister
71907db3ba
[vimeo] Fix normal videos ( Fixes #1642 )
...
Vimeo Pro Videos are still broken
11 years ago
Philipp Hagemeister
6803655ced
Merge pull request #1622 from rbrito/fix-extension
...
extractor: youtube: Set extension of AAC audio formats to m4a.
11 years ago
Philipp Hagemeister
df1c39ec5c
release 2013.10.23
11 years ago
Philipp Hagemeister
80f55a9511
release 2013.10.22
11 years ago
Philipp Hagemeister
7853cc5ae1
Merge remote-tracking branch 'origin/master'
...
Conflicts:
youtube_dl/YoutubeDL.py
11 years ago
Philipp Hagemeister
586a91b67f
Expand tilde in template ( Fixes #1639 )
11 years ago
Jaime Marquínez Ferrándiz
b028e96144
[arte.tv:creative] Update the title of the test
11 years ago
Jaime Marquínez Ferrándiz
ce68b5907c
[nhl:videocenter] Fix playlist title extraction
11 years ago
Jaime Marquínez Ferrándiz
fe7e0c9825
Style fixes in YoutubeDL.py
...
Fixed some of the problems reported by pep8
11 years ago
Jaime Marquínez Ferrándiz
12893efe01
Respect the download parameter in YoutubeDL.process_video_result if the extractor handle the format selection
11 years ago
Joshua Elsasser
a6387bfd3c
[vimeo] Implement the new format selection system (closes PR #996 )
...
Rebased and deleted some parts to use the new system instead of copying the one from YoutubeIE
11 years ago
Jaime Marquínez Ferrándiz
f6a54188c2
[youtube] Use 'node is None' when checking if the video has automatic captions
...
It had stopped working and it reports a FutureWarning
11 years ago
Jaime Marquínez Ferrándiz
cbbd9a9c69
Fix the duration field for the VideoDetective and InternetVideoArchive tests
...
Also remove the use of the old format system and the comment
11 years ago
Jaime Marquínez Ferrándiz
685a9cd2f1
[googleplus] Fix upload_date extraction
11 years ago
Jaime Marquínez Ferrándiz
182a107877
[arte] Set the format_note and the format_id fields ( closes #1628 )
11 years ago
Jaime Marquínez Ferrándiz
8c51aa6506
The 'format' field now defaults to '{format_id} - {width}x{height}{format_note}'
...
Following the YoutubeIE format. The 'format_note' gives additional info about the format, for example '3D' or 'DASH video'.
11 years ago
Jaime Marquínez Ferrándiz
3fd39e37f2
YoutubeDL: remove method that came from FileDownloader
11 years ago
Jaime Marquínez Ferrándiz
49e86983e7
Allow to use the extension for the format selection
...
The best format with the extension is downloaded.
11 years ago
Jaime Marquínez Ferrándiz
a9c58ad945
Accept requested formats to be in the format 35/best ( closes #1552 )
...
The format selection code is now an independent function.
11 years ago
Philipp Hagemeister
f8b45beacc
Merge remote-tracking branch 'rbrito/set-age'
...
Conflicts:
youtube_dl/extractor/xhamster.py
11 years ago
Philipp Hagemeister
9d92015d43
[xhamster] Add support for age_limit (Instead of #1627 )
11 years ago
Rogério Brito
50a6150ed9
extractor: Set age limit on some adult-related extractors.
...
More age limit of videos for adult-related sites.
Note that, for redtube, I explicitly left the variable containing the age
limit, since the comment justifying the age limit is a good thing to have.
That being said, I included the age limit field on the test, to better
reflect what the information extractor does (even if it may not break the
automated tests).
Signed-off-by: Rogério Brito <rbrito@ime.usp.br>
11 years ago
Rogério Brito
d5a9bb4ea9
extractor: youtube: Swap video dimensions to match standard practice.
...
While working on this, I thought about simplifying things like changing
480x854 to 480p, and that seemed like a good option, until I realized that
people (me included) usually link the concept of some number followed by a p
with the video being 16:9.
So, we would be losing some information and, as we all know,
[explicit is better than implicit][*].
[*]: http://www.python.org/dev/peps/pep-0020/
This closes #1446 .
Signed-off-by: Rogério Brito <rbrito@ime.usp.br>
11 years ago
rzhxeo
b0505eb611
[CinemassacreIE] Fix information extraction
11 years ago
Rogério Brito
8ed6b34477
extractor: Set age limit on some adult-related extractors.
...
This is similar in spirit to what was done in commit 8e590a117f
.
Signed-off-by: Rogério Brito <rbrito@ime.usp.br>
11 years ago
Rogério Brito
f6f1fc9286
extractor: youtube: Fix extension of dash formats.
...
While we are at it, separate the audio formats from the video formats.
Signed-off-by: Rogério Brito <rbrito@ime.usp.br>
11 years ago
Philipp Hagemeister
8e590a117f
[xnxx] Add age_limit
11 years ago
Philipp Hagemeister
b186d949cf
release 2013.10.18.2
11 years ago
Philipp Hagemeister
41fd7c7e60
Add new option --abort-on-error
11 years ago
Philipp Hagemeister
fdefe96bf2
Document %(format)s ( #1612 )
11 years ago
Rogério Brito
16f36a6fc9
extractor: youtube: Set extension of AAC audio formats to m4a.
...
This, in particular, eases downloading both audio and videos in DASH formats
before muxing them, which alleviates the problem that I exposed on issue
Furthermore, one may argue that this is, indeed, the case for correctness's
sake.
Signed-off-by: Rogério Brito <rbrito@ime.usp.br>
11 years ago
Philipp Hagemeister
cce722b79c
Add metavar to --cache-dir
11 years ago
Philipp Hagemeister
82697fb2ab
release 2013.10.18.1
11 years ago
Philipp Hagemeister
53c1d3ef49
Check for embedded YouTube player ( Fixes #1616 )
11 years ago
Philipp Hagemeister
8e55e9abfc
release 2013.10.18
11 years ago
Philipp Hagemeister
7c58ef3275
[tudou] Fix title regex ( Fixes #1614 )
11 years ago
Philipp Hagemeister
416a5efce7
fix typos
11 years ago
Philipp Hagemeister
f4d96df0f1
Extend #980 with --max-quality support
11 years ago
Philipp Hagemeister
1c1218fefc
Merge remote-tracking branch 'jaimeMF/format_selection'
11 years ago
Jaime Marquínez Ferrándiz
d21ab29200
Add an extractor for techtalks.tv ( closes #1606 )
11 years ago
Philipp Hagemeister
54ed626cf8
release 2013.10.17
11 years ago
Philipp Hagemeister
a733eb6c53
[youtube] Do not crash if caption info is missing altogether ( Fixes #1610 )
11 years ago
Philipp Hagemeister
591454798d
[brightcove] Raise error if playlist is empty ( #1608 )
11 years ago
Philipp Hagemeister
38604f1a4f
Merge remote-tracking branch 'origin/master'
11 years ago
Philipp Hagemeister
2d0efe70a6
[brightcove] Fix more broken XML ( #1608 )
11 years ago
Jaime Marquínez Ferrándiz
bfd14b1b2f
Add an extractor for rutube.ru ( closes #1136 )
...
It downloads with a m3u8 manifest, requires ffmpeg.
11 years ago
Philipp Hagemeister
8abbf43f21
release 2013.10.15
11 years ago
Philipp Hagemeister
10eaae48ff
Merge branch 'master' of github.com:rg3/youtube-dl
11 years ago
Philipp Hagemeister
9d4660cab1
[generic] Support embedded vimeo videos ( #1602 )
11 years ago
Jaime Marquínez Ferrándiz
9d74e308f7
[sztvhu] Fix the title extraction
11 years ago
Jaime Marquínez Ferrándiz
8381a92120
[websurg] Skipt the test
...
It needs login information.
11 years ago
Philipp Hagemeister
cd054fc491
Use upper-case for prefixes in help to signify bytes ( #1043 )
11 years ago
Philipp Hagemeister
f219743e33
Merge remote-tracking branch 'alphapapa/master'
11 years ago
Philipp Hagemeister
4f41664de8
Merge remote-tracking branch 'Rudloff/websurg'
11 years ago
Philipp Hagemeister
a4fd04158e
Do not import *
11 years ago
Philipp Hagemeister
a623df4c7b
Credit @Elbandi for sztvhu
11 years ago
Philipp Hagemeister
7cf67fbe29
[sztvhu] Simplify
11 years ago
Philipp Hagemeister
3ddf1a6d01
Merge remote-tracking branch 'Elbandi/master'
11 years ago
Philipp Hagemeister
850555c484
Merge remote-tracking branch 'origin/master'
11 years ago
Philipp Hagemeister
9ed3bdc64d
[tudou] Add support for youku links ( Closes #1571 )
11 years ago
Jaime Marquínez Ferrándiz
c45aa56080
[gamespot] Fix video extraction ( fixes #1587 )
11 years ago
Philipp Hagemeister
7394b8db3b
Merge remote-tracking branch 'origin/master'
11 years ago
Andras Elso
f9b3d7af47
Add an extractor for Szombathelyi TV
11 years ago
Filippo Valsorda
ea62a2da46
add VideoPremium.tv RTMP support
11 years ago
Jai Grimshaw
1fb07d10a3
[youtube] Adds #1312 Download annotations
...
Adds #1321 Download annotations from youtube
Annotations are downloaded and written to a .annotations.xml file using the https://www.youtube.com/annotations_invideo?features=1&legacy=1&video_id=$VIDEOID API.
Added unit test for annotations.
11 years ago
Philipp Hagemeister
9378ae6e1d
[youku] Allow shortcut youku:ID and make non-matching groups non-matching ( #1571 )
11 years ago
Philipp Hagemeister
06723d47c4
Merge remote-tracking branch 'jaimeMF/opus-fix'
11 years ago
Jaime Marquínez Ferrándiz
69a0c470b5
[arte] Add an extractor for future.arte.tv ( closes #1593 )
11 years ago
Jaime Marquínez Ferrándiz
c40f5cf45c
[arte] add an extractor for creative.arte.tv ( #1593 )
...
The +7 videos now use an independent extractor that is also used for the creative videos
11 years ago
Jaime Marquínez Ferrándiz
4b7b839f24
Add an extractor for rottentomatoes.com and improve InternetVideoArchiveIE to get the best quality
11 years ago
Jaime Marquínez Ferrándiz
3d60d33773
Add an extractor for videodetective.com ( closes #262 )
...
It uses the internetvideoarchive.com platform.
11 years ago
Jaime Marquínez Ferrándiz
d7e66d39a0
Add an extractor for internetvideoarchive.com videos
...
It's used by videodetective.com
11 years ago
Filippo Valsorda
f5e54a1fda
add support for NowVideo.ch
11 years ago
Jaime Marquínez Ferrándiz
4eb7f1d12e
FFmpegPostProcessor: print the command line used if the --verbose option is given
11 years ago
Jaime Marquínez Ferrándiz
0f6d12e43c
Don't set the '-aq' option with the opus format ( fixes #1263 )
11 years ago
Joey Adams
3283533149
Fix Brightcove detection when another Flash object is on the page
...
The regex used non-greedy match, but alas it failed on input like this:
<object class="...> ... class="BrightcoveExperience"
It captured two objects and the intervening HTML. This commit fixes this by
not allowing a ">" to appear before BrightcoveExperience.
Video in question: http://www.harpercollinschildrens.com/feature/petethecat/
11 years ago
Jaime Marquínez Ferrándiz
8032e31f2d
Merge pull request #1558 from rzhxeo/cinemassacre
...
Add support for http://cinemassacre.com
11 years ago
Jaime Marquínez Ferrándiz
d2f9cdb205
Merge branch 'cinemassacre' of github.com:rzhxeo/youtube-dl into rzhxeo-cinemassacre
11 years ago
Jaime Marquínez Ferrándiz
8016c92297
Fix the default values of format_id and format
11 years ago
Jaime Marquínez Ferrándiz
e028d0d1e3
Implement the prefer_free_formats in YoutubeDL
11 years ago
Jaime Marquínez Ferrándiz
79819f58f2
Default 'format' field to {width}x{height}
...
If width is None, use {height}p and if height is None, '???'
11 years ago
Jaime Marquínez Ferrándiz
6ff000b888
Do not handle format selection for IEs that already handle it
11 years ago
Jaime Marquínez Ferrándiz
99e206d508
Implement the max quality option in YoutubeDL
11 years ago
Jaime Marquínez Ferrándiz
dd82ffea0c
Implement format selection in YoutubeDL
...
Now the IEs can set a formats field in the info_dict, with the formats ordered from worst to best quality. It's a list of dicts with the following fields:
* Mandatory: url and ext
* Optional: format and format_id
The format_id is used for choosing which formats have to be downloaded.
Now a video result is processed by the method process_video_result.
11 years ago
Jaime Marquínez Ferrándiz
3823342d9d
[arte] Prepare for generic format support ( #980 )
11 years ago
Jaime Marquínez Ferrándiz
91dbaef406
[nhl] Add an extractor for videocenter's categories ( #1586 )
...
It downloads the last 12 videos.
11 years ago
Jaime Marquínez Ferrándiz
9026dd3858
Make sure it only runs rtmpdump one time in test mode and return True if the download can be resumed
11 years ago
Jaime Marquínez Ferrándiz
81d7f1928c
Merge pull request #1565 from rzhxeo/rtmpdump_test
...
Only download 1 sec. with rtmpdump in test mode
11 years ago
Jaime Marquínez Ferrándiz
bc4f29170f
Add a PostProcessor for adding metadata to the file ( closes #1570 )
...
It currently sets the title, the date and the author values.
11 years ago
Jaime Marquínez Ferrándiz
cb354c8f62
[yahoo] Download the info from another page
...
The 'meta' field is not always in the video webpage
11 years ago
Jaime Marquínez Ferrándiz
1cbb27b151
[gamespot] Mark as broken ( #1587 )
11 years ago
Jaime Marquínez Ferrándiz
0ab4ff6378
[mtv] Strip the description
...
There were some tabs and newlines added around the string.
11 years ago
Jaime Marquínez Ferrándiz
63da13e829
Add an extractor for faz.net ( closes #1582 )
11 years ago
Jaime Marquínez Ferrándiz
2e1fa03bf5
Add an extractor for video.nhl.com ( closes #1586 )
11 years ago
Philipp Hagemeister
8f1ae18a18
release 2013.10.09
11 years ago
Philipp Hagemeister
57da92b7df
[youtube] Do not recognize attribution link as user ( Fixes #1573 )
11 years ago
Jaime Marquínez Ferrándiz
df4f632dbc
Merge pull request #1584 from wingsuit/master
...
Tiny tpo
11 years ago
Jaime Marquínez Ferrándiz
a34c2faae4
[youtube] set the 'name' parameter in the subtitles url ( fixes #1577 )
11 years ago
Tom
1d368c7589
Tiny tpo
11 years ago
Jaime Marquínez Ferrándiz
88bd97e34c
[vevo] Some improvements ( fixes #1580 )
...
Extract the info from http://videoplayer.vevo.com/VideoService/AuthenticateVideo?isrc={id}
Some videos don't have an smil manifest, extract the video urls directly from the json and use the last version of the video.
Extract all the available formats and set the 'formats' field of the result
11 years ago
Jaime Marquínez Ferrándiz
2ae3edb1cf
Fix the printing of the proxy map in debug mode
...
The proxies have to be extracted from the opener.handlers
11 years ago
Philipp Hagemeister
a27b9e8bd5
Move opener setup into a separate helper function
11 years ago
Philipp Hagemeister
4481a754e4
release 2013.10.07
11 years ago
Philipp Hagemeister
faa6ef6bc8
[jeuxvideo] Improve code quality ( fixes #1567 )
11 years ago
Philipp Hagemeister
15870e90b0
Restore warning when user forgets to quote URL ( #1396 )
11 years ago
rzhxeo
8e4f824365
Remove test parameter from _download_with_rtmpdump
11 years ago
Jaime Marquínez Ferrándiz
387ae5f30b
[vimeo] Recognize urls ending in a slash ( fixes #1242 )
11 years ago
rzhxeo
ad7a071ab6
Only download 1 sec. with rtmpdump in test mode
11 years ago
Philipp Hagemeister
1310bf2474
[redtube] add age_limit
11 years ago
Philipp Hagemeister
b24f347190
Merge branch 'download-archive'
...
Conflicts:
youtube_dl/YoutubeDL.py
youtube_dl/__init__.py
11 years ago
Philipp Hagemeister
ee6c9f95e1
Remove superfluous parenthesis
11 years ago
Philipp Hagemeister
2a69c6b879
Merge branch 'age_limit'
11 years ago
Philipp Hagemeister
cfadd183c4
Call extracted property age_limit everywhere
11 years ago
Philipp Hagemeister
e484c81f0c
[generic] Clarify error messages
11 years ago
Philipp Hagemeister
7e5e8306fd
release 2013.10.06
11 years ago
Philipp Hagemeister
41e8bca4d0
[viddler] Add basic support ( Fixes #1520 )
11 years ago
Philipp Hagemeister
8dbe9899a9
Allow users to specify an age limit ( fixes #1545 )
...
With these changes, users can now restrict what videos are downloaded by the intented audience, by specifying their age with --age-limit YEARS .
Add rudimentary support in youtube, pornotube, and youporn.
11 years ago
Philipp Hagemeister
c1c9a79c49
Add basic --download-archive option
...
Often, users want to be able to download only videos they haven't seen before, despite the video files having been deleted or moved in the mean time.
When --download-archive FILE is given, the extractor and ID of every download is recorded in the specified file. If it is already present, the video in question is skipped.
11 years ago
Philipp Hagemeister
e94b783c74
[googleplus] Fix upload_date detection
11 years ago
Philipp Hagemeister
97dae9ae07
[bliptv] Make sure video ID is a string
11 years ago
rzhxeo
ca215e0a4f
[CinemassacreIE] Use MD5 to check in TEST description
11 years ago
rzhxeo
91a26ca559
[CinemassacreIE] Remove docstring from class
11 years ago
rzhxeo
1ece880d7c
[CinemassacreIE] Add support for other embed methods
11 years ago
rzhxeo
400afddaf4
Add CinemassacreIE
11 years ago
Jaime Marquínez Ferrándiz
c3fef636b5
[dailymotion] Fix playlist extraction
...
The html code has changed, make the video ids extraction more solid.
11 years ago
Philipp Hagemeister
46e28a84ca
[brightcove] Fix up some broken HTML ( #1553 )
11 years ago
Philipp Hagemeister
17ad2b3fb1
[yahoo] Switch ext of test
11 years ago
Philipp Hagemeister
5e2a60db4a
[yahoo] Fix test title
11 years ago
Philipp Hagemeister
cd214418f6
[redtube] pep8
11 years ago
Philipp Hagemeister
ba2d9f213e
[jeuxvideo] fix video file md5sum
11 years ago
Philipp Hagemeister
7f8ae73a5d
Include length in player cache ID
...
Some videos use the same player with IDs of multiple lengths.
See https://travis-ci.org/rg3/youtube-dl/jobs/12126506#L319 for an example.
11 years ago
Philipp Hagemeister
466880f531
[yahoo] Do not try to run rtmpdump on travis
11 years ago
Philipp Hagemeister
9f1f6d2437
[rtlnow] Skip test on travis
11 years ago
Philipp Hagemeister
9e0f897f6b
[francetv] Use common format for ID of generation-quoi subextractor
11 years ago
Philipp Hagemeister
c0f6aa876f
Merge remote-tracking branch 'origin/master'
11 years ago
Philipp Hagemeister
d93bdee9a6
[comedycentral] Prepare for generic video extraction ( #980 )
11 years ago
Philipp Hagemeister
f13d09332d
[mtv] Prepare for #980
11 years ago
Philipp Hagemeister
2f5865cc6d
Clarify that url and ext are optional when formats is given ( #980 )
11 years ago
Philipp Hagemeister
deefc05b88
Document formats (for #980 )
11 years ago
Philipp Hagemeister
0d8cb1cc14
[ted] Prepare #980 merge
11 years ago
rzhxeo
829493439a
[FlickrIE] Fix HTTPS url
11 years ago
Pierre Rudloff
73b4fafd82
Use self._download_webpage everywhere
11 years ago
Pierre Rudloff
b039775057
Unused variable
11 years ago
Pierre Rudloff
5c1d63b737
Changes suggested by @phihag
11 years ago
Philipp Hagemeister
3cd022f6e6
Merge remote-tracking branch 'rzhxeo/rtl_ntv'
11 years ago
Philipp Hagemeister
abefd1f7c4
Merge remote-tracking branch 'rzhxeo/rtl_upload_date'
11 years ago
Philipp Hagemeister
c21315f273
[youtube] new static 82 signature
11 years ago
Philipp Hagemeister
9ab1018b1a
release 2013.10.04
11 years ago
Philipp Hagemeister
da0a5d2d6e
[france2] Add support for URLs without video IDs ( Fixes #1547 )
11 years ago
Jaime Marquínez Ferrándiz
ee6adb166c
[ign] Support more urls and detect multiple videos in articles ( fixes #1543 )
11 years ago
Philipp Hagemeister
be8fe32c92
Fix help of --cachedir
11 years ago
Philipp Hagemeister
c38b1e776d
[youtube] Simplify cache_dir code ( #1529 )
11 years ago
Philipp Hagemeister
4f8bf17f23
Merge remote-tracking branch 'holomorph/master'
11 years ago
Philipp Hagemeister
ca40186c75
[youtube] Fix static 82 signature ( Closes #1539 )
11 years ago
Philipp Hagemeister
a8c6b24155
[youtube] Support videos without a title ( Fixes #1391 , Closes #1542 )
11 years ago
Filippo Valsorda
bd8e5c7ca2
Merge pull request #1531 from rg3/no-playlist
...
[youtube] implement --no-playlist to only download current video
11 years ago
Filippo Valsorda
7c61bd36bb
[youtube] correct --no-playlist for python3
11 years ago
Jaime Marquínez Ferrándiz
c54283824c
[dailymotion] Detect vevo videos ( fixes #1532 )
...
All videos from the Vevo user, just embed videos from vevo.com
11 years ago
Philipp Hagemeister
52f15da2ca
release 2013.10.01.1
11 years ago
Philipp Hagemeister
44d466559e
Properly handle stream meap not being present
11 years ago
Philipp Hagemeister
05751eb047
release 2013.10.01
11 years ago
Philipp Hagemeister
f10503db67
Handle videos without url_encoded_fmt_stream_map ( Fixes #1535 )
11 years ago
rzhxeo
adfeafe9e1
[RTLnowIE] Allow video description without upload date
...
Some videos (feature films) have no upload date.
11 years ago
rzhxeo
4c62a16f4f
[RTLnowIE] Add support for http://n-tvnow.de
11 years ago
Mark Oteiza
fa55675593
Support XDG base directory specification
11 years ago
Filippo Valsorda
47192f92d8
implement --no-playlist to only download current video - closes #755
11 years ago
Jaime Marquínez Ferrándiz
722076a123
[rtlnow] Replace one of the tests
...
The video is no longer available.
11 years ago
Jaime Marquínez Ferrándiz
bb4aa62cf7
[appletrailers] The request for the settings must have the trailer name in lower case ( fixes #1329 )
11 years ago
Jaime Marquínez Ferrándiz
843530568f
[appletrailers] Rework extraction ( fixes #1387 )
...
The exraction was broken:
* The includes page contains img elements that need to be fixed.
* Use the 'itunes.inc' page, it contains a json dictionary for each trailer with information.
* Get the formats from 'includes/settings{trailer_name}.json'
* Use urljoin to allow urls with a fragment identifier to work
Removed the thumbnail urls from the tests, they are different now.
11 years ago
Philipp Hagemeister
138a5454b5
release 2013.09.29
11 years ago
Philipp Hagemeister
d279037036
[update] Prevent cmd window popup on Windows ( Fixes #1478 )
11 years ago
Philipp Hagemeister
46353f6783
[update] Look for .exe extension on Windows ( Fixes #745 )
11 years ago
Jaime Marquínez Ferrándiz
70922df8b5
[dailymotion] Disable the family filter in the playlists ( fixes #1524 )
11 years ago
Jaime Marquínez Ferrándiz
9c15e9de84
[yahoo] Fix video extraction ( fixes #1521 )
...
There's no need to use two different methods.
Now we can also download videos over http if possible.
Also run the test for rtmp videos, but skip the download.
11 years ago
Philipp Hagemeister
123c10608d
Merge branch 'master' of github.com:rg3/youtube-dl
11 years ago
Philipp Hagemeister
0b7c2485b6
[zdf] Add support for hash URLs and simplify ( #1518 )
11 years ago
Jaime Marquínez Ferrándiz
9abb32045a
[youtube] Add hlsvp to the error message if it can't be found and remove the live stream test
...
It's no longer available, other olympics streams have the same problem.
11 years ago
Jaime Marquínez Ferrándiz
f490e77e77
[youtube] Set the thumbnail to None if it can't be extracted
11 years ago
Jaime Marquínez Ferrándiz
2dc592991a
[youtube] update description of test
11 years ago
Jaime Marquínez Ferrándiz
0a60edcfa9
Don't fail if the video thumbnail couldn't be downloaded ( fixes #1516 )
...
Just report a warning
11 years ago
Jaime Marquínez Ferrándiz
74bab3f0a4
Don't embed subtitles if the list is empty or the field is not set ( fixes #1510 )
11 years ago
Philipp Hagemeister
8574862991
Merge remote-tracking branch 'rzhxeo/RTL_T'
11 years ago
Philipp Hagemeister
2de957c7e1
Merge remote-tracking branch 'rzhxeo/RTL'
11 years ago
Philipp Hagemeister
920de7a27d
[youtube] Fix 83 signature ( Closes #1511 )
11 years ago
rzhxeo
63efc427cd
[RTLnowIE] Clean video title
...
The title of some videos has the following format:
Series - Episode | Series online schauen bei ... NOW
11 years ago
rzhxeo
ce65fb6c76
[RTLnowIE] Add support for http://rtlnitronow.de
11 years ago
Jaime Marquínez Ferrándiz
4de1994b6e
[brightcove] Use direct url for the tests
...
The test_all_urls.py test failed because BrightcoveIE doesn't match them.
11 years ago
Jaime Marquínez Ferrándiz
592882aa9f
[brightcove] Support videos that only provide flv versions ( fixes #1504 )
...
Moved the test from generic.py to brightcove.py
11 years ago
Philipp Hagemeister
b98d6a1e19
release 2013.09.24.2
11 years ago
Philipp Hagemeister
29c7a63df8
Remove debugging code
11 years ago
Philipp Hagemeister
8b25323ae2
release 2013.09.24.1
11 years ago
Philipp Hagemeister
f426de8460
Merge remote-tracking branch 'origin/master'
11 years ago
Philipp Hagemeister
695dc094ab
Merge branch 'automatic-signatures'
11 years ago
Jaime Marquínez Ferrándiz
e80d861064
Revert "[southparkstudios] Fix mgid extraction"
...
This reverts commit 0fd49457f5
.
It seems that the redesign was temporary.
11 years ago
Philipp Hagemeister
2cdeb20135
release 2013.09.24
11 years ago
Philipp Hagemeister
7f74773254
Add option --no-cache-dir
11 years ago
Philipp Hagemeister
f2c327fd39
Fix 86 signature ( #1494 )
11 years ago
Philipp Hagemeister
e35e4ddc9a
Fix output of --youtube-print-sig-code when counting down to 0
11 years ago
Philipp Hagemeister
c3c88a2664
Allow opts.cachedir == None to disable cache
11 years ago
Jaime Marquínez Ferrándiz
bb0eee71e7
[youtube] Update one of the test's description
11 years ago
Jaime Marquínez Ferrándiz
6f56389b88
[youtube] update algos for length 86 and 84 ( fixes #1494 )
11 years ago
Jaime Marquínez Ferrándiz
5b333c1ce6
[francetv] Add an extractor for Generation Quoi ( closes #1475 )
11 years ago
Jaime Marquínez Ferrándiz
a825f33030
[francetv] Add an extractor for France2
11 years ago
Philipp Hagemeister
92f618f2e2
Merge remote-tracking branch 'origin/master'
11 years ago
Philipp Hagemeister
81ec7c7901
[facebook] Allow untitled videos ( Fixes #1484 )
11 years ago
Jaime Marquínez Ferrándiz
dd5d2eb03c
If the file is already downloaded include the size in the progress hook
11 years ago
Jaime Marquínez Ferrándiz
4ae720042c
Include the eta and the speed in the progress hooks
...
Useful when listening to the progress hook, for example in a GUI.
11 years ago
Philipp Hagemeister
c705320f48
Correct test strings
11 years ago
Philipp Hagemeister
d2d8f89531
Do not warn if fallback is without alternatives (because we did not get the flash player URL)
11 years ago
Philipp Hagemeister
bdde940e90
[youtube] Improve flash player URL handling
11 years ago
Philipp Hagemeister
13dc64ce74
[youtube] Remove _decrypt_signature_age_gate
11 years ago
Philipp Hagemeister
c35f9e72ce
Move cachedir doc
11 years ago
Philipp Hagemeister
f8061589e6
[youtube] Actually pass in cachedir option
11 years ago
Philipp Hagemeister
0ca96d48c7
[youtube] Improve source code quality
11 years ago
Philipp Hagemeister
4ba146f35d
Update static signatures
11 years ago
Philipp Hagemeister
edf3e38ebd
[youtube] Improve cache and add an option to print the extracted signatures
11 years ago
Philipp Hagemeister
c4417ddb61
[youtube] Add filesystem signature cache
11 years ago
tewe
4a2080e407
[youku] better error handling
...
blocked videos used to cause death by TypeError, now we report what the
server says
11 years ago
Philipp Hagemeister
2f2ffea9ca
Clarify a couple of calls
11 years ago
Philipp Hagemeister
ba552f542f
Use reader instead of indexing
11 years ago
Philipp Hagemeister
8379969834
Prepare signature function caching
11 years ago
Philipp Hagemeister
95dbd2f990
Change test target (Verified with node.js)
11 years ago
Philipp Hagemeister
a7177865b1
Implement more opcodes
11 years ago
Philipp Hagemeister
e0df6211cc
Restore accidentally deleted commits
...
That's what happens if you let Windows machines write :(
11 years ago
Jaime Marquínez Ferrándiz
b00ca882a4
[livestream] Fix events extraction ( fixes #1467 )
11 years ago
Jaime Marquínez Ferrándiz
39baacc49f
[dailymotion] Add an extractor for users ( closes #1476 )
11 years ago
Jaime Marquínez Ferrándiz
3a1d48d6de
[dailymotion] Raise ExtractorError if the dailymotion response reports an error
11 years ago
Philipp Hagemeister
34308b30d6
Warn if no locale is set ( #1474 )
11 years ago
Philipp Hagemeister
bc1506f8c0
Merge branch 'master' of github.com:rg3/youtube-dl
11 years ago
Philipp Hagemeister
b61067fa4f
Abort if extractaudio is given without a variable extension ( #1470 )
11 years ago
Jaime Marquínez Ferrándiz
69b227a9bc
[southparkstudios] add support for http://www.southparkstudios.com/full-episodes/ * urls ( closes #1469 )
11 years ago
Jaime Marquínez Ferrándiz
0fd49457f5
[southparkstudios] Fix mgid extraction
11 years ago
Philipp Hagemeister
58f289d013
release 2013.09.20.1
11 years ago
Jaime Marquínez Ferrándiz
3d60bb96e1
Add an extractor for ebaumsworld.com ( closes #1462 )
11 years ago
Jaime Marquínez Ferrándiz
38d025b3f0
[youtube] add algo for length 91
11 years ago
Jaime Marquínez Ferrándiz
c40c6aaaaa
Catch socket.error before IOError
...
Since python 2.6 it's a child class.
11 years ago
Jaime Marquínez Ferrándiz
1a810f0d4e
[funnyordie] Fix video url extraction
11 years ago
Philipp Hagemeister
63037593c0
release 2013.09.20
11 years ago
patrickslin
bc4b900898
Unable to decrypt signature length 93 ( fixes #1461 )
11 years ago
Jaime Marquínez Ferrándiz
c5e743f66f
[fktv] support videos splitted in any number of parts and some style changes
11 years ago
Jaime Marquínez Ferrándiz
6c36d8d6fb
Merge pull request #1438 from rzhxeo/fktv
...
Add support for http://fernsehkritik.tv
11 years ago
Jaime Marquínez Ferrándiz
71c82637e7
[youtube] apply the fix for lists with number of videos multiple of _MAX_RESULTS to user extraction
...
Copied from the playlist extractor.
11 years ago
Philipp Hagemeister
2dad310e2c
Credit @Ruirize for newgrounds
11 years ago
Philipp Hagemeister
d0ae9e3a8d
[newgrounds] simplify
11 years ago
Ruirize
a19413c311
Changed file hash.
11 years ago
Ruirize
1ef80b55dd
Fixes test fail
...
Was unaware of --id being passed to test.
11 years ago
Ruirize
eb03f4dad3
Added Newgrounds support
11 years ago
Philipp Hagemeister
830dd1944a
Clarify -i help ( #1453 )
11 years ago
Pierre Rudloff
cc6943e86a
Improvements
11 years ago
rzhxeo
1237c9a3a5
XHamsterIE: Fix support for new HD video url format and add test (closes PR #1443 )
11 years ago
Pierre Rudloff
8f77093262
Merge remote-tracking branch 'upstream/master' into websurg
11 years ago
Jaime Marquínez Ferrándiz
5d13df79a5
[francetv] Remove Pluzz test
...
Videos expire in 7 days
11 years ago
Pierre Rudloff
d79a0e233a
Extractor for websurg.com
11 years ago
Jaime Marquínez Ferrándiz
6523223a4c
[hotnewhiphop] Fix test case title
11 years ago
Jaime Marquínez Ferrándiz
4a67aafb7e
[youtube] Don't search the flash player version for videos with age gate activated
11 years ago
Philipp Hagemeister
f3f34c5b0f
release 2013.09.17
11 years ago
Philipp Hagemeister
6ae8ee3f54
Update 85 signature ( Fixes #1449 )
...
This is the first signature algorithm to have been parsed automatically, although that only works for HTML5 players for now, and is not yet integrated into master.
11 years ago
Jaime Marquínez Ferrándiz
e8f8e80097
Add an extractor for vice.com ( closes #1051 )
11 years ago
Jaime Marquínez Ferrándiz
4dc0ff3ecf
[ooyala] prefer ipad url
...
It has better quality with m3u8 manifests
11 years ago
Jaime Marquínez Ferrándiz
4b6462fc1e
Add an extractor for Bloomberg ( closes #1436 )
11 years ago
Jaime Marquínez Ferrándiz
c4ece78564
[ooyala] add support for more type of video urls, like m3u8 manifests.
11 years ago
rzhxeo
0761d02b0b
Add FKTV extractor
11 years ago
rzhxeo
71c107fc57
Add FKTV extractor
...
Support for Fernsehkritik-TV (incl. Postecke)
11 years ago
Philipp Hagemeister
7459e3a290
Always correct encoding when writing to sys.stderr ( Fixes #1435 )
11 years ago
Philipp Hagemeister
f9e66fb993
release 2013.09.16
11 years ago
Jaime Marquínez Ferrándiz
5a6fecc3de
Add an extractor for southparkstudios.com ( closes #1434 )
...
It uses the MTV system
11 years ago
Jaime Marquínez Ferrándiz
cdbccafed9
Merge pull request #1422 from rzhxeo/xhamster
...
XHamsterIE: Add support for new URL format (download in hd by default)
11 years ago
Jaime Marquínez Ferrándiz
e69ae5b9e7
[youtube] support youtube.googleapis.com/v/* urls ( fixes #1425 )
11 years ago
Jaime Marquínez Ferrándiz
92790f4e54
[soundcloud] Add an extractor for users ( closes #1426 )
11 years ago
Jaime Marquínez Ferrándiz
471a5ee908
Set the ext field for each format
11 years ago
Jaime Marquínez Ferrándiz
19e1d35989
[mixcloud] Rewrite extractor ( fixes #278 )
11 years ago
Jaime Marquínez Ferrándiz
0b7f31184d
Now --all-sub is a modifier to --write-sub and --write-auto-sub ( closes #1412 )
...
For keeping backwards compatibility --all-sub sets --write-sub if --write-auto-sub is not given
11 years ago
Jaime Marquínez Ferrándiz
fad84d50fe
[googleplus] Fix upload date extraction
11 years ago
rzhxeo
9a1c32dc54
XHamsterIE: Add support for new URL format
11 years ago
Jaime Marquínez Ferrándiz
a921f40799
[ustream] Simplify channel extraction
...
the ChannelParser has been moved to a new function in utils get_meta_content
Instead of the SocialStreamParser now it uses a regex
11 years ago
Jaime Marquínez Ferrándiz
74ac9bdd82
Merge pull request #1413 from tewe/master
...
Add Ustream channel support
11 years ago
Jaime Marquínez Ferrándiz
94518f2087
Merge pull request #1409 from JohnyMoSwag/master ( closes #1404 )
...
added kickstarter IE
11 years ago
Jaime Marquínez Ferrándiz
535f59bbcf
Merge pull request #1350 from Jaiz909/description-keyerror-fix
...
Fixed issue #1277 KeyError when no description.
11 years ago
Jaime Marquínez Ferrándiz
dd01d6558a
[gamespot] Update test video title
11 years ago
Jaime Marquínez Ferrándiz
ce85f022d2
[youtube] update algo for length 82 ( fixes #1416 )
11 years ago
Jaime Marquínez Ferrándiz
ad94a6fe44
[canalplust] accept urls that don't include the video id ( fixes #1415 ), extract more info and update test
11 years ago
tewe
bfd5c93af9
Add Ustream channel support
11 years ago
Jaime Marquínez Ferrándiz
c247d87ef3
[funnyordie] fix video url extraction
11 years ago
Philipp Hagemeister
07ac9e2cc2
release 2013.09.12
11 years ago
Jaime Marquínez Ferrándiz
6bc520c207
Check for both automatic captions and subtitles with options `--write-sub` and `--write-auto-sub` ( fixes #1224 )
11 years ago
Johny Mo Swag
f1d20fa39f
added kickstarter IE
11 years ago
Jaime Marquínez Ferrándiz
e3dc22ca3a
[youtube] Fix detection of videos with automatic captions
11 years ago
Jaime Marquínez Ferrándiz
d665f8d3cb
[subtitles] Also list the available automatic captions languages with '--list-sub'
11 years ago
Jaime Marquínez Ferrándiz
055e6f3657
[youtube] Support automatic captions with original language different from English ( fixes #1225 ) and download in multiple languages.
11 years ago
Jaime Marquínez Ferrándiz
ac4f319ba1
Credit @iemejia
11 years ago
Jaime Marquínez Ferrándiz
542cca0e8c
Merge branch 'subtitles_rework' (closes PR #1326 )
11 years ago
Jaime Marquínez Ferrándiz
6a2449df3b
[howcast] Do not download from http://www.howcast.com/videos/{video_id}
...
It takes too much to follow the redirection.
11 years ago
Jaime Marquínez Ferrándiz
7fad1c6328
[subtitles] Use self._download_webpage for extracting the subtitles
...
It raises ExtractorError for the same exceptions we have to catch.
11 years ago
Jaime Marquínez Ferrándiz
d82134c339
[subtitles] Simplify the extraction of subtitles in subclasses and remove NoAutoSubtitlesInfoExtractor
...
Subclasses just need to call the method extract_subtitles, which will call _extract_subtitles and _request_automatic_caption
Now the default implementation of _request_automatic_caption returns {}.
11 years ago
Jaime Marquínez Ferrándiz
54d39d8b2f
[subtitles] rename SubitlesIE to SubtitlesInfoExtractor
...
Otherwise it can be automatically detected as a IE ready for use.
11 years ago
Jaime Marquínez Ferrándiz
de7f3446e0
[youtube] move subtitles methods from the base extractor to YoutubeIE
11 years ago
Ismael Mejia
f8e52269c1
[subtitles] made inheritance hierarchy flat as requested
11 years ago
Ismael Mejia
cf1dd0c59e
Merge branch 'master' into subtitles_rework
11 years ago
Philipp Hagemeister
1f7dc42cd0
release 2013.11.09
11 years ago
Jaime Marquínez Ferrándiz
aa8f2641da
[youtube] update algo for length 85 ( fixes #1408 and fixes #1406 )
11 years ago
Jaime Marquínez Ferrándiz
648d25d43d
[francetv] Add an extractor for francetvinfo.fr ( closes #1317 )
...
It uses the same system as Pluzz, create a base class for both extractors.
11 years ago
Pierre Rudloff
6b361ad5ee
Wrong property name
11 years ago
Pierre Rudloff
5d8afe69f7
Add an extractor for pluzz.francetv.fr (closes PR #1399 )
11 years ago
Philipp Hagemeister
a1ab553858
release 2013.09.10
11 years ago
Jaime Marquínez Ferrándiz
07463ea162
Add an extractor for Slideshare ( closes #1400 )
11 years ago
Jaime Marquínez Ferrándiz
6d2d21f713
[sohu] add support for my.tv.sohu.com urls ( fixes #1398 )
11 years ago
Jaime Marquínez Ferrándiz
061b2889a9
Fix the minutes part in FileDownloader.format_seconds ( fixed #1397 )
...
It printed for the minutes the result of (seconds // 60)
11 years ago
Jaime Marquínez Ferrándiz
8963d9c266
[youtube] Modify the regex to match ids of length 11 ( fixes #1396 )
...
In urls like http://www.youtube.com/watch?v=BaW_jenozKcsharePLED17F32AD9753930 you can't split the query string and ids always have that length.
11 years ago
Jaime Marquínez Ferrándiz
890f62e868
Revert "[youtube] Fix detection of tags from HLS videos."
...
They have undo the change
This reverts commit 0638ad9999
.
11 years ago
Philipp Hagemeister
8f362589a5
release 2013.09.07
11 years ago
Ismael Mejia
72836fcee4
Merge branch 'master' into subtitles_rework
11 years ago
Jaime Marquínez Ferrándiz
a7130543fa
[generic] If the url doesn't specify the protocol, then try to extract prepending 'http://'
11 years ago
Jaime Marquínez Ferrándiz
a490fda746
[daylimotion] accept embed urls ( fixes #1386 )
11 years ago
Jaime Marquínez Ferrándiz
7e77275293
Add an extractor for Metacritic
11 years ago
Ismael Mejia
d6e203b3dc
[subtitles] fixed multiple subtitles language separated by comma after merge
...
As mentioned in the pull request, I forgot to include this changes.
aa6a10c44a
11 years ago
Jaime Marquínez Ferrándiz
e3ea479087
[youtube] Fix some issues with the detection of playlist/channel urls (reported in #1374 )
...
They were being caught by YoutubeUserIE, now it only extracts a url if the rest of extractors aren't suitable.
Now the url tests check that the urls can only be extracted with an specific extractor.
11 years ago
Jaime Marquínez Ferrándiz
faab1d3836
[youtube] Fix detection of feeds urls ( fixes #1294 )
...
Urls like https://www.youtube.com/feed/watch_later were being as users (before the last changes to YoutubeUserIE, as videos)
11 years ago
Philipp Hagemeister
59282080c8
release 2013.09.06.1
11 years ago
Jaime Marquínez Ferrándiz
fd9cf73836
[youtube] Users: download from the api in json to simplify extraction ( fixes #1358 )
...
There could be duplicate videos or other videos if the description have links.
11 years ago
Jaime Marquínez Ferrándiz
0638ad9999
[youtube] Fix detection of tags from HLS videos.
11 years ago
Philipp Hagemeister
1eb527692a
release 2013.09.06
11 years ago
patrickslin
1cf911bc82
Vevo sig changed again, please update for us! Thanks very much! ( fixes #1375 )
11 years ago
Jaime Marquínez Ferrándiz
f4b052321b
[youtube] Urls like youtube.com/NASA are now interpreted as users ( fixes #1069 )
...
Video urls like http://youtube.com/BaW_jenozKc are not valid, but http://youtu.be/BaW_jenozKc is correct.
11 years ago
Philipp Hagemeister
a636203ea5
release 2013.09.05
11 years ago
Jaime Marquínez Ferrándiz
c215217e39
[youtube] Playlists: extract the videos id from ['media$group']['yt$videoid'] ( fixes #1374 )
...
'media$player' is not defined for private videos.
11 years ago
Jaime Marquínez Ferrándiz
08e291b54d
[generic] Recognize html5 video in the format '<video src=".+?"' and only unquote the url when extracting the id ( fixes #1372 )
11 years ago
Jaime Marquínez Ferrándiz
6b95b065be
Add extractor for tvcast.naver.com ( closes #1331 )
11 years ago
Jaime Marquínez Ferrándiz
9363169b67
[daum] Get the video page from a canonical url to extract the full id ( fixes #1373 ) and extract description.
11 years ago
Jaime Marquínez Ferrándiz
085bea4513
Credit @Huarong for tv.sohu.com
11 years ago
Jaime Marquínez Ferrándiz
150f20828b
Add extractor for daum.net ( closes #1330 )
11 years ago
Philipp Hagemeister
08523ee20a
release 2013.09.04
11 years ago
Philipp Hagemeister
5d5171d26a
Merge pull request #1341 from xanadu/master
...
add support for "-f mp4" for YouTube
11 years ago
Allan Zhou
96fb5605b2
AHLS -> Apple HTTP Live Streaming
11 years ago
Philipp Hagemeister
7011de0bc2
Merge pull request #1363 from Rudloff/defense
...
defense.gouv.fr
11 years ago
Allan Zhou
c3dd69eab4
Merge remote-tracking branch 'upstream/master'
11 years ago
Pierre Rudloff
025171c476
Suggested by @phihag
11 years ago
Jaime Marquínez Ferrándiz
c8dbccde30
[orf] Remove the test video, they seem to expire in one week
11 years ago
Jaime Marquínez Ferrándiz
4ff7a0f1f6
[dailymotion] improve the regex for extracting the video info
11 years ago
Jaime Marquínez Ferrándiz
9c2ade40de
[vimeo] Handle Assertions Error when trying to get the description
...
In some pages the html tags are not closed, python 2.6 cannot handle it.
11 years ago
Jaime Marquínez Ferrándiz
aa32314d09
[vimeo] add support for videos that embed the download url in the player page ( fixes #1364 )
11 years ago
Pierre Rudloff
52afe99665
Extractor for defense.gouv.fr
11 years ago
Jaime Marquínez Ferrándiz
8e4e89f1c2
Add an extractor for VeeHD ( closes #1359 )
11 years ago
Jaime Marquínez Ferrándiz
6c758d79de
[metacafe] Add more cases for detecting the uploader detection (reported in #1343 )
11 years ago
Allan Zhou
85f03346eb
Merge remote-tracking branch 'upstream/master'
11 years ago
Allan Zhou
bdc6b3fc64
add support for "-f mp4" for YouTube
11 years ago
Philipp Hagemeister
10f5c016ec
release 2013.08.30
11 years ago
Jaime Marquínez Ferrándiz
2e756879f1
[youtube] update algo for length 86
11 years ago
Jaime Marquínez Ferrándiz
c7a7750d3b
[youtube] Fix typo in the _VALID_URL for YoutubeFavouritesIE, it was intended to also match :ytfavourites
11 years ago
Jai Grimshaw
b3f0e53048
Fixed issue #1277 KeyError when no description.
...
Allows a continue with a warning when an extractor cannot retrieve a description.
11 years ago
Philipp Hagemeister
3243d0f7b6
release 2013.08.29
11 years ago
Jaime Marquínez Ferrándiz
23b00bc0e4
[youtube] update algo for length 84
...
Only appears sometimes, nearly identical to length 86.
11 years ago
Jaime Marquínez Ferrándiz
52e1eea18b
[youtube] update algo for length 86 ( fixes #1349 )
11 years ago
Jaime Marquínez Ferrándiz
ee80d66727
[ign] update 1up extractor to work with the updated IGNIE
11 years ago
Jaime Marquínez Ferrándiz
f1fb2d12b3
[ign] extract videos from articles pages
11 years ago
Jeff Smith
8928491074
Fix orf.at extractor by adding file coding mark
11 years ago
Jaime Marquínez Ferrándiz
545434670b
Add an extractor for orf.at ( closes #1346 )
...
Make find_xpath_attr also accept numbers in the value
11 years ago
Jaime Marquínez Ferrándiz
54fda45bac
Merge pull request #1342 from whydoubt/fix_mit_26
...
Fix MIT extractor for Python 2.6
11 years ago
Jaime Marquínez Ferrándiz
c7bf7366bc
Update descriptions checksum for some test for Unistra and Youtube
11 years ago
Jaime Marquínez Ferrándiz
0d75ae2ce3
Fix detection of the webpage charset if it's declared using ' instead of "
...
Like in "<meta charset='utf-8'/>"
11 years ago
Jeff Smith
b5ba7b9dcf
Fix MIT extractor for Python 2.6
...
The HTML for the MIT page does not parse cleanly for Python 2.6 due
to script tags within an actual script element. The offending piece
is inside a comment block, so removing all such comment blocks
fixes the parsing.
11 years ago
Philipp Hagemeister
2891932bf0
release 2013.08.28.1
11 years ago
Philipp Hagemeister
9868c781a1
Merge remote-tracking branch 'origin/master'
11 years ago
Philipp Hagemeister
c257baff85
Merge remote-tracking branch 'rzhxeo/youporn-hd'
...
Conflicts:
youtube_dl/utils.py
11 years ago
rzhxeo
878e83c5a4
YoupornIE: Clean up extraction of hd video
11 years ago
rzhxeo
0012690aae
Let aes_decrypt_text return bytes instead of unicode
11 years ago
rzhxeo
6e74bc41ca
Fix division bug in aes.py
11 years ago
rzhxeo
cba892fa1f
Add intlist_to_bytes to utils.py
11 years ago
Jaime Marquínez Ferrándiz
920ef0779b
Hide the password and username in verbose mode ( closes #1089 )
11 years ago
Philipp Hagemeister
48ea9cea77
Allow changes to run under Python 3
11 years ago
Philipp Hagemeister
ccf4b799df
Merge remote-tracking branch 'origin/master'
11 years ago
Philipp Hagemeister
f143d86ad2
[sohu] Handle encoding, and fix tests
11 years ago
Jaime Marquínez Ferrándiz
8ae97d76ee
PostProcessingError holds the message in the 'msg' property, not in 'message' ( fixes #1323 )
...
Causes DeprecationWarning: http://www.python.org/dev/peps/pep-0352/
11 years ago
Philipp Hagemeister
f8b362739e
Merge remote-tracking branch 'Huarong/master'
11 years ago
Philipp Hagemeister
6d69d03bac
Merge remote-tracking branch 'origin/reuse_ies'
11 years ago
Philipp Hagemeister
204da0d3e3
Merge remote-tracking branch 'origin/master'
11 years ago
Philipp Hagemeister
c496ca96e7
Fix platform name in Python 2 with --verbose ( Closes #1228 )
11 years ago
Jaime Marquínez Ferrándiz
67b22dd036
Add extractors for video.mit.edu and techtv.mit.edu ( closes #1327 )
...
video.mit.edu just embeds the videos from techtv.mit.edu
11 years ago
Philipp Hagemeister
ce6a696e4d
Remove unused imports
11 years ago
Philipp Hagemeister
a5caba1eb0
[generic] simply use urljoin
11 years ago
Philipp Hagemeister
edde6c56ac
Print playpath with --get-url ( Fixes #1334 )
11 years ago
Philipp Hagemeister
ae3531adf9
[generic] Fix URL concatenation
...
When the url is something like http://example.org/foo/bar?x=y and the added is file/video.mp4 , we want http://example.org/foo/file/video.mp4
Fixes #1268 .
11 years ago
Philipp Hagemeister
8cf5ee7831
Merge branch 'master' of github.com:rg3/youtube-dl
11 years ago
Philipp Hagemeister
aa3e950764
Tolerate junk at the end of gzip-compressed content ( #1268 )
11 years ago
Jaime Marquínez Ferrándiz
af8bd6a82d
Show the time taken to download in the same format as the ETA
11 years ago
Jaime Marquínez Ferrándiz
6d38616e67
Merge pull request #1181 from h3xx/master
...
Add some verbosity when reporting finished downloads
Remove the mixed use of tabs and spaces for indentation.
11 years ago
Philipp Hagemeister
4f5f18acb9
[addanime] add file
11 years ago
Jaime Marquínez Ferrándiz
3e223834d9
[youtube] update algo for length 88, thanks to @Ramhack ( fixes #1328 )
11 years ago
Jaime Marquínez Ferrándiz
a1bb0f8773
[cnn] remove debug print call.
11 years ago
Jaime Marquínez Ferrándiz
0e283428f7
HTTPError is in urllib.error in Python 3, not in http.error
11 years ago
Philipp Hagemeister
2eabb80254
[addanime] improve
11 years ago
Philipp Hagemeister
44586389e4
[appletrailers] Add support
11 years ago
Ismael Mejia
06a401c845
Merge branch 'master' into subtitles_rework
11 years ago
Philipp Hagemeister
273f603efb
[cnn] Allow more URLs
11 years ago
Philipp Hagemeister
1619e22f40
release 2013.08.28
11 years ago
Philipp Hagemeister
88a79ce6a6
Delete default user agent ( Fixes #1309 )
11 years ago
Philipp Hagemeister
acebc9cd6b
Revert "Install our own HTTPS handler as well ( #1309 )"
...
This reverts commit 36399e8576
and fixes #1322 .
11 years ago
Jeff Smith
7f3c4f4f65
Initial slash in Google+ photos link was removed
11 years ago
Jaime Marquínez Ferrándiz
0bc56fa66a
Add an extractor for NBC news ( closes #1320 )
11 years ago
Jaime Marquínez Ferrándiz
1a582dd49d
Add an extractor for CNN ( closes #1318 )
11 years ago
Philipp Hagemeister
e86ea47c02
[canalc2] Small improvements
11 years ago
Philipp Hagemeister
aa5a63a5b5
Merge remote-tracking branch 'Rudloff/canalc2'
11 years ago
Jaime Marquínez Ferrándiz
2a7b4da9b2
[hark] get the song info in JSON and extract more information.
11 years ago
Jaime Marquínez Ferrándiz
069d098f84
[canalplus] Accept player.canalplus.fr urls
11 years ago
Philipp Hagemeister
b3889f7023
release 2013.08.27
11 years ago
Philipp Hagemeister
65883c8dbd
Merge branch 'master' of github.com:rg3/youtube-dl
11 years ago
Philipp Hagemeister
341ca8d74c
[trilulilu] Add support for trilulilu.ro
...
Fun fact: The ads (not yet supported) are loaded from youtube ;)
11 years ago
Jaime Marquínez Ferrándiz
1b01e2b085
Merge pull request #1315 from yasoob/master
...
fixed tests for c56 and dailymotion
11 years ago
M.Yasoob Ullah Khalid ☺
976fc7d137
fixed tests for c56 and dailymotion
11 years ago
Philipp Hagemeister
c3b7b29c23
Merge remote-tracking branch 'origin/master'
11 years ago
Philipp Hagemeister
627a91a9a8
[generic] small typo
11 years ago
Philipp Hagemeister
6dc6302599
Merge pull request #1231 from yasoob/master
...
Added an IE for hark.com
11 years ago
Philipp Hagemeister
90648143c3
Merge pull request #1310 from rzhxeo/rtlnow
...
Add support for http://superrtlnow.de
11 years ago
Philipp Hagemeister
9585f890f8
[generic] add support for relative URLs ( Fixes #1308 )
11 years ago
Philipp Hagemeister
0838239e8e
[generic] Support double slash URLs ( Fixes #1309 )
11 years ago
Philipp Hagemeister
36399e8576
Install our own HTTPS handler as well ( #1309 )
11 years ago
Philipp Hagemeister
9460db832c
[ro220] Add support for 220.ro
11 years ago
rzhxeo
d68730a56e
Add SUPER RTL NOW to RTLnow extractor
11 years ago
Jaime Marquínez Ferrándiz
f2aeefe29c
[youtube] update algo for length 84
11 years ago
Philipp Hagemeister
8ae7be3ef4
release 2013.08.23
11 years ago
Jaime Marquínez Ferrándiz
306170518f
[youtube] update algo for length 86 ( fixes #1302 )
11 years ago
Jaime Marquínez Ferrándiz
aa6a10c44a
Allow to specify multiple subtitles languages separated by commas ( closes #518 )
11 years ago
Jaime Marquínez Ferrándiz
9af73dc4fc
Print a message before embedding the subtitles
11 years ago
Jaime Marquínez Ferrándiz
fc483bb6af
[xhamster] use determine_ext
11 years ago
Jaime Marquínez Ferrándiz
53b0f3e4e2
Merge pull request #1301 from rzhxeo/xhamster
...
XHamsterIE: Fix video extension and add video description
11 years ago
rzhxeo
4353cf51a0
XHamsterIE: Add video description
11 years ago
rzhxeo
ce34e9ce5e
XHamsterIE: Fix video extension
...
Cut off GET parameter
11 years ago
Jaime Marquínez Ferrándiz
d4051a8e05
Add a post processor for embedding subtitles in mp4 videos ( closes #1052 )
11 years ago
Jaime Marquínez Ferrándiz
df3df7fb64
[youtube] Fix download of subtitles with '--all-subs'
...
If _extract_subtitles is called the option 'write subtitles' is always true.
11 years ago
Jaime Marquínez Ferrándiz
9e9c164052
Merge pull request #937 from jaimeMF/subtitles_rework
...
Subtitles rework
11 years ago
Jaime Marquínez Ferrándiz
066090dd3f
[youtube] add algo for length 80 and update player info
11 years ago
Ismael Mejia
bd2dee6c67
Merge branch 'master' into subtitles_rework
11 years ago
Philipp Hagemeister
74e6672beb
Merge pull request #1297 from iemejia/master
...
[subtitles] separated subtitle options in their own group
11 years ago
Philipp Hagemeister
02bcf0d389
release 2013.08.22
11 years ago
Ismael Mejia
18b4e04f1c
Merge branch 'master' into subtitles_rework
11 years ago
Jaime Marquínez Ferrándiz
10204dc898
[videofyme] Add an additional quality (they change between downloads of the info) and update md5 sum of the test video
11 years ago
Ismael Mejia
1865ed31b9
[subtitles] separated subtitle options in their own group
11 years ago
Jaime Marquínez Ferrándiz
3669cdba10
[youtube] update algo for length 82 ( fixes #1296 )
11 years ago
Jaime Marquínez Ferrándiz
939fbd26ac
[youtube] fix the order of DASH formats
11 years ago
Jaime Marquínez Ferrándiz
e6ddb4e7af
Merge pull request #1279 from xanadu/master
...
Add YouTube DASH formats to YouTubeIE
11 years ago
Pierre Rudloff
ff2424595a
lxml is not part of the standard library.
11 years ago
Pierre Rudloff
cd0abcc0bb
Extractor for canalc2.tv
11 years ago
Jaime Marquínez Ferrándiz
4a55479fa9
Credit Pierre Rudloff for JeuxVideoIE and UnistraIE
11 years ago
Jaime Marquínez Ferrándiz
f527115b5f
Rename utv.py to unistra.py and extract more info
...
There are other sites that could be named utv, which would conflict if they are added
11 years ago
Pierre Rudloff
75e1b46add
Download from utv.unistra.fr (PR #1271 )
...
Squashed to a single commit to keep the file 'youtube-dl' unchanged and remove the revert commit.
11 years ago
Pierre Rudloff
7070b83687
Merge remote-tracking branch 'upstream/master'
11 years ago
Pierre Rudloff
8d212e604a
Merge remote-tracking branch 'upstream/master'
...
Conflicts:
youtube_dl/extractor/jeuxvideo.py
11 years ago
Jaime Marquínez Ferrándiz
063fcc9676
[jeuxvideo] Extract more information and add test
11 years ago
Jaime Marquínez Ferrándiz
8403612258
Merge pull request #1267 from Rudloff/master
...
Download videos from jeuxvideo.com
Edited to keep the file 'youtube-dl' unchanged.
11 years ago
Pierre Rudloff
25b51c7816
Download videos from jeuxvideo.com
11 years ago
Jaime Marquínez Ferrándiz
9779b63bb6
Add an extractor for PBS ( closes #870 and #873 )
11 years ago
Jaime Marquínez Ferrándiz
d81aef3adf
Add an extractor for tv.slashdot.org ( closes #1192 )
...
It uses the ooyala platform, so it just extracts the ooyala url.
11 years ago
Jaime Marquínez Ferrándiz
45ed795cb0
[youtube] update uploader name for a test video: 'IconaPop' has changed to 'Icona Pop'
11 years ago
Jaime Marquínez Ferrándiz
683e98a8a4
[statigram] change test video
...
The old one cannot be accessed.
11 years ago
Jaime Marquínez Ferrándiz
e0cfeb2ea7
[funnyordie] fix extraction of video url and title
11 years ago
Jaime Marquínez Ferrándiz
75340ee383
[vevo] Fix urls with a query ( #1258 )
11 years ago
Jaime Marquínez Ferrándiz
668de34c6b
[soundcloud] Support widget urls ( fixes #1252 )
11 years ago
Jaime Marquínez Ferrándiz
a91b954bb4
[vimeo] extract information for Vimeo Pro videos from http://player.vimeo.com/video/{video_id} ( fixes #1197 )
...
For some videos https://vimeo.com/{video_id} doesn't work
11 years ago
Allan Zhou
37b6d5f684
fix hls test
11 years ago
Allan Zhou
b7a6838407
address review comment
11 years ago
Allan Zhou
cde846b3d3
fix code style
11 years ago
Philipp Hagemeister
6c3e6e88d3
Allow hours in ETA display ( Fixes #1280 )
11 years ago
Philipp Hagemeister
739674cd77
[rtlnow] Add support for error message for queries from outside of Germany
11 years ago
Philipp Hagemeister
4b2d7cae11
release 2013.08.21
11 years ago
Philipp Hagemeister
7fea7156cb
[generic] support HTML5 video
11 years ago
Philipp Hagemeister
3093468977
[generic] Ignore stupid HTTP servers ( #1284 )
11 years ago
Philipp Hagemeister
79cb25776f
Cache suitable regular expressions
...
This speeds up TestAllURLsMatching.test_no_duplicates by about 8000% at the cost of minimal memory overhead.
11 years ago
Philipp Hagemeister
87f78946a5
[collegehumor] Allow old-style videos ( Fixes #1285 )
11 years ago
Allan Zhou
211fbc1328
fix failed tests
11 years ago
Allan Zhou
836a086ce9
Add YouTube DASH formats to YouTubeIE
11 years ago
Philipp Hagemeister
d741e55a42
[youtube] Support watch_popup URLs ( Fixes #1275 )
11 years ago
Philipp Hagemeister
17d3aaaf16
Merge pull request #1273 from rzhxeo/rtlnow
...
Add support for http://voxnow.de
11 years ago
rzhxeo
ea55b2a4ca
Add VOXnow to RTLnow extractor
11 years ago
Philipp Hagemeister
3f0537dd4a
Merge remote-tracking branch 'rzhxeo/rtlnow'
11 years ago
Pierre Rudloff
943f7f7a39
Download videos from jeuxvideo.com
11 years ago
rzhxeo
01b32990da
Add RTLnow extractor
11 years ago
rzhxeo
dbda1b5147
Add RTLnow extractor
...
Supports http://rtl2now.rtl2.de and http://rtl-now.rtl.de
11 years ago
Philipp Hagemeister
ddf3bd328b
release 2013.08.17
11 years ago
kkalpakloglou
5a27ecdd2e
Update AddAnime.py
11 years ago
patrickslin
f9c3c90ca8
Length 85 changed again? ( fixes #1254 )
11 years ago
Philipp Hagemeister
6daccbe317
release 2013.08.15
11 years ago
patrickslin
3a7256697e
Unable to Download Video ( fixes #1247 )
11 years ago
Philipp Hagemeister
d1ba998274
release 2013.08.14
11 years ago
patrickslin
e1842025d0
Updated Vevo Signature Length ( fixes #1237 )
11 years ago
Yasoob
e3a88568b0
Added an IE for hark.com
11 years ago
Philipp Hagemeister
0577177e3e
[vevo] fix testcase
11 years ago
Philipp Hagemeister
298f833b16
Note update possibility on errors (thanks @chbrown, #1229 )
11 years ago
rzhxeo
97b3656c2e
YoupornIE: Add support for hd videos and update Test
11 years ago
rzhxeo
f3bcebb1d2
add an aes implementation
11 years ago
Philipp Hagemeister
0f399e6e5e
release 2013.08.09
11 years ago
patrickslin
8a9d86a2a7
New sig len 89 algo
...
Fixes new YT encrypted sig len 89.
11 years ago
Philipp Hagemeister
d468a09789
release 2013.08.08.1
11 years ago
patrickslin
02cf62e240
Invalid signature again ( fixes #1215 )
11 years ago
Ismael Mejia
d55de6eec2
[subtitles] Skips now the subtitles that has already been downloaded.
...
Just a validation for file exists, I also removed a method that wasn't
been used because it was a copy paste from FileDownloader.
11 years ago
Ismael Mejia
69df680b97
[subtitles] Improved docs + new class for servers who don't support
...
auto-caption
11 years ago
Ismael Mejia
33eb0ce4c4
[subtitles] removed only-sub option (--skip-download achieves the same
...
functionality)
11 years ago
Ismael Mejia
505c28aac9
Separated subtitle options in their own group
11 years ago
Philipp Hagemeister
67fb0c5495
Merge branch 'master' of github.com:rg3/youtube-dl
11 years ago
Philipp Hagemeister
4efba05c56
Clarify template error message ( #1209 )
11 years ago
Ismael Mejia
8377574c9c
[internal] Improved subtitle architecture + (update in
...
youtube/dailymotion)
The structure of subtitles was refined, you only need to implement one
method that returns a dictionnary of the available subtitles (lang, url) to
support all the subtitle options in a website. I updated the subtitle
downloaders for youtube/dailymotion to show how it works.
11 years ago
Philipp Hagemeister
0f90943e45
Merge pull request #1189 from cyisfor/master
...
More informative error
11 years ago
Philipp Hagemeister
526e638c8a
release 2013.08.08
11 years ago
Ismael Mejia
372297e713
Undo the previous commit (it was a mistake)
11 years ago
Philipp Hagemeister
356e067390
Merge remote-tracking branch 'patrickslin/patch-4'
11 years ago
Philipp Hagemeister
b513a251f8
Merge commit '7a4c6cc92f9ffec9135652a49153caffa5520c29'
11 years ago
Ismael Mejia
953e32b2c1
[dailymotion] Added support for subtitles + new InfoExtractor for
...
generic subtitle download.
The idea is that all subtitle downloaders must descend from SubtitlesIE
and implement only three basic methods to achieve the complete subtitle
download functionality. This will allow to reduce the code in YoutubeIE
once it is rewritten.
11 years ago
Ismael Mejia
5898e28272
Fixed small type issue
11 years ago
patrickslin
36cb11f068
Encrypted sig 87 broken again ( fixes #1200 )
11 years ago
AndreiArba
7a4c6cc92f
Updated the 84 length signature decryption
...
Updated the right 84 length signature decryption 06.08.2013
11 years ago
user
7edcb8f39c
More informative error
11 years ago
huohuarong
d5b00ee6e0
improve sohu extractor
11 years ago
tsantala
461cead4f7
changes
11 years ago
huohuarong
b5a6d40818
fix parse title bug
11 years ago
Dan Church
968b5e0112
Add some verbosity when reporting finished downloads
...
For example:
[download] Resuming download at byte 1868140
[download] Destination: Entry #1-Bn59FJ4HrmU.flv
[download] 100% of 3.27MiB in 4s
This format is meant to somewhat mirror the behavior of wget(1) when reporting finished downloads:
100%[==================>] 54,836,682 788KB/s in 74s
2013-08-04 12:32:05 (728 KB/s) - 'google-chrome-stable_current_x86_64.rpm' saved [54836682/54836682]
11 years ago
Jaime Marquínez Ferrándiz
39b782b390
[collegehumor] support urls in the format www.collegehumor.com/e/{video_id} ( fixes #1179 )
11 years ago
Jaime Marquínez Ferrándiz
577664c8e8
Add an extractor from muzu.tv ( closes #1177 )
11 years ago
Jaime Marquínez Ferrándiz
bba12cec89
Add an extractor for videofy.me ( closes #1171 )
...
Also modify find_xpath_attr to accept values with spaces like for id="HQ on"
11 years ago
Jaime Marquínez Ferrándiz
70c4c03cb8
[arte] add support for downloading from http://liveweb.arte.tv ( fixes #1014 )
11 years ago
Jaime Marquínez Ferrándiz
f5791ed136
[arte] Prefer vídeos without subtitles in the same language ( fixes #1173 ) and fix crash when there's no description
11 years ago
huohuarong
4ec929dc9b
use ..utils/clean_html()
11 years ago
Jaime Marquínez Ferrándiz
fbf189a6ee
[myvideo] add support for videos that place the video info inside www.myvideo.de/service/data/video/{id}/config ( fixes #616 )
11 years ago
Jaime Marquínez Ferrándiz
09825cb5c0
Add an extractor for Ooyala ( closes #833 )
...
Only works for some sites, it doesn't work for videos that use a f4m manifest
11 years ago
Jaime Marquínez Ferrándiz
ed27d35674
[youtube] don't crash in verbose mode if 'ad3_module' is not defined in age protected videos ( fixes #1159 )
11 years ago
Philipp Hagemeister
fd5539eb41
release 2013.08.02
11 years ago
Jaime Marquínez Ferrándiz
04bca64bde
[youtube]: new algo for length 83 ( fixes #1164 )
11 years ago
Jaime Marquínez Ferrándiz
03cc7c20c1
[youtube] show which formats are in 3D with "-F" and in the format field
11 years ago
Jaime Marquínez Ferrándiz
4075311d94
Merge pull request #1163 from xanadu/master
...
add support for download YouTube 3d format of 3d content
11 years ago
huohuarong
6624a2b07d
add an extractor for tv.sohu.com
11 years ago
huohuarong
6d3a7d03e1
fix bug: kankan extractor not support http://vod.kankan.com/v/70/70309.shtml
11 years ago
Allan Zhou
86fe61c8f9
add support for download YouTube 3d format of 3d content
11 years ago
Dominik
e3f4593e76
Fix regex error when only subtitled video is available on arte.
11 years ago
Jaime Marquínez Ferrándiz
1d043b93cf
[youtube] Add support for downloading videos with hlsvp ( fixes #1083 )
...
They are downloaded with a m3u8 manifest, they seem to be encrypted, but ffmpeg can handle them.
11 years ago
Jaime Marquínez Ferrándiz
b15d4f624f
Allow to download from m3u8 manifests with ffmpeg
...
They are detected by the extension of the url.
11 years ago
Jaime Marquínez Ferrándiz
4aa16a50f5
Log a better error message if ffprobe or avconv are not found (related #1134 )
11 years ago
Jaime Marquínez Ferrándiz
bbcbf4d459
Switch some calls to to_stderr to report_error and report_warning
11 years ago
Philipp Hagemeister
930ad9eecc
release 2013.07.31
11 years ago
Jaime Marquínez Ferrándiz
b072a9defd
YoutubeIE: with age protected videos, add a missing "return" to return the signature decrypted with _decrypt_signature
11 years ago
Jaime Marquínez Ferrándiz
75952c6e3d
YoutubeIE: new algo for length 86 ( fixes #1156 )
...
Now is using the same length as the flash player used for age protected videos, but the algorithm is different, so now for age protected videos it first tries to use the old algo.
11 years ago
Jaime Marquínez Ferrándiz
05afc96b73
Print urls from the batch file with --verbose (related #1155 )
11 years ago
Jaime Marquínez Ferrándiz
fa80026915
Disable way and tf1 tests, the whole videos are served sometimes, so the md5 sum doesn't match.
11 years ago
Jaime Marquínez Ferrándiz
2bc3de0f28
[worldstarhiphop] Small cleanup
...
The second check for the Vevo id is not necessary.
11 years ago
Jaime Marquínez Ferrándiz
99c7bc94af
Merge pull request #1148 from JohnyMoSwag/master
...
[worldstarhiphop] support vevo videos
11 years ago
Jaime Marquínez Ferrándiz
152c8f349d
Merge pull request #1149 from pishposhmcgee/patch-3
...
[vevo] Modified m_urls regex and video_url
11 years ago
Johny Mo Swag
d75654c15e
using re.search
11 years ago
Jaime Marquínez Ferrándiz
0725f584e1
[wat] fix the extraction of the video url ( fixes #1103 )
...
Use the direct download link for Android.
11 years ago
Jaime Marquínez Ferrándiz
8cda9241d1
Add an extractor for kankan.com ( closes #1133 )
11 years ago
pishposhmcgee
a3124ba49f
Modified m_urls regex and video_url
...
Some videos have a leading slash, some do not
11 years ago
Johny Mo Swag
579e2691fe
detect vevo embed fix
11 years ago
Johny Mo Swag
63f05de10b
detect vevo embed
11 years ago
Jaime Marquínez Ferrándiz
caeefc29eb
[vimeo] add an extractor for channels
11 years ago
Jaime Marquínez Ferrándiz
a3c736def2
[dailymotion] Add an extractor for Dailymotion playlists
11 years ago
Jaime Marquínez Ferrándiz
58261235f0
Add an extractor for roxwell.com ( closes #1044 )
11 years ago
Philipp Hagemeister
da70877a1b
release 2013.07.25.2
11 years ago
Jaime Marquínez Ferrándiz
5c468ca8a8
YoutubeIE: add algo for length 79 ( fixes #1126 )
11 years ago
Jaime Marquínez Ferrándiz
aedd6bb97d
YoutubeIE: new algo for length 81 ( fixes #1127 )
11 years ago
Jaime Marquínez Ferrándiz
733d9cacb8
Merge pull request #1120 from pishposhmcgee/patch-1
...
[collegehumor] Added an option 'e' to go with 'video' or 'embed'
11 years ago
Philipp Hagemeister
42f2805e48
[keek] Fix testcase (Broken by accident in 6625f82940
)
11 years ago
Philipp Hagemeister
0ffcb7c6fc
release 2013.07.25.1
11 years ago
Philipp Hagemeister
27669bd11d
[ina] Allow I at start of video IDs
11 years ago
Philipp Hagemeister
6625f82940
[keek] Allow httpS URLs ( Fixes #1123 )
11 years ago
Philipp Hagemeister
d0866f0bb4
release 2013.07.25
11 years ago
Philipp Hagemeister
09eeb75130
Merge remote-tracking branch 'pishposhmcgee/patch-2'
11 years ago
Philipp Hagemeister
0a99956f71
[ina] Fix URL detection ( Fixes #1121 )
11 years ago
pishposhmcgee
12ef6aefa8
changed video_url regex
...
Some older videos contain an extra properties such as 'embed' before 'type'.
11 years ago
pishposhmcgee
e93aa81aa6
Added an option 'e' to go with 'video' or 'embed'
...
Based on links that I've seen, /e/<videoid> also occurs in the wild, and making this substitution yields effective results.
11 years ago
Jaime Marquínez Ferrándiz
755eb0320e
[youtube] use itertools.count instead of a "while True" loop and a manual counter
11 years ago
Jaime Marquínez Ferrándiz
43ba5456b1
[youtube] add an extractor for the "Watch Later" list
11 years ago
Philipp Hagemeister
156d5ad6da
release 2013.07.24.2
11 years ago
Jaime Marquínez Ferrándiz
c626a3d9fa
Add an extractor for downloading the Youtube favorite videos( closes #127 )
11 years ago
Jaime Marquínez Ferrándiz
b2e8bc1b20
YoutubeIE: Move the code from _real_initialize to a base class
...
This allows to reuse the code in other IEs without having to overwrite some parts.
11 years ago
Jaime Marquínez Ferrándiz
771822ebb8
YoutubePlaylistIE: break only if there's no entry field in the response
...
Otherwise the Favorite videos playlist cannot be downloaded complete.
Also break if it reach the maximum value of the start-index.
11 years ago
Jaime Marquínez Ferrándiz
eb6a41ba0f
ExfmIE: extract Soundcloud songs using SoundcloudIE
...
Now SouncloudIE accepts api urls.
11 years ago
Jaime Marquínez Ferrándiz
7d2392691c
[soundcloud]: Some improvements
...
Extract thumbnails.
Make SoundcloudSetIE a subclass of SoundcloudIE to reuse some code.
Directly extract the file url without downloading an extra page.
11 years ago
Philipp Hagemeister
c216c1894d
release 2013.07.24.1
11 years ago
Jaime Marquínez Ferrándiz
a052c1d785
Merge pull request #1114 from alexvh/traileraddict_hd
...
[traileraddict] Obtain hd quality stream if available
Updated md5 checksum of the test video.
11 years ago
Jaime Marquínez Ferrándiz
16484d4923
[traileraddict]: Support clips urls and more trailer urls
11 years ago
Jaime Marquínez Ferrándiz
32a09b4382
Merge pull request #1113 from alexvh/master
...
[traileraddict] Allow all types of trailer URLs
11 years ago
Philipp Hagemeister
870a7e6156
release 2013.07.24
11 years ago
patrickslin
239e3e0cca
YoutubeIE: new algo for length 87 ( fixes #1105 )
...
Squashed commit from the pull requests #1107 , #1109 and #1110 .
11 years ago
Alex Van't Hof
b1ca5e3ffa
[traileraddict] Obtain hd quality stream if available
...
No clear method for determining if hd is available so opted to just
check for presence of hd toggle function.
11 years ago
Alex Van't Hof
b9a1252c96
[traileraddict] Allow all types of trailer URLs
...
Valid url regex for traileraddict.com is too strict. Need to allow,
e.g. theatrical-trailer, teaser-trailer, feature-read-band-trailer, etc.
11 years ago
Philipp Hagemeister
fc492de31d
release 2013.07.23.1
11 years ago
Philipp Hagemeister
a9c0f9bc63
Merge branch 'master' of github.com:rg3/youtube-dl
11 years ago
Philipp Hagemeister
b7cc9f5026
[soundcloud] Support URLs with a slash at the end ( Fixes #1104 )
11 years ago
Jaime Marquínez Ferrándiz
252580c561
YoutubeChannelE: switch ajax query from channel_ajax to c4_browse_ajax
...
It wasn't detecting when there aren't more videos
11 years ago
Jaime Marquínez Ferrándiz
acc47c1a3f
Mark WatIE and TF1IE as broken (related #1103 )
11 years ago
Jaime Marquínez Ferrándiz
70fa830e4d
CollegeHumorIE: support Youtube videos and embed urls ( fixes #1094 )
11 years ago
Philipp Hagemeister
a7af0ebaf5
release 2013.07.23
11 years ago
Jaime Marquínez Ferrándiz
67ae7b4760
Fix BreakIE
...
Also detect videos that come from Youtube
11 years ago
Jaime Marquínez Ferrándiz
de48addae2
Fix CollegHumorIE
...
Now it downloads the video over http in one file, it doesn't downloads in fragments
Added a test and use the methods in InfoExtractor for downloading webpages
11 years ago
Jaime Marquínez Ferrándiz
ddbfd0f0c5
ComedyCentralIE: support the extended interviews urls ( fixes #1079 )
11 years ago
Jaime Marquínez Ferrándiz
d7ae0639b4
[youtube] Add an extractor for Youtube recommended videos (":ytrec" keyword) ( closes #476 )
...
The new extractor and YoutubeSubscriptionsIE are subclasses of YoutubeFeedsInfoExtractor, which allows to fetch videos from http://www.youtube.com/feed_ajax
11 years ago
Jaime Marquínez Ferrándiz
6804038d06
Don't try to write the subtitles if it's None
11 years ago
Jaime Marquínez Ferrándiz
2f799533ae
YoutubeIE: don't crash when trying to get automatic captions if the videos has standard subtitles.
11 years ago
Jaime Marquínez Ferrándiz
88ae5991cd
YoutubeIE: use the same function for getting the subtitles for the "--write-sub" and "--all-sub" options
11 years ago
Jaime Marquínez Ferrándiz
5d51a883c2
Use a dictionary for storing the subtitles
...
The errors while getting the subtitles are reported as warnings, if no subtitles are found return and empty dict.
11 years ago
Jaime Marquínez Ferrándiz
c4a91be726
Save subtitles using the same code for all the options
11 years ago
Philipp Hagemeister
0382435990
[exfm] Add IE_* descriptions
11 years ago
Philipp Hagemeister
b390d85d95
Merge remote-tracking branch 'yasoob/master'
11 years ago
Philipp Hagemeister
be925dc64c
release 2013.07.19
11 years ago
Jaime Marquínez Ferrándiz
de7a91bfe3
WeiboIE: extract the player urls from a json webpage
...
Also extract a Sina url that doesn't require to follow a redirection.
11 years ago
Jaime Marquínez Ferrándiz
a4358cbabd
YoutubeIE: new algo for length 85 ( closes #1080 ), thanks to @patrickslin
11 years ago
Jaime Marquínez Ferrándiz
177ed935a9
TEDIE: fix the title extraction
11 years ago
Jaime Marquínez Ferrándiz
c364f15ff1
Add WeiboIE ( closes #1039 )
...
It just embed video from other sites.
Modified the _VALID_URL of Youku to catch embed urls.
11 years ago
Jaime Marquínez Ferrándiz
e1f6e61e6a
Add an extractor for 56.com (related #1039 )
11 years ago
Jaime Marquínez Ferrándiz
0932300e3a
Add SinaIE (related #1039 ): extractor for video.sina.com.cn
11 years ago
Jaime Marquínez Ferrándiz
3f40217704
InstagramIE: fix the extraction of the uploader_id and the title
...
The page title is now 'Instagram', so we build it.
Also extract the description
11 years ago
Philipp Hagemeister
f631c3311a
Hint that --update may need sudo
11 years ago
Philipp Hagemeister
ad433bb372
release 2013.07.18
11 years ago
Jaime Marquínez Ferrándiz
444b116597
YoutubeIE: add algo for length 90 ( closes #1064 )
...
Order the cases from higher to lower length.
11 years ago
M.Yasoob Khalid
8e5e059d7d
forgot to import json json
11 years ago
M.Yasoob Khalid
2b1b511f6b
removed some unnecessary imports
11 years ago
M.Yasoob Khalid
233ad24ecf
corrected a typo and added myself to travis notifications.
11 years ago
M.Yasoob Khalid
c4949c50f9
added test for ex.fm
11 years ago
M.Yasoob Khalid
b6ef402905
added an IE for ex.fm
11 years ago
Jaime Marquínez Ferrándiz
e1fb245690
Add CondeNastIE
...
It supports some of the websites of the Condé Nast group: WIRED, GQ, Vogue, Glamour, W Magazine and Vanity Fair.
11 years ago
Jaime Marquínez Ferrándiz
5a76c6517e
YoutubeIE: some encrypted signatures have more than two parts, print the size of all the parts
11 years ago
Philipp Hagemeister
1bb9568776
release 2013.07.17.1
11 years ago
Philipp Hagemeister
ecd1c2f7e9
[thisav] add a test for video MD5
11 years ago
Philipp Hagemeister
466de68801
[thisav] Add IE ( Fixes #1056 )
11 years ago
Philipp Hagemeister
88d4111cfa
[youtube] Add code for signature 92 ( Closes #1060 )
11 years ago
Philipp Hagemeister
be547e1d3b
Revert "[youtube] improved decrypt_signature, closes #1060"
...
This reverts commit fe6fad1242
and closes #1066 .
11 years ago
Philipp Hagemeister
bf85454116
[metacafe] Fix test
11 years ago
Philipp Hagemeister
5910724b11
[metacafe] New result format
11 years ago
Philipp Hagemeister
7e24b09da9
[metacafe] Extract description
11 years ago
Philipp Hagemeister
f085f960e7
[metacafe] Fix uploader detection
11 years ago
Philipp Hagemeister
f38de77f6e
Use unescapeHTML for OpenGraph properties
...
These are attribute values, so we don't need the more complex and whitespace-destroying cleanHTML - we just need to unescape quotes, that's it.
11 years ago
Anton Novosyolov
fe6fad1242
[youtube] improved decrypt_signature, closes #1060
11 years ago
Philipp Hagemeister
ec00e1d8a0
[metacafe] Use modern helper methods
11 years ago
Philipp Hagemeister
de29c4144e
Ignore errors in git error handling in verbose mode in Python 3
11 years ago
Philipp Hagemeister
f3bab0044e
Write debugging output to stderr ( #1059 )
11 years ago
Philipp Hagemeister
ffd1833b87
release 2013.07.17
11 years ago
Philipp Hagemeister
896d5b63e8
[metacafe] Add support for AnyClip videos ( #1059 )
11 years ago
Jaime Marquínez Ferrándiz
67de24e449
[freesound] Minor improvements
11 years ago
Jaime Marquínez Ferrándiz
66400c470c
Merge pull request #1050 from yasoob/master
...
Added an IE and test for Freesound.org .
11 years ago
M.Yasoob Khalid
7665010267
added test for freesound.org
11 years ago
M.Yasoob Khalid
5d9b75051a
Added an IE for freesound.org
11 years ago
Jaime Marquínez Ferrándiz
ab2f744b90
GametrailersIE: make it a subclass of MTVIE to reuse most of the extraction process
11 years ago
Jaime Marquínez Ferrándiz
300fcad8a6
MTVIE: fix xml tags in the media namespace (python2.6)
11 years ago
Jaime Marquínez Ferrándiz
f7e025958a
[mtv]: rework MTVIE and add tests ( closes #913 )
...
It uses the same system as ComedyCentralIE to transform ramp urls into http.
11 years ago
Jaime Marquínez Ferrándiz
0ab5531363
[livestream] fix import statement
11 years ago
Jaime Marquínez Ferrándiz
b4444d5ca2
Add LivestreamIE ( closes #1042 )
11 years ago
alphapapa
0025da15cf
Clarify that download rate is in bytes per second
...
I found f918ec7ea2
but it is still not clear to anyone who hasn't read Issue #723 whether the limit is in bits or bytes. This is doubly confusing because 1) ISPs usually advertise speeds in bits per second, and 2) lowercase "k" and "m" are often used in correlation with bits rather than bytes.
11 years ago
Philipp Hagemeister
b9d3e1635f
Strip hash info from URL when making requests ( Fixes #1038 )
11 years ago
Philipp Hagemeister
aa6b734e02
[instagram] really fix uploader_id detection ( Fixes #1038 )
11 years ago
Philipp Hagemeister
73b57f0ccb
[instagram] fix uploader_id detection ( Fixes #1038 )
11 years ago
Philipp Hagemeister
3c4e6d8337
Improve OpenGraph property matching
11 years ago
Philipp Hagemeister
36034aecc2
Merge remote-tracking branch 'jaimeMF/opengraph'
11 years ago
Jaime Marquínez Ferrándiz
ffca4b5c32
Add CanalplusIE ( closes #59 and closes #918 )
11 years ago
Jaime Marquínez Ferrándiz
b0e72bcf34
CriterionIE: simplify some parts and use _html_search_regex
11 years ago
Jaime Marquínez Ferrándiz
7fd930c0c8
Merge pull request #1036 from yasoob/master
...
Added an IE and test for Criterion videos (closes #1035 ).
11 years ago
Jaime Marquínez Ferrándiz
2e78b2bead
YouJizzIE: support videos that define the urls in a playlist page ( closes #1037 )
11 years ago
Jaime Marquínez Ferrándiz
44dbe89035
Use re.DOTALL by default when searching OpenGraph properties
11 years ago
M.Yasoob Khalid
2d5a8b5512
added test for criterion.com
11 years ago
M.Yasoob Khalid
159736c1b8
added an IE for criterion.com
11 years ago
Jaime Marquínez Ferrándiz
46720279c2
InfoExtractor: add some helper methods to extract OpenGraph info
11 years ago
Jaime Marquínez Ferrándiz
d8269e1dfb
Don't try to save the thumbnail if it's None
...
It means the extractor couldn't find it
11 years ago
Jaime Marquínez Ferrándiz
cbdbb76665
Use determine_ext when saving the thumbnail
...
Urls that contain a query produced filenames with wrong extensions
11 years ago
Jaime Marquínez Ferrándiz
6543f0dca5
BrightcoveIE: Use parse_qs to extract the fields of the query ( closes #1032 )
...
Add a compat_urlparse to utils.
11 years ago
Jaime Marquínez Ferrándiz
232eb88bfe
GenericIE: allow to match declaration of the Brightocove parameters that use ' instead of "
11 years ago
Jaime Marquínez Ferrándiz
a95967f8b7
[ign]: support some country versions and add an extractor for 1up.com
...
1up.com uses the gin video system, the extractor is a subclass of IGNIE, it just replaces the video id
11 years ago
Jaime Marquínez Ferrándiz
2ef648d3d3
Add IGNIE
...
Only for www.ign.com, it doesn't support country specific versions (like es.ign.com)
11 years ago
Philipp Hagemeister
33f6830fd5
release 2013.07.12
11 years ago
Jaime Marquínez Ferrándiz
606d7e67fd
YoutubeIE: add algo for length 81 ( closes #1026 )
11 years ago
Philipp Hagemeister
fd87ff26b9
release 2013.07.11
11 years ago