aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/FileDownloader.py
AgeCommit message (Collapse)Author
2013-08-21Allow hours in ETA display (Fixes #1280)Philipp Hagemeister
2013-07-31Allow to download from m3u8 manifests with ffmpegJaime Marquínez Ferrándiz
They are detected by the extension of the url.
2013-06-26FileDownloader: fixed call to "report_error" of YoutubeDLJaime Marquínez Ferrándiz
It was being called as "error"
2013-06-24Split FileDownloader in two classes: FileDownloader and YoutubeDLJaime Marquínez Ferrándiz
YoutubeDL is the class that coordinates everything FileDownloader gets a filename and an info dict and downloads the video.
2013-06-23Remove mentions of old InfoExtractors modulePhilipp Hagemeister
2013-06-23Remove useless headersPhilipp Hagemeister
2013-06-19Ignore invalid dates (Fixes #894)Philipp Hagemeister
2013-06-10Use long rtmpdump optionsPhilipp Hagemeister
Note that we accidentally called rtmpdump with -v (--live) instead of -V (--verbose) because we missed this.
2013-06-08Set the extractor key in playlists entriesJaime Marquínez Ferrándiz
If they were videos the extractor key wasn't being set anywhere else Closes 877
2013-06-08Merge pull request #853 from mc2avr/masterJaime Marquínez Ferrándiz
add ZDFIE
2013-05-23add ZDFIE and _download_with_mplayer(mms://,rtsp://)mc2avr
2013-05-20make rtmpdump inherit the verbose option for debuggingFilippo Valsorda
2013-05-15MyVideoIE: add rtmp supportmc2avr
2013-05-14Add extra_info argument to extract_info and process_ie_resultJaime Marquínez Ferrándiz
It allows to update the info_dicts with other values (closes #840)
2013-05-13Deprecate --only-subPhilipp Hagemeister
2013-05-05added --get-id option to print video IDsjakeogh
2013-05-05FileDownloader: Simplify and documentPhilipp Hagemeister
2013-05-01add --write-thumbnail option to download thumbnail (Suggested by `)Philipp Hagemeister
2013-04-30Correctly clear the line before writing a new status linePhilipp Hagemeister
2013-04-28Use report_warning when a not working IE will be usesJaime Marquínez Ferrándiz
2013-04-27Allow to select videos to download by their upload dates (related #137)Jaime Marquínez Ferrándiz
Only absolute dates.
2013-04-23More calls to trouble changed to report_errorJaime Marquínez Ferrándiz
2013-04-23Disable colored messages in Windows (related #794)Jaime Marquínez Ferrándiz
2013-04-22Merge pull request #797 from AI0867/patch-1Philipp Hagemeister
Use standard unit symbols in format_bytes
2013-04-22Fix --list-formats (Closes #799)Philipp Hagemeister
2013-04-21Use standard unit symbols in format_bytesAlexander van Gessel
2013-04-20Allows to specify which IE should be used for extracting info for a result ↵Jaime Marquínez Ferrándiz
of type url
2013-04-19Merge branch 'extract_info_rewrite'Jaime Marquínez Ferrándiz
2013-04-18Limit titles to 200 characters (Closes #789)Philipp Hagemeister
2013-04-16Add a playlist_index key to the info_dict, can be used in the output templateJaime Marquínez Ferrándiz
2013-04-11Fix default for variable-size autonumberingPhilipp Hagemeister
2013-04-11Added option --autonumber-size:Stanislav Kupryakhin
Specifies the number of digits in %(autonumber)s when it is present in output filename template or --autonumber option is given
2013-04-10Implement the playlist/start options in FileDownloaderJaime Marquínez Ferrándiz
It makes it available for all the InfoExtractors
2013-04-10Change the order for extracting/downloadingJaime Marquínez Ferrándiz
Now it gets a video info and directly downloads it, the it pass to the next video founded.
2013-04-09Add progress counter for playlistsJaime Marquínez Ferrándiz
Closes #276
2013-04-07added --playpath/-y support to RTMP downloads (via 'play_path' entry in ↵Michael Walter
'info_dict')
2013-04-05Merge branch 'master' into extract_info_rewriteJaime Marquínez Ferrándiz
2013-03-31Don't crash in FileDownloader if subtitles couldn't be found and errors are ↵Jaime Marquínez Ferrándiz
ignored
2013-03-29Merge pull request #736 from rg3/retryFilippo Valsorda
Exception stacking and test retry
2013-03-29Pass the playlist info_dict to process_infoJaime Marquínez Ferrándiz
the playlist value can be used in the output template
2013-03-29Merge remote-tracking branch 'jaimeMF/color_error_messages'Philipp Hagemeister
2013-03-29Add a note on MaxDownloadsReached (#732, thanks to CBGoodBuddy)Philipp Hagemeister
2013-03-28Merge branch 'master' into extract_info_rewriteJaime Marquínez Ferrándiz
2013-03-20Merge pull request #699 by @iemejiaFilippo Valsorda
Removed innecesary function to convert subtitles, improved use of the youtube api
2013-03-20Added new option '--list-subs' to show the available subtitle languagesIsmael Mejia
2013-03-20Added new option '--sub-format' to choose the format of the subtitles to ↵Ismael Mejia
downloade (defaut=srt)
2013-03-20Refactor subtitle options from srt to the more generic 'sub'.Ismael Mejia
In order to be more consistent with different subtitle formats. From: * --write-srt to --write-sub * --only-srt to --only-sub * --all-srt to --all-subs * --srt-lang to --sub-lang' Refactored also all the mentions of srt for sub in all the source code.
2013-03-20Added new option '--all-srt' to download all the subtitles of a video.Ismael Mejia
Only works in youtube for the moment.
2013-03-09Bubble up all the stack of exceptions and retry download tests on timeout errorsFilippo Valsorda
2013-03-08Clear up error messages (#734)Philipp Hagemeister