aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/YoutubeDL.py
AgeCommit message (Collapse)Author
2014-07-25[YouTubeDL] Best practices (Closes #3370)Philipp Hagemeister
2014-07-24Replace failure handling with up-front check.Philipp Hagemeister
The only time that write_string should fail is if the Python is completely braindead. Check for that condition and output a more accurate warning. See #3326 for details.
2014-07-23Deletes temp files after postprocess merge unless -k option is specifiedrupertbaxter2
2014-07-23[YoutubeDL] Make sure we really, really get out the encoding stringPhilipp Hagemeister
Fixes #3326 Apparently, on some platforms, even outputting this fails already.
2014-07-21[snotr] PEP8 and minor fixes (#3296)Philipp Hagemeister
2014-07-06[YoutubeDL] Show download URL when -v is setPhilipp Hagemeister
This will allow us to debug issues like #3204
2014-06-07[cnn] Improve thumbnail extractionPhilipp Hagemeister
2014-06-07[spiegeltv] Simplify and PEP8Philipp Hagemeister
2014-04-30[YoutubeDL] Do not require default output template to be setPhilipp Hagemeister
2014-04-30[YoutubeDL] Add simple tests for format_note (Closes #2825)Philipp Hagemeister
2014-04-08Fix subtitle download error reporting (Fixes #2724)robbie
2014-04-07[utils] Completely rewrite Windows output (Fixes #2672)Philipp Hagemeister
2014-04-07Use --encoding when outputtingPhilipp Hagemeister
2014-04-03Correct check for empty dirname (Fixes #2683)Philipp Hagemeister
2014-04-03[YouTubeDL] Throw an early error if the info_dict result is invalidPhilipp Hagemeister
2014-04-03[franceculture] Add extractor (Fixes #2669)Philipp Hagemeister
2014-03-30Add new --encoding option (Fixes #2650)Philipp Hagemeister
2014-03-26Add --no-warnings option (Fixes #2630)Philipp Hagemeister
2014-03-23[instagram] Add support for user profiles (Fixes #2606)Philipp Hagemeister
2014-03-21Add --prefer-insecure option (Fixes #2364)Philipp Hagemeister
2014-03-20[YoutubeDL] Improve error messagePhilipp Hagemeister
2014-03-14Add bestvideo and worstvideo to special format names (#2163)Jaime Marquínez Ferrándiz
2014-03-13Rename upload_timestamp to timestampPhilipp Hagemeister
2014-03-13[vevo] Centralize timestamp handlingPhilipp Hagemeister
2014-03-10[playvid] Simplify (#2539)Philipp Hagemeister
2014-03-10Don't install the global url openerJaime Marquínez Ferrándiz
All the code uses now the urlopen method of YoutubeDL
2014-03-10Don't set the global socket timeoutJaime Marquínez Ferrándiz
Use the timeout argument of the `OpenerDirector.open` method instead
2014-03-10Correct automatic resolution determinationPhilipp Hagemeister
2014-03-09YoutubeDL: If the logger is set call its `warning` method in `report_warning`Jaime Marquínez Ferrándiz
2014-03-07YoutubeDL: Use its `urlopen` method for downloading the thumbnail.Jaime Marquínez Ferrándiz
2014-03-04Document width, height, and resolution (#1445)Philipp Hagemeister
2014-03-04[youtube] Add support for search result URLs (Fixes #2495)Philipp Hagemeister
2014-03-03Add display_id fieldPhilipp Hagemeister
2014-01-25Some pep8 style fixesJaime Marquínez Ferrándiz
2014-01-23[youtube] Add new formats (Fixes #2221)Philipp Hagemeister
2014-01-23Do not count unmatched videos for --max-downloads (Fixes #2211)Philipp Hagemeister
2014-01-23Correct --max-downloads with --ignore-errorsPhilipp Hagemeister
2014-01-22Merge branch 'paged-lists'Philipp Hagemeister
Conflicts: test/test_utils.py youtube_dl/extractor/youtube.py
2014-01-22Merge branch 'youtube-dash-manifest'Philipp Hagemeister
Conflicts: youtube_dl/extractor/youtube.py
2014-01-22Default to -f best-audio when only audio is requestedPhilipp Hagemeister
2014-01-22Add -f bestaudio (Fixes #2163)Philipp Hagemeister
2014-01-22Add new --default-search option (#2193)Philipp Hagemeister
2014-01-21[servingsys] Add supportPhilipp Hagemeister
This also adds support for brightcove advertisements. Fixes #2181
2014-01-20Add infrastructure for paged listsPhilipp Hagemeister
This commit allows to download pages in playlists as needed instead of all at once. Before this commit, youtube-dl http://www.youtube.com/user/ANNnewsCH/videos --playlist-end 2 --skip-download took quite some time - now it's almost instantaneous. As an example, the youtube:user extractor has been converted. Fixes #2175
2014-01-19[youtube] Download DASH manifestPhilipp Hagemeister
If given, download and parse the DASH manifest file, in order to get ultra-HQ formats. Fixes #2166
2014-01-15Don’t try to merge the formats if ffmpeg or avconv are not installedJaime Marquínez Ferrándiz
2014-01-08Add ‘--prefer-avconv’ and ‘--prefer-ffmpeg’ options (#2115)Jaime Marquínez Ferrándiz
Affects the ffmpeg post processors, if ‘--prefer-ffmpeg’ is given and both avconv and ffmpeg are installed, it will use ffmpeg. Otherwise it will follow the old behaviour.
2014-01-07--list-formats: Only add "@" if vbr is givenPhilipp Hagemeister
2014-01-07Move postprocessor into its own packagePhilipp Hagemeister
2014-01-05Set required properties for format mergingPhilipp Hagemeister