aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/FileDownloader.py
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | 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
| | | |
| * | | Added new option '--sub-format' to choose the format of the subtitles to ↵Ismael Mejia2013-03-201-3/+6
| | | | | | | | | | | | | | | | downloade (defaut=srt)
| * | | Refactor subtitle options from srt to the more generic 'sub'.Ismael Mejia2013-03-201-13/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
| * | | Added new option '--all-srt' to download all the subtitles of a video.Ismael Mejia2013-03-201-6/+22
| | | | | | | | | | | | | | | | Only works in youtube for the moment.
| * | | Added new option '--only-srt' to download only the subtitles of a videoIsmael Mejia2013-02-211-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | Improved option '--srt-lang' - it shows the argument in case of missing subtitles - added language suffix for non-english languages (e.g. video.it.srt)
* | | | Clear up error messages (#734)Philipp Hagemeister2013-03-081-2/+5
| |/ / |/| |
* | | Fix Python 3 errors with rmtp downloadsPhilipp Hagemeister2013-03-031-1/+1
| | |
* | | Use color when printing warning messagesJaime Marquínez Ferrándiz2013-02-281-4/+16
| |/ |/|
* | Message for delete video it's not an error.Juan M2013-02-231-1/+1
|/ | | | | | | | | When using youtube-dl from another python script with the quiet option on, and a post procesor for extract the audio. The message of deleting video shows in the first script logs (as it goes to stderr). There is no way to keep this quiet as it's treated as an error, even if, for me, it's not.
* Fix --match-title and --reject-title decoding (Closes #690)Philipp Hagemeister2013-02-211-2/+0
|
* Correct --newline and give it a more meaningful titlePhilipp Hagemeister2013-02-181-2/+3
|
* Forgot to remove \rGino Lisignoli2013-02-131-1/+1
|
* Modified youtube-dl to write new lines with the --newline switch. ThisGino Lisignoli2013-02-131-1/+4
| | | | | enables easier process monitoring when being called with external scripts.
* Fix delayed title display in --console-titleMantas Mikulėnas2013-02-091-1/+1
| | | | | | With Python 3, the titlebar wouldn't get updated for a long time (due to stderr buffering), and when it did, the title would be shown as b'...' representation.
* Added "min-filesize" and "max-filesize" optionsJeff Crouse2013-02-011-0/+11
|
* Download progress hooksPhilipp Hagemeister2013-01-121-1/+52
|
* Proper support for changing User-Agents from IEsPhilipp Hagemeister2013-01-121-0/+2
|
* Keep file without any PPs (oops, missed the obvious case)Philipp Hagemeister2013-01-121-1/+1
|
* --recode-video option (Closes #18)Philipp Hagemeister2013-01-121-4/+19
|
* Support page URL in RTMP downloadsPhilipp Hagemeister2013-01-031-4/+9
|
* Make ExtractorError usable for other causesPhilipp Hagemeister2013-01-031-2/+5
|
* ExtractorError for errors during extractionPhilipp Hagemeister2013-01-011-5/+17
|
* Ok, the Escapist test was passing only in my Travis repo, do not ask me why; ↵Filippo Valsorda2012-12-311-1/+1
| | | | also, a small bugfix to the latest commit
* three small editsFilippo Valsorda2012-12-311-0/+4
| | | | | | * ask for a --verbose log when reporting bugs in README.md * re-enable Escapist test, seems stable now * check that we are not downloading multiple videos when the template is fixed (NOT a complete fix: not detecting playlists)
* some py3 fixes, both needed and recommended; we should pass 2to3 as cleanly ↵Filippo Valsorda2012-12-201-5/+2
| | | | as possible now
* Clean up legacy codePhilipp Hagemeister2012-12-201-5/+2
|
* Remove legacy codePhilipp Hagemeister2012-12-201-5/+0
|
* Correct JSON writing (Closes #596)Philipp Hagemeister2012-12-201-3/+2
|
* Remove some antipatterns and ensure that we always write the JSON file with ↵Philipp Hagemeister2012-12-171-5/+3
| | | | UTF-8
* various py3 fixes; all tests green on 3.3Filippo Valsorda2012-12-171-2/+2
|
* print traceback on trouble if --verbose (why didn't I think of this before!?)Filippo Valsorda2012-12-111-0/+3
|
* added a test mode to FileDownloader that fetches only first 10KFilippo Valsorda2012-12-111-0/+4
|
* Keep video IDs verbatim if possible (Closes #571)Philipp Hagemeister2012-12-031-2/+5
|
* Correct exception raisingPhilipp Hagemeister2012-11-281-1/+1
|
* Use relative importsPhilipp Hagemeister2012-11-281-1/+3
|
* Convert all tabs to 4 spaces (PEP8)Philipp Hagemeister2012-11-281-699/+699
|
* Remove superfluous encodingsPhilipp Hagemeister2012-11-281-6/+6
|
* Fix printing title etc.Philipp Hagemeister2012-11-281-6/+6
|
* correct to_stderrPhilipp Hagemeister2012-11-281-1/+4
|
* Py2/3 compatibility for http.clientPhilipp Hagemeister2012-11-281-2/+1
|
* Remove ur references for Python 3.3 supportPhilipp Hagemeister2012-11-271-1/+1
|
* Prepare urllib references for 2/3 compatibilityPhilipp Hagemeister2012-11-271-8/+7
|
* Use except .. as everywhere (#180)Philipp Hagemeister2012-11-271-12/+12
|
* Rename util.u to util.compat_strPhilipp Hagemeister2012-11-271-2/+2
|
* Merge remote-tracking branch 'origin/master' into IE_cleanupFilippo Valsorda2012-11-271-12/+18
|\ | | | | | | | | Conflicts: youtube_dl/FileDownloader.py