summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* release 2013.04.03 2013.04.03Philipp Hagemeister2013-04-031-1/+1
|
* Restore youtube-dl (update) binary (#770)Philipp Hagemeister2013-04-011-0/+0
|
* Merge pull request #764 from jaimeMF/subtitles_not_foundFilippo Valsorda2013-03-312-23/+41
|\ | | | | Fix crash when subtitles are not found
| * Don't crash in FileDownloader if subtitles couldn't be found and errors are ↵Jaime Marquínez Ferrándiz2013-03-311-16/+22
| | | | | | | | ignored
| * Fix crash when subtitles are not found and the option --all-subs is givenJaime Marquínez Ferrándiz2013-03-311-0/+2
| |
| * Use report_error in subtitles error handlingJaime Marquínez Ferrándiz2013-03-311-7/+7
| |
| * More fixes on subtitles errors handlingJaime Marquínez Ferrándiz2013-03-301-2/+6
| |
| * Fix crash when subtitles are not foundJaime Marquínez Ferrándiz2013-03-301-1/+7
| |
* | retry on UnavailableVideoErrorFilippo Valsorda2013-03-311-1/+1
| |
* | import all IEs when testing to resemble more closely the real envFilippo Valsorda2013-03-311-3/+2
| |
* | don't catch YT user URLs in YoutubePlaylistIE (fix #754, fix #763)Filippo Valsorda2013-03-311-4/+2
|/
* Different feed file namePhilipp Hagemeister2013-03-291-1/+1
|
* Correct feed titlePhilipp Hagemeister2013-03-291-2/+2
|
* release 2013.03.29 2013.03.29Philipp Hagemeister2013-03-292-5/+11
|
* Merge pull request #758 from jaimeMF/atom-feedPhilipp Hagemeister2013-03-292-0/+58
|\ | | | | Add an Atom feed generator in devscripts
| * Write a new feed each time, reading from versions.jsonJaime Marquínez Ferrándiz2013-03-292-70/+44
| |
| * Add an Atom feed generator in devscriptsJaime Marquínez Ferrándiz2013-03-262-0/+84
| |
* | Merge pull request #736 from rg3/retryFilippo Valsorda2013-03-293-5/+33
|\ \ | | | | | | Exception stacking and test retry
| * | Bubble up all the stack of exceptions and retry download tests on timeout errorsFilippo Valsorda2013-03-093-5/+33
| | |
* | | Merge pull request #752 from dodo/masterFilippo Valsorda2013-03-291-0/+82
|\ \ \ | | | | | | | | SoundcloudSetIE
| * | | SoundcloudSetIEdodo2013-03-241-0/+82
| | |/ | |/| | | | | | | info extractor for soundcloud sets
* | | Merge pull request #730 by @JohnyMoSwagFilippo Valsorda2013-03-293-1/+67
|\ \ \ | | | | | | | | | | | | Support for Worldstarhiphop.com
| * | | Added test for WorldStarHipHopJohny Mo Swag2013-03-281-0/+9
| | | |
| * | | forgot to fix this.Johny Mo Swag2013-03-081-3/+1
| | | |
| * | | catch fatal errorJohny Mo Swag2013-03-081-5/+5
| | | |
| * | | removed str used for other project.Johny Mo Swag2013-03-081-1/+1
| | | |
| * | | working - worldstarhiphop IEJohny Mo Swag2013-03-072-3/+7
| | | | | | | | | | | | | | | | Support for WorldStarHipHop
| * | | clean upJohny Mo Swag2013-03-071-17/+11
| | | |
| * | | fixed typoJohny Mo Swag2013-03-061-1/+1
| | | |
| * | | Support for WorldStarHipHop.comJohny Mo Swag2013-03-061-1/+62
| | | |
* | | | fix FunnyOrDieIE, MyVideoIE, TEDIEFilippo Valsorda2013-03-292-5/+5
| | | |
* | | | fix SpiegelIEFilippo Valsorda2013-03-291-1/+1
| | | |
* | | | Rebased, fixed and extended LiveLeak.com supportFilippo Valsorda2013-03-292-9/+29
| | | | | | | | | | | | | | | | close #757 - close #761
* | | | Update InfoExtractors.pykkalpakloglou2013-03-291-2/+41
| | | |
* | | | Merge remote-tracking branch 'jaimeMF/color_error_messages'Philipp Hagemeister2013-03-292-174/+190
|\ \ \ \
| * | | | More trouble calls changed in InfoExtractors.pyJaime Marquínez Ferrándiz2013-03-051-8/+8
| | | | | | | | | | | | | | | | | | | | The calls with the message starting with 'WARNING' have been changed to report_warning instead of report_error
| * | | | Use report_error in InfoExtractors.pyJaime Marquínez Ferrándiz2013-03-041-150/+150
| | | | | | | | | | | | | | | | | | | | Some calls haven't been changed
| * | | | 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 branch 'master' of github.com:rg3/youtube-dlPhilipp Hagemeister2013-03-296-63/+182
|\ \ \ \ \
| * | | | | use sys.stdout.buffer only on Python3Filippo Valsorda2013-03-281-1/+1
| | | | | |
| * | | | | Merge pull request #762 from jynnantonix/masterFilippo Valsorda2013-03-281-1/+1
| |\ \ \ \ \ | | |_|_|/ / | |/| | | | Use sys.stdout.buffer when writing to standard out
| | * | | | Use sys.stdout.buffer instead of sys.stdoutChirantan Ekbote2013-03-271-1/+1
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | sys.stdout defaults to text mode, we need to use the underlying buffer instead when writing binary data. Signed-off-by: Chirantan Ekbote <chirantan.ekbote@gmail.com>
| * | | | fix KeekIEFilippo Valsorda2013-03-201-4/+4
| | | | |
| * | | | Merge pull request #699 by @iemejiaFilippo Valsorda2013-03-205-58/+177
| |\ \ \ \ | | | | | | | | | | | | | | | | | | Removed innecesary function to convert subtitles, improved use of the youtube api
| | * | | | add '--write-srt' and '--srt-lang' aliases for backwards compatibilityFilippo Valsorda2013-03-201-2/+2
| | | | | |
| | * | | | Fixed typo in error message when no subtitles were available.Ismael Mejia2013-03-201-1/+1
| | | | | |
| | * | | | Added new option '--list-subs' to show the available subtitle languagesIsmael Mejia2013-03-205-8/+33
| | | | | |
| | * | | | Added new option '--sub-format' to choose the format of the subtitles to ↵Ismael Mejia2013-03-205-9/+26
| | | | | | | | | | | | | | | | | | | | | | | | downloade (defaut=srt)