aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/FileDownloader.py
Commit message (Collapse)AuthorAgeFilesLines
* FileDownloader: fixed call to "report_error" of YoutubeDLJaime Marquínez Ferrándiz2013-06-261-1/+1
| | | | It was being called as "error"
* Split FileDownloader in two classes: FileDownloader and YoutubeDLJaime Marquínez Ferrándiz2013-06-241-528/+14
| | | | | YoutubeDL is the class that coordinates everything FileDownloader gets a filename and an info dict and downloads the video.
* Remove mentions of old InfoExtractors modulePhilipp Hagemeister2013-06-231-1/+1
|
* Remove useless headersPhilipp Hagemeister2013-06-231-5/+0
|
* Ignore invalid dates (Fixes #894)Philipp Hagemeister2013-06-191-0/+3
|
* Use long rtmpdump optionsPhilipp Hagemeister2013-06-101-5/+5
| | | | Note that we accidentally called rtmpdump with -v (--live) instead of -V (--verbose) because we missed this.
* Set the extractor key in playlists entriesJaime Marquínez Ferrándiz2013-06-081-0/+5
| | | | | If they were videos the extractor key wasn't being set anywhere else Closes 877
* Merge pull request #853 from mc2avr/masterJaime Marquínez Ferrándiz2013-06-081-0/+35
|\ | | | | | | add ZDFIE
| * add ZDFIE and _download_with_mplayer(mms://,rtsp://)mc2avr2013-05-231-0/+37
|/
* make rtmpdump inherit the verbose option for debuggingFilippo Valsorda2013-05-201-0/+1
|
* MyVideoIE: add rtmp supportmc2avr2013-05-151-2/+5
|
* Add extra_info argument to extract_info and process_ie_resultJaime Marquínez Ferrándiz2013-05-141-6/+20
| | | | | | It allows to update the info_dicts with other values (closes #840)
* Deprecate --only-subPhilipp Hagemeister2013-05-131-6/+2
|
* added --get-id option to print video IDsjakeogh2013-05-051-0/+3
|
* FileDownloader: Simplify and documentPhilipp Hagemeister2013-05-051-52/+51
|
* add --write-thumbnail option to download thumbnail (Suggested by `)Philipp Hagemeister2013-05-011-0/+16
|
* Correctly clear the line before writing a new status linePhilipp Hagemeister2013-04-301-2/+3
|
* Use report_warning when a not working IE will be usesJaime Marquínez Ferrándiz2013-04-281-1/+1
|
* Allow to select videos to download by their upload dates (related #137)Jaime Marquínez Ferrándiz2013-04-271-0/+6
| | | | Only absolute dates.
* More calls to trouble changed to report_errorJaime Marquínez Ferrándiz2013-04-231-7/+7
|
* Disable colored messages in Windows (related #794)Jaime Marquínez Ferrándiz2013-04-231-2/+2
|
* Merge pull request #797 from AI0867/patch-1Philipp Hagemeister2013-04-221-1/+1
|\ | | | | Use standard unit symbols in format_bytes
| * Use standard unit symbols in format_bytesAlexander van Gessel2013-04-211-1/+1
| |
* | Fix --list-formats (Closes #799)Philipp Hagemeister2013-04-221-0/+2
|/
* Allows to specify which IE should be used for extracting info for a result ↵Jaime Marquínez Ferrándiz2013-04-201-3/+14
| | | | of type url
* Merge branch 'extract_info_rewrite'Jaime Marquínez Ferrándiz2013-04-191-47/+110
|\
| * Add a playlist_index key to the info_dict, can be used in the output templateJaime Marquínez Ferrándiz2013-04-161-0/+4
| |
| * Implement the playlist/start options in FileDownloaderJaime Marquínez Ferrándiz2013-04-101-3/+18
| | | | | | | | It makes it available for all the InfoExtractors
| * Change the order for extracting/downloadingJaime Marquínez Ferrándiz2013-04-101-50/+53
| | | | | | | | Now it gets a video info and directly downloads it, the it pass to the next video founded.
| * Add progress counter for playlistsJaime Marquínez Ferrándiz2013-04-091-1/+3
| | | | | | | | Closes #276
| * Merge branch 'master' into extract_info_rewriteJaime Marquínez Ferrándiz2013-04-051-32/+66
| |\
| * | Pass the playlist info_dict to process_infoJaime Marquínez Ferrándiz2013-03-291-1/+10
| | | | | | | | | | | | the playlist value can be used in the output template
| * | Merge branch 'master' into extract_info_rewriteJaime Marquínez Ferrándiz2013-03-281-9/+37
| |\ \
| * | | `extract_info` now expects `ie.extract` to return a list in the format ↵Jaime Marquínez Ferrándiz2013-03-051-6/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | proposed in issue 608. Each element should have a '_type' key specifying if it's a video, an url or a playlist. `extract_info` will process each element to get the full info
| * | | Merge branch 'master' into extract_info_rewriteJaime Marquínez Ferrándiz2013-03-041-3/+15
| |\ \ \
| * | | | Add a method for extracting info from a list of urlsJaime Marquínez Ferrándiz2013-03-041-0/+8
| | | | |
| * | | | Create extract_info methodJaime Marquínez Ferrándiz2013-02-261-41/+44
| | | | |
* | | | | Limit titles to 200 characters (Closes #789)Philipp Hagemeister2013-04-181-0/+4
| | | | |
* | | | | Fix default for variable-size autonumberingPhilipp Hagemeister2013-04-111-1/+3
| | | | |
* | | | | Added option --autonumber-size:Stanislav Kupryakhin2013-04-111-1/+3
| | | | | | | | | | | | | | | | | | | | Specifies the number of digits in %(autonumber)s when it is present in output filename template or --autonumber option is given
* | | | | added --playpath/-y support to RTMP downloads (via 'play_path' entry in ↵Michael Walter2013-04-071-2/+5
| |_|_|/ |/| | | | | | | | | | | 'info_dict')
* | | | Don't crash in FileDownloader if subtitles couldn't be found and errors are ↵Jaime Marquínez Ferrándiz2013-03-311-16/+22
| | | | | | | | | | | | | | | | ignored
* | | | Merge pull request #736 from rg3/retryFilippo Valsorda2013-03-291-3/+13
|\ \ \ \ | | | | | | | | | | Exception stacking and test retry
| * | | | Bubble up all the stack of exceptions and retry download tests on timeout errorsFilippo Valsorda2013-03-091-3/+13
| | | | |
* | | | | Merge remote-tracking branch 'jaimeMF/color_error_messages'Philipp Hagemeister2013-03-291-17/+33
|\ \ \ \ \
| * | | | | Use report_error in FileDownloader.pyJaime Marquínez Ferrándiz2013-03-041-18/+22
| | | | | |
| * | | | | Use red color when printing error messagesJaime Marquínez Ferrándiz2013-03-041-0/+12
| | |_|/ / | |/| | |
* | | | | Add a note on MaxDownloadsReached (#732, thanks to CBGoodBuddy)Philipp Hagemeister2013-03-291-0/+3
| |_|_|/ |/| | |
* | | | Merge pull request #699 by @iemejiaFilippo Valsorda2013-03-201-7/+32
|\ \ \ \ | |_|/ / |/| | | | | | | Removed innecesary function to convert subtitles, improved use of the youtube api
| * | | Added new option '--list-subs' to show the available subtitle languagesIsmael Mejia2013-03-201-0/+1
| | | |