summaryrefslogtreecommitdiffstats
path: root/youtube_dl/InfoExtractors.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Move YahooSearchIE to youtube_dl.extractor.yahooPhilipp Hagemeister2013-06-231-34/+1
|
* Remove useless headersPhilipp Hagemeister2013-06-231-5/+0
|
* Move GoogleSearchIE into its own filePhilipp Hagemeister2013-06-231-30/+0
|
* Move GenericIE into its own filePhilipp Hagemeister2013-06-231-139/+1
|
* Move gametrailers IE into its own filePhilipp Hagemeister2013-06-231-50/+1
|
* Move YoutubeSearchIE to the other youtube IEsPhilipp Hagemeister2013-06-231-43/+1
|
* Move ARD, Arte, ZDF into their own filesPhilipp Hagemeister2013-06-231-216/+4
|
* Move Vimeo into its own filePhilipp Hagemeister2013-06-231-124/+1
|
* Move yahoo into its own filePhilipp Hagemeister2013-06-231-68/+1
|
* Move Photobucket into its own filePhilipp Hagemeister2013-06-231-56/+1
|
* Move DailyMotion into its own filePhilipp Hagemeister2013-06-231-68/+1
|
* Move Metacafe and Statigram into their own files, and remove absolute importPhilipp Hagemeister2013-06-231-127/+2
|
* Move youtube extractors to youtube_dl.extractor.youtubePhilipp Hagemeister2013-06-231-734/+1
|
* Fix generic class move (add all files)Philipp Hagemeister2013-06-231-247/+1
|
* Improve vevo messagePhilipp Hagemeister2013-06-231-1/+1
|
* Use new signature calculation method only if sig is not presentPhilipp Hagemeister2013-06-231-1/+1
|
* Merge remote-tracking branch 'jaimeMF/vevo_fix'Philipp Hagemeister2013-06-231-0/+25
|\
| * Move the decrypting function to a static methodJaime Marquínez Ferrándiz2013-06-221-9/+13
| |
| * Detect more vevo videosJaime Marquínez Ferrándiz2013-06-221-2/+3
| |
| * YoutubeIE: Detect new Vevo style videosJaime Marquínez Ferrándiz2013-06-211-0/+20
| | | | | | | | The url_encoded_fmt_stream_map can be found in the video page, but the signature must be decrypted, we get it from the webpage instead of the `get_video_info` pages because we have only discover the algorithm for keys with both sub keys of size 43.
* | [Statigr.am] Correct uploader idPhilipp Hagemeister2013-06-231-3/+3
| |
* | Merge remote-tracking branch 'origin/vimeo_passworded_videos'Philipp Hagemeister2013-06-231-0/+23
|\ \
| * | VimeoIE: allow to download password protected videosJaime Marquínez Ferrándiz2013-06-151-0/+23
| | |
* | | Improve Statigr.am IEPhilipp Hagemeister2013-06-231-9/+17
| | |
* | | added StatigrIEM.Yasoob Khalid2013-06-231-1/+0
| | |
* | | added StatigrIEM.Yasoob Khalid2013-06-231-0/+25
| | |
* | | GenericIE: look for Open Graph infoJaime Marquínez Ferrándiz2013-06-231-0/+7
| | | | | | | | | | | | Only if there is a direct link to the file, don't try if it points to a Flash player
* | | YoutubeIE: report warnings instead of errors if the subtitles are not found ↵Jaime Marquínez Ferrándiz2013-06-221-2/+2
| | | | | | | | | | | | | | | | | | (related #901) For example when downloading a playlist some videos may not have subtitles but the download shouldn't stop.
* | | Merge pull request #888 from rg3/youtube_playlists_fix_886Jaime Marquínez Ferrándiz2013-06-221-3/+4
|\ \ \ | | | | | | | | YoutubePlaylistIE: try to extract the url of the entries from the media$group dictionary (closes #886)
| * | | YoutubePlaylistIE: don't look into entry['content']['src'], accruing to the ↵Jaime Marquínez Ferrándiz2013-06-221-5/+0
| | | | | | | | | | | | | | | | docs this can return live stream urls
| * | | YoutubePlaylistIE: try to extract the url of the entries from the ↵Jaime Marquínez Ferrándiz2013-06-201-3/+9
| | | | | | | | | | | | | | | | | | | | | | | | media$group dictionary Extracting it from content can return rtsp urls.
* | | | YoutubeIE: If not subtitles language is given default to English for ↵Jaime Marquínez Ferrándiz2013-06-221-1/+1
| |_|/ |/| | | | | | | | automatic captions (related #901)
* | | Leave out sig if not present (#896)Philipp Hagemeister2013-06-211-2/+5
| | |
* | | TEDIE: download the best quality video and use the new _search_regex functionsJaime Marquínez Ferrándiz2013-06-201-24/+20
|/ / | | | | | | Also extracts the description.
* | RBMARadioIE: fix the extraction of the JSON dataJaime Marquínez Ferrándiz2013-06-201-2/+2
| |
* | DailymotionIE: fix the extraction of the video uploader and use ↵Jaime Marquínez Ferrándiz2013-06-201-10/+4
| | | | | | | | _search_regex for getting it
* | Revert "Fix GooglePlusIE: the video_page url has changed of place"Jaime Marquínez Ferrándiz2013-06-201-1/+1
| | | | | | | | | | | | The old method is working again. This reverts commit 449d5c910cefdbfdfc5aa13d682dc46988a5318e.
* | SteamIE: only verify the age if neededJaime Marquínez Ferrándiz2013-06-201-4/+14
| | | | | | | | Also use the _html_search_regex function
* | Merge pull request #887 from anisse/masterJaime Marquínez Ferrándiz2013-06-191-1/+1
|\ \ | | | | | | | | | | | | | | | Fetch all entries that are in a youtube playlist Also add a test.
| * | YoutubePlaylistIE: get *all* videosAnisse Astier2013-06-131-1/+1
| |/ | | | | | | | | | | | | | | | | | | For that, we add parameter safeSearch=none that asks youtube not filter results before sending them to us. Note: this parameter could be added to YoutubeSearchIE and YoutubeUserIE as well, but I don't know what would be the impact in term of unwanted results. Maybe expose that as a parameter? For a playlist it's different since the user chose what she put in the playlist.
* | Fix GooglePlusIE: the video_page url has changed of placeJaime Marquínez Ferrándiz2013-06-181-1/+1
| |
* | add _search_regex to the new IEsFilippo Valsorda2013-06-171-10/+8
| |
* | Merge branch 'search_regex' - PR #872 - closes #847Filippo Valsorda2013-06-171-458/+318
|\ \
| * | use _search_regex in GenericIEFilippo Valsorda2013-06-171-8/+4
| | |
| * | test: extend the reach of info_dict checkingFilippo Valsorda2013-06-091-7/+10
| | | | | | | | | | | | | | | | | | | | | * print the info_dict in a format suitable to easy adding to tests.json during tests if un-tested fields are detected * make it possible to put the crc32 in tests.json if the field is too long * complete the "info_dict" fields in existing tests * fixed the bugs catched doing this
| * | _html_search_regex with clean_html superpowersFilippo Valsorda2013-06-091-80/+71
| | |
| * | print "please report this issue on GitHub" on every ExtractorErrorFilippo Valsorda2013-06-081-2/+1
| | |
| * | XHamster: Can't see the description anywhere in the UIFilippo Valsorda2013-06-071-4/+5
| | |
| * | use search_regex in new IEsFilippo Valsorda2013-06-071-28/+22
| | |
| * | raise exceptions on warnings during tests - and solve a couple of themFilippo Valsorda2013-06-071-20/+21
| | |