aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/FileDownloader.py
Commit message (Collapse)AuthorAgeFilesLines
* Move FileDownloader to its own module and create a new class for each ↵Jaime Marquínez Ferrándiz2013-12-111-720/+8
| | | | | | | | 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
* Merge remote-tracking branch 'dstftw/smotri.com-broadcast'Philipp Hagemeister2013-12-091-7/+35
|\ | | | | | | | | | | Conflicts: youtube_dl/FileDownloader.py youtube_dl/extractor/smotri.py
| * [smotri] Add an extractor for live rtmp broadcastsdst2013-12-041-7/+42
| |
* | [FileDownloader] Fix progress report on Windows (Fixes #1918)Philipp Hagemeister2013-12-081-4/+12
| |
* | Simplify status reporting (#1918)Philipp Hagemeister2013-12-081-17/+22
|/
* Fix rtmpdump with non-ASCII filenames on Windows on 2.xPhilipp Hagemeister2013-11-251-2/+18
| | | | Reported in #1798
* [FileDownloader] use moved format_bytes methodPhilipp Hagemeister2013-11-251-1/+1
|
* Merge remote-tracking branch 'rzhxeo/rtmpdump'Philipp Hagemeister2013-11-251-7/+63
|\
| * Merge branch 'master' into rtmpdumprzhxeo2013-11-181-33/+42
| |\ | | | | | | | | | | | | | | | | | | Conflicts: youtube_dl/FileDownloader.py Merge
| * | Report download progress of rtmpdumprzhxeo2013-11-091-7/+63
| | |
* | | [zdf/common] Use API in ZDF extractor.Philipp Hagemeister2013-11-251-17/+3
| |/ |/| | | | | | | This also comes with a lot of extra format fields Fixes #1518
* | Move console_title to YoutubeDLPhilipp Hagemeister2013-11-171-14/+3
| |
* | Use avconv for downloading with m3u8 manifests if it's available (fixes #1735)Jaime Marquínez Ferrándiz2013-11-101-9/+13
| |
* | Use the 'rtmp_live' field for the live parameter of rtmpdumpJaime Marquínez Ferrándiz2013-11-101-1/+1
| |
* | Merge remote-tracking branch 'rzhxeo/rtmpdump_live'Jaime Marquínez Ferrándiz2013-11-101-2/+5
|\ \
| * | Add support for live parameter to rtmpdumprzhxeo2013-11-021-2/+5
| |/
* | Don't recode the video with m3u8 downloads (fixes #1741)Jaime Marquínez Ferrándiz2013-11-091-1/+2
| |
* | Fix the report progress when file_size is unknown (#1731)Jaime Marquínez Ferrándiz2013-11-071-5/+10
| | | | | | | | | | 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.
* | Fix reporting when file size is unkown (Fixes #1731)Philipp Hagemeister2013-11-061-1/+1
| |
* | Clean up importsPhilipp Hagemeister2013-11-061-4/+11
|/
* Make sure it only runs rtmpdump one time in test mode and return True if the ↵Jaime Marquínez Ferrándiz2013-10-111-3/+4
| | | | download can be resumed
* Remove test parameter from _download_with_rtmpdumprzhxeo2013-10-061-4/+3
|
* Only download 1 sec. with rtmpdump in test moderzhxeo2013-10-061-2/+5
|
* If the file is already downloaded include the size in the progress hookJaime Marquínez Ferrándiz2013-09-221-0/+1
|
* Include the eta and the speed in the progress hooksJaime Marquínez Ferrándiz2013-09-221-10/+35
| | | | Useful when listening to the progress hook, for example in a GUI.
* Fix the minutes part in FileDownloader.format_seconds (fixed #1397)Jaime Marquínez Ferrándiz2013-09-091-1/+1
| | | | It printed for the minutes the result of (seconds // 60)
* Show the time taken to download in the same format as the ETAJaime Marquínez Ferrándiz2013-08-281-10/+14
|
* Merge pull request #1181 from h3xx/masterJaime Marquínez Ferrándiz2013-08-281-3/+5
|\ | | | | | | | | | | Add some verbosity when reporting finished downloads Remove the mixed use of tabs and spaces for indentation.
| * Add some verbosity when reporting finished downloadsDan Church2013-08-041-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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]
* | Allow hours in ETA display (Fixes #1280)Philipp Hagemeister2013-08-211-3/+7
|/
* Allow to download from m3u8 manifests with ffmpegJaime Marquínez Ferrándiz2013-07-311-0/+33
| | | | They are detected by the extension of the url.
* 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.