aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/FileDownloader.py
AgeCommit message (Collapse)Author
2013-12-11Move FileDownloader to its own module and create a new class for each ↵Jaime Marquínez Ferrándiz
download process A suitable downloader can be found using the 'get_suitable_downloader' function. Each subclass implements 'real_download', for downloading an info dict you call the 'download' method, which first checks if the video has already been downloaded
2013-12-09Merge remote-tracking branch 'dstftw/smotri.com-broadcast'Philipp Hagemeister
Conflicts: youtube_dl/FileDownloader.py youtube_dl/extractor/smotri.py
2013-12-08[FileDownloader] Fix progress report on Windows (Fixes #1918)Philipp Hagemeister
2013-12-08Simplify status reporting (#1918)Philipp Hagemeister
2013-12-04[smotri] Add an extractor for live rtmp broadcastsdst
2013-11-25Fix rtmpdump with non-ASCII filenames on Windows on 2.xPhilipp Hagemeister
Reported in #1798
2013-11-25[FileDownloader] use moved format_bytes methodPhilipp Hagemeister
2013-11-25Merge remote-tracking branch 'rzhxeo/rtmpdump'Philipp Hagemeister
2013-11-25[zdf/common] Use API in ZDF extractor.Philipp Hagemeister
This also comes with a lot of extra format fields Fixes #1518
2013-11-18Merge branch 'master' into rtmpdumprzhxeo
Conflicts: youtube_dl/FileDownloader.py Merge
2013-11-17Move console_title to YoutubeDLPhilipp Hagemeister
2013-11-10Use avconv for downloading with m3u8 manifests if it's available (fixes #1735)Jaime Marquínez Ferrándiz
2013-11-10 Use the 'rtmp_live' field for the live parameter of rtmpdumpJaime Marquínez Ferrándiz
2013-11-10Merge remote-tracking branch 'rzhxeo/rtmpdump_live'Jaime Marquínez Ferrándiz
2013-11-09Don't recode the video with m3u8 downloads (fixes #1741)Jaime Marquínez Ferrándiz
2013-11-09Report download progress of rtmpdumprzhxeo
2013-11-07Fix the report progress when file_size is unknown (#1731)Jaime Marquínez Ferrándiz
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.
2013-11-06Fix reporting when file size is unkown (Fixes #1731)Philipp Hagemeister
2013-11-06Clean up importsPhilipp Hagemeister
2013-11-02Add support for live parameter to rtmpdumprzhxeo
2013-10-11Make sure it only runs rtmpdump one time in test mode and return True if the ↵Jaime Marquínez Ferrándiz
download can be resumed
2013-10-06Remove test parameter from _download_with_rtmpdumprzhxeo
2013-10-06Only download 1 sec. with rtmpdump in test moderzhxeo
2013-09-22If the file is already downloaded include the size in the progress hookJaime Marquínez Ferrándiz
2013-09-22Include the eta and the speed in the progress hooksJaime Marquínez Ferrándiz
Useful when listening to the progress hook, for example in a GUI.
2013-09-09Fix the minutes part in FileDownloader.format_seconds (fixed #1397)Jaime Marquínez Ferrándiz
It printed for the minutes the result of (seconds // 60)
2013-08-28Show the time taken to download in the same format as the ETAJaime Marquínez Ferrándiz
2013-08-28Merge pull request #1181 from h3xx/masterJaime Marquínez Ferrándiz
Add some verbosity when reporting finished downloads Remove the mixed use of tabs and spaces for indentation.
2013-08-21Allow hours in ETA display (Fixes #1280)Philipp Hagemeister
2013-08-04Add some verbosity when reporting finished downloadsDan Church
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]
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.