summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | Split some long linesRicardo Garcia2011-01-281-6/+12
| |
* | Make the file timestamp feature optionalRicardo Garcia2011-01-281-8/+26
| |
* | Set downloaded file's time stamp from last-modified headerGergely Imreh2011-01-281-0/+18
| | | | | | | | | | | | | | | | This file stamp setting is very relaxed. If there's any problem along the way (no last-modified header, bad time string format, no time set privileges,...) or if nothing is downloaded (e.g. using resumed download but the file was already complete) then nothing is done.
* | New option --get-filename to print output filenameGergely Imreh2011-01-261-9/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When using youtube-dl within scripts, it is very useful to know what will be the final output filename with all the title settings and filename templates applied. Add option to the quiet mode operations to print that info. For this I had to move the filename-generation into its own function. As much as I can tell it should work almost always well, ie. not to break things if one not actually interested in the title, like in case of other forced printing. That is, unless there's an invalid system charset or the user specified a wrong output template. In that case probably could be assumed that the user does have a problem (the former) or did want to mess with the filename (the latter). Signed-off-by: Gergely Imreh <imrehg@gmail.com>
* | Support for youtube.com/embed/XXXXX URLs (closes #63)Lionel Elie Mamane2011-01-251-1/+1
| |
* | Fix omission of Witold Baryluk as the Dailymotion InfoExtractor authorRicardo Garcia2011-01-211-0/+1
| |
* | Fix dailymotion support (closes #60)Ricardo Garcia2011-01-211-1/+1
| |
* | Improve addinfourl_wrapper for compatibility with older Python versionsRicardo Garcia2011-01-201-1/+3
| |
* | Wrap call to addinfourl for compatibility with Python 2.4Ricardo Garcia2011-01-181-2/+8
| |
* | Omit code argument in addinfourl for Python 2.4Ricardo Garcia2011-01-181-2/+2
| |
* | Make the self-updating function a bit more robustRicardo Garcia2011-01-121-9/+15
| |
* | Add support for embedded YouTube playist URLs (closes #54)Ricardo Garcia2011-01-121-1/+1
| |
* | Fix "unable to rename file" Windows error (closes #56)Ricardo Garcia2011-01-121-0/+6
| |
* | Add proper support for "gzip" and "deflate" encodingsRicardo Garcia2011-01-121-17/+72
| |
* | Fix bug in regular expression for youtu.be linksRicardo Garcia2011-01-101-1/+1
| |
* | Add --no-part option (closes #48)Ricardo Garcia2011-01-071-10/+14
| |
* | Remove trailing whitespaceRicardo Garcia2011-01-071-41/+41
| |
* | Added --console-title to display download progress in console window title.Mantas Mikulėnas2011-01-041-0/+18
| | | | | | | | This uses SetConsoleTitle() Win32 API for Windows Console, and Xterm escape sequence otherwise.
* | Add --dump-user-agent option (patch provided by Benjamin Johnson)Ricardo Garcia2011-01-031-0/+7
| |
* | Print new line before a few error messagesRicardo Garcia2011-01-031-7/+7
| |
* | Request page compression by default, like Firefox doesRicardo Garcia2010-12-161-0/+1
| |
* | Take into account resume_len when calculating speed and ETARicardo Garcia2010-12-151-7/+6
| |
* | Fix erroneous "content too short" error messageRicardo Garcia2010-12-121-1/+1
| |
* | Remove deprecated -b option and nonworking -m option (closes #39)Ricardo Garcia2010-12-111-6/+0
| |
* | Stop attempting to use get_video and detect missing formats ourselvesRicardo Garcia2010-12-111-6/+6
| |
* | Do not use 0% as the starting point in resumed downloads (closes #40)Ricardo Garcia2010-12-111-1/+3
| |
* | Fix problem when requesting an existing format explicitly with -fRicardo Garcia2010-12-091-4/+7
| |
* | Bump version numberRicardo Garcia2010-12-092-2/+2
| |
* | Improve temporary filename handling of special casesRicardo Garcia2010-12-091-1/+5
| |
* | Fix YoutubeIE after recent YouTube changes (closes #34)Ricardo Garcia2010-12-091-2/+2
| |
* | Add Vasyl' Vavrychuk to the list of authorsRicardo Garcia2010-12-081-0/+1
| |
* | Implemented depositfiles.com supportVasyl' Vavrychuk2010-12-081-1/+81
| |
* | Fixed failure of os.rename after receiving file finished due to file not ↵Vasyl' Vavrychuk2010-12-051-0/+1
| | | | | | | | | | | | | | being closed. Following error happen while at the end of _do_download called try_rename WindowsError: [Error 32] The process cannot access the file because it is being used by another process
* | report_extraction was never called for GenericIEVasyl' Vavrychuk2010-12-051-0/+1
| |
* | Use a temporary filename to download filesRicardo Garcia2010-12-041-7/+28
| |
* | Reworked 'upload_date' code for output sequence in YoutubeIE.Nevar Angelo2010-11-301-27/+8
|/ | | | | Reverted to previous version of 'upload_date' and fixed a mistake that prevented the code from working properly.
* Bump version numberRicardo Garcia2010-11-192-2/+2
|
* Update User-Agent stringRicardo Garcia2010-11-191-1/+1
|
* Rework upload date mechanism after detecting problems in several testsRicardo Garcia2010-11-191-15/+34
|
* Restore file permissionsRicardo Garcia2010-11-191-0/+0
|
* Merge branch 'master' of https://github.com/psi-neamf/youtube-dl into psi-neamfRicardo Garcia2010-11-191-0/+20
|\
| * Added 'uploaddate' output sequence for YoutubeIE.Nevar Angelo2010-11-171-0/+20
| |
* | Correctly parse the player URL in RTMP downloads (closes #11)jamiejones2010-11-171-3/+3
|/ | | | | | | | | | | Fixed several problems courtesy of jamiejones: The parsing for the SWF url was wrong (the "//" are now escaped and the initial .*match needs to be 'ungreedy'), so the -W setting to rtmpdump was not set, causing the decryption of the video to be wrong. Finally, add "&amp;has_verified=1" to the fetch of the HMTL page to allow fetching of age-restricted videos.
* Minor help text correctionRicardo Garcia2010-11-061-1/+1
|
* Added command line switch -A --auto-numberNevar Angelo2010-11-061-3/+8
| | | | | | Numbering downloaded URLs was implemented with %(ord)s in the output template. It has been replaced with the %(autonumber)s sequence and is now also available as a command line switch.
* Allow comments in batch file.Nevar Angelo2010-11-061-1/+1
|
* Add playlist-end option (courtesy of Nevar Angelo)Ricardo Garcia2010-11-041-14/+23
|
* Modify autoupdate URLs to match the ones from github.comRicardo Garcia2010-10-311-2/+2
|
* Bump version numberRicardo Garcia2010-10-312-2/+2
|
* Update User-Agent stringRicardo Garcia2010-10-311-1/+1
|