Philipp Hagemeister
00ea0f11eb
Print full title in --get-title output ( #1806 )
11 years ago
Philipp Hagemeister
dca0872056
Move the opener to the YoutubeDL object.
This is the first step towards being able to just import youtube_dl and start using it.
Apart from removing global state, this would fix problems like #1805 .
11 years ago
Philipp Hagemeister
8694c60000
import json for --dump-json
11 years ago
Mohamedh Fazal
9d1538182f
Add an option to dump json information
11 years ago
Jaime Marquínez Ferrándiz
efd6c574a2
Correctly write and restore the console title on the stack ( fixes #1782 )
11 years ago
Philipp Hagemeister
749febf4d1
Allow --console-title when --quiet is given ( Fixes #1783 )
11 years ago
Philipp Hagemeister
bdde425cbe
Save and restore console title ( Fixes #1782 )
11 years ago
Philipp Hagemeister
ce02ed60f2
Remove * imports
11 years ago
Philipp Hagemeister
1e5b9a95fd
Move console_title to YoutubeDL
11 years ago
Philipp Hagemeister
b5349e8721
Fix indentation of (best) and (worst) in --list-formats
11 years ago
Philipp Hagemeister
7150858d49
[spiegel] Implement format selection
11 years ago
Philipp Hagemeister
91c7271aab
Add automatic generation of format note based on bitrate and codecs
11 years ago
Jaime Marquínez Ferrándiz
feee2ecfa9
Pass the 'download' argument to 'process_video_result' ( fixes #1769 )
11 years ago
Janez Troha
9771cceb2c
Fix filename extension leaking to json filename
Makes writeinfojson behaving exactly as writethumbnail in case where filename contains mediafile extension.
Case:
video.mp4 converted to music.mp3 would yield music.mp4.info.json instead music.mp3.info.json or music.info.json
11 years ago
Jaime Marquínez Ferrándiz
ca715127a2
Don't assume the 'subtitlesformat' is set in the params dict ( fixes #1750 )
11 years ago
Jaime Marquínez Ferrándiz
897d6cc43a
Improve format listing for long format ids
Now arte.tv videos have quite long ids.
11 years ago
Jaime Marquínez Ferrándiz
be97abc247
Set the 'extractor_key' field in the info_dict
It's the string returned by the class method 'ie_key', which allows to retrieve the extractor with 'get_info_extractor'
11 years ago
Jaime Marquínez Ferrándiz
9103bbc5cd
Add the 'webpage_url' field to info_dict
The url for the video page, it must allow to reproduce the result.
It's automatically set by YoutubeDL if it's missing.
11 years ago
Jaime Marquínez Ferrándiz
b6c45014ae
Set the extra_info inside YoutubeDL.process_ie_result and set only if the keys are missing
11 years ago
Philipp Hagemeister
7193498811
Use index in formt string (Fixes vevo test on Python 2.6)
11 years ago
Philipp Hagemeister
94badb2599
Fix output indenting for --list-formats
11 years ago
Philipp Hagemeister
57dd9a8f2f
Nicer --list-formats output
11 years ago
Jaime Marquínez Ferrándiz
702665c085
tests: build the filename from the info_dict if the 'file' key is missing
It will need to have the 'id' and 'ext' keys to work.
11 years ago
rzhxeo
216d71d001
Check if description and thumbnail are None to prevent crash
11 years ago
Philipp Hagemeister
78a3a9f89e
Make "requested format not available" expected ( #1655 )
11 years ago
Philipp Hagemeister
a7685f3bf4
mixcloud does not do any format selection
11 years ago
Philipp Hagemeister
8abeeb9449
Nicer --list-formats output
11 years ago
Philipp Hagemeister
c1002e96e9
Let extractors omit ext in formats
11 years ago
rzhxeo
7df286540f
[YouPornIE] Extract all encrypted links and remove doubles at the end
11 years ago
Philipp Hagemeister
586a91b67f
Expand tilde in template ( Fixes #1639 )
11 years ago
Jaime Marquínez Ferrándiz
fe7e0c9825
Style fixes in YoutubeDL.py
Fixed some of the problems reported by pep8
11 years ago
Jaime Marquínez Ferrándiz
12893efe01
Respect the download parameter in YoutubeDL.process_video_result if the extractor handle the format selection
11 years ago
Jaime Marquínez Ferrándiz
8c51aa6506
The 'format' field now defaults to '{format_id} - {width}x{height}{format_note}'
Following the YoutubeIE format. The 'format_note' gives additional info about the format, for example '3D' or 'DASH video'.
11 years ago
Jaime Marquínez Ferrándiz
3fd39e37f2
YoutubeDL: remove method that came from FileDownloader
11 years ago
Jaime Marquínez Ferrándiz
49e86983e7
Allow to use the extension for the format selection
The best format with the extension is downloaded.
11 years ago
Jaime Marquínez Ferrándiz
a9c58ad945
Accept requested formats to be in the format 35/best ( closes #1552 )
The format selection code is now an independent function.
11 years ago
Philipp Hagemeister
416a5efce7
fix typos
11 years ago
Philipp Hagemeister
f4d96df0f1
Extend #980 with --max-quality support
11 years ago
Jai Grimshaw
1fb07d10a3
[youtube] Adds #1312 Download annotations
Adds #1321 Download annotations from youtube
Annotations are downloaded and written to a .annotations.xml file using the https://www.youtube.com/annotations_invideo?features=1&legacy=1&video_id=$VIDEOID API.
Added unit test for annotations.
11 years ago
Jaime Marquínez Ferrándiz
8016c92297
Fix the default values of format_id and format
11 years ago
Jaime Marquínez Ferrándiz
e028d0d1e3
Implement the prefer_free_formats in YoutubeDL
11 years ago
Jaime Marquínez Ferrándiz
79819f58f2
Default 'format' field to {width}x{height}
If width is None, use {height}p and if height is None, '???'
11 years ago
Jaime Marquínez Ferrándiz
6ff000b888
Do not handle format selection for IEs that already handle it
11 years ago
Jaime Marquínez Ferrándiz
99e206d508
Implement the max quality option in YoutubeDL
11 years ago
Jaime Marquínez Ferrándiz
dd82ffea0c
Implement format selection in YoutubeDL
Now the IEs can set a formats field in the info_dict, with the formats ordered from worst to best quality. It's a list of dicts with the following fields:
* Mandatory: url and ext
* Optional: format and format_id
The format_id is used for choosing which formats have to be downloaded.
Now a video result is processed by the method process_video_result.
12 years ago
Tom
1d368c7589
Tiny tpo
11 years ago
Philipp Hagemeister
ee6c9f95e1
Remove superfluous parenthesis
11 years ago
Philipp Hagemeister
cfadd183c4
Call extracted property age_limit everywhere
11 years ago
Philipp Hagemeister
8dbe9899a9
Allow users to specify an age limit ( fixes #1545 )
With these changes, users can now restrict what videos are downloaded by the intented audience, by specifying their age with --age-limit YEARS .
Add rudimentary support in youtube, pornotube, and youporn.
11 years ago
Philipp Hagemeister
c1c9a79c49
Add basic --download-archive option
Often, users want to be able to download only videos they haven't seen before, despite the video files having been deleted or moved in the mean time.
When --download-archive FILE is given, the extractor and ID of every download is recorded in the specified file. If it is already present, the video in question is skipped.
11 years ago