aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-02-26Bump version number2011.02.25cRicardo Garcia
2011-02-25Use '--' to separate the file argument from the options when calling ffmpegIdan Kamara
This is to avoid a potential issue if the file name begins with a hyphen since ffmpeg will interpret it as an option
2011-02-25Bump version number2011.02.25bRicardo Garcia
2011-02-25Catch possible exceptions when running ffprobeRicardo Garcia
2011-02-25Fix stderr print when ffmpeg failsIdan Kamara
2011-02-25Bump version number2011.02.25Ricardo Garcia
2011-02-25Update User-Agent stringRicardo Garcia
2011-02-25Add an audio extracting PostProcessor using ffmpeg (closes #2)Ricardo Garcia
2011-02-25Fix date parsing for YouTube (patch by Drake Wyrm)Ricardo Garcia
2011-02-20Add Gergely Imreh to the author listRicardo Garcia
2011-02-20Facebook info extractorGergely Imreh
This IE should be full-featured. Public videos can be downloaded without login, e.g: https://www.facebook.com/video/video.php?v=696729990595 Private videos need login, and subject to login rate limit of a couple of tries / minute.
2011-02-13Fix possible missing parameter in playlist url extractionGergely Imreh
The "playlist_prefix" parameter was missing when parsing playlist urls that match the recently added format, e.g.: http://www.youtube.com/user/stanforduniversity#g/c/9D558D49CA734A02 For these URLs (basically, for every playlist type so far, except the artist list) playlist_prefix has to be equal to "p" for correct exctraction.
2011-02-12Support more common YouTube playlist URLsRicardo Garcia
2011-01-31Enable artist playlists in YoutubePlaylistIEGergely Imreh
Artist playlist pages have different format compared to user playlists, thus more format checking is needed to construct the correct URL. From the artist playlist this method downloads all listed below the "Videos by [Artist Name]" header, plus usually there's one more video on the side, titled "Youtube Mix for [Artist Name]", which has a link format that currently cannot be distinguished from the other videos in the list.
2011-01-30Fix SyntaxError problem (oops)2011.01.30Ricardo Garcia
2011-01-30Update User-Agent stringRicardo Garcia
2011-01-30Bump version numberRicardo Garcia
2011-01-29Add YoutubeUserIE (code courtesy of Paweł Paprota)Ricardo Garcia
2011-01-28Split some long linesRicardo Garcia
2011-01-28Make the file timestamp feature optionalRicardo Garcia
2011-01-28Set downloaded file's time stamp from last-modified headerGergely Imreh
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.
2011-01-26New option --get-filename to print output filenameGergely Imreh
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>
2011-01-25Support for youtube.com/embed/XXXXX URLs (closes #63)Lionel Elie Mamane
2011-01-21Fix omission of Witold Baryluk as the Dailymotion InfoExtractor authorRicardo Garcia
2011-01-21Fix dailymotion support (closes #60)Ricardo Garcia
2011-01-20Improve addinfourl_wrapper for compatibility with older Python versionsRicardo Garcia
2011-01-18Wrap call to addinfourl for compatibility with Python 2.4Ricardo Garcia
2011-01-18Omit code argument in addinfourl for Python 2.4Ricardo Garcia
2011-01-12Make the self-updating function a bit more robustRicardo Garcia
2011-01-12Add support for embedded YouTube playist URLs (closes #54)Ricardo Garcia
2011-01-12Fix "unable to rename file" Windows error (closes #56)Ricardo Garcia
2011-01-12Add proper support for "gzip" and "deflate" encodingsRicardo Garcia
2011-01-10Fix bug in regular expression for youtu.be linksRicardo Garcia
2011-01-07Add --no-part option (closes #48)Ricardo Garcia
2011-01-07Remove trailing whitespaceRicardo Garcia
2011-01-04Added --console-title to display download progress in console window title.Mantas Mikulėnas
This uses SetConsoleTitle() Win32 API for Windows Console, and Xterm escape sequence otherwise.
2011-01-03Add --dump-user-agent option (patch provided by Benjamin Johnson)Ricardo Garcia
2011-01-03Print new line before a few error messagesRicardo Garcia
2010-12-16Request page compression by default, like Firefox doesRicardo Garcia
2010-12-15Take into account resume_len when calculating speed and ETARicardo Garcia
2010-12-12Fix erroneous "content too short" error messageRicardo Garcia
2010-12-11Remove deprecated -b option and nonworking -m option (closes #39)Ricardo Garcia
2010-12-11Stop attempting to use get_video and detect missing formats ourselvesRicardo Garcia
2010-12-11Do not use 0% as the starting point in resumed downloads (closes #40)Ricardo Garcia
2010-12-09Fix problem when requesting an existing format explicitly with -f2010.12.09Ricardo Garcia
2010-12-09Bump version numberRicardo Garcia
2010-12-09Improve temporary filename handling of special casesRicardo Garcia
2010-12-09Fix YoutubeIE after recent YouTube changes (closes #34)Ricardo Garcia
2010-12-08Add Vasyl' Vavrychuk to the list of authorsRicardo Garcia
2010-12-08Implemented depositfiles.com supportVasyl' Vavrychuk