aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-10-31Bump version number2009.08.08Ricardo Garcia
2010-10-31Use get_video_info to work around captcha problems (fixes issue #31)Ricardo Garcia
2010-10-31Fix minor problem with size formatting methodRicardo Garcia
2010-10-31Update User-agent stringRicardo Garcia
2010-10-31Fix metacafe.com code due to recent changes in the siteRicardo Garcia
2010-10-31Include format 5 in best quality listRicardo Garcia
2010-10-31Properly encode messages sent to stderr (fixes issue #34)Ricardo Garcia
2010-10-31Bump version number2009.06.29Ricardo Garcia
2010-10-31Modify "more pages" check in YouTube playlist (fixes issue #29)Ricardo Garcia
2010-10-31Delay opening file until there is data to writeRicardo Garcia
Fixes issue #19.
2010-10-31Restore INTERNAL version numberRicardo Garcia
2010-10-31Bump version number2009.05.30Ricardo Garcia
2010-10-31Document new "continuedl" FileDownloader optionRicardo Garcia
2010-10-31Remove integer casts and replace them with long integer castsRicardo Garcia
2010-10-31Fix missing cast preventing detection of already downloaded fileRicardo Garcia
2010-10-31Tweaks to ivanov's codeRicardo Garcia
2010-10-31Added -c option (--continue)Paul Ivanov
interrupted downloads will properly resume and append to the previously downloaded data, instead of overwriting the file. There's some error checking - if the length of the file to be download matches the length of the previously downloaded data, we report that this file has already been downloaded and do nothing. If there is some other HTTP 416 'Requested range not satisfiable' error, we simply re-download the whole file (reverting to the original functionality) All other HTTP errors are simply raised. Resuming does not override -w (--nooverwrite), since it is not clear what should happen if file on disk is larger than file to be downloaded. Thus, -c does nothing if -w is present.
2010-10-31Fix TypeError when using the -f option (fixes issue #24)Ricardo Garcia
2010-10-31Restore INTERNAL version numberRicardo Garcia
2010-10-31Bump version number2009.05.25Ricardo Garcia
2010-10-31Remove trails from the "append_const" change (fixes issue #23)Ricardo Garcia
2010-10-31Only catch UnavailableFormatError in call to process_infoRicardo Garcia
2010-10-31Verify URLs in simulate mode (fixes issue #22)Ricardo Garcia
2010-10-31Restore "INTERNAL" version numberRicardo Garcia
2010-10-31Update version number in LATEST_VERSION2009.05.23Ricardo Garcia
2010-10-31Bump version numberRicardo Garcia
2010-10-31Handle "content too short" errors properlyRicardo Garcia
2010-10-31Close video file before removing it.Ricardo Garcia
2010-10-31Remove .hgignore from version trackingRicardo Garcia
2010-10-31Add LATEST_VERSION to further ease checking which is the latest stable versionRicardo Garcia
2010-10-31Put back INTERNAL versionRicardo Garcia
2010-10-31Set version number2009.05.13Ricardo Garcia
2010-10-31Use store_const instead of append_const as the latter requires Python 2.5Ricardo Garcia
2010-10-31Restore INTERNAL version numberRicardo Garcia
2010-10-31Put version number in place2009.05.11Ricardo Garcia
2010-10-31Add an "epoch" keyword to the output templateRicardo Garcia
2010-10-31Add format 35 (flv) as second best in qualityRicardo Garcia
2010-10-31Move the -t and -l options to the filesystem groupRicardo Garcia
2010-10-31Some consistency changes and ghost-file bugfix after discussion with rg3dannycolligan
2010-10-31Fixed ambiguity of multiple video option specifiers by dissalowing it; ↵dannycolligan
changed some sys.ext calls to parser.error
2010-10-31Added -b option and created option groups for help promptdannycolligan
2010-10-31Update and correct (format,extension) table for YouTubeRicardo Garcia
2010-10-31Minor documentation changeRicardo Garcia
2010-10-31Skip blank lines in batch file -- fixes issue #9Ricardo Garcia
2010-10-31Revert version number to INTERNALRicardo Garcia
2010-10-31Set version number2009.04.25Ricardo Garcia
2010-10-31Fix code for metacafe.com (this fixes issue #8)Ricardo Garcia
2010-10-31Fix some minor unicode-related problemsRicardo Garcia
2010-10-31Update internal documentation to reflect the new behaviourRicardo Garcia
2010-10-31Download videos after extracting informationRicardo Garcia
This is achieved by letting the InfoExtractors instruct its downloader to process the information dictionary just after extracting the information. As a consequence, some code is simplified too.