aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/YoutubeDL.py
Commit message (Collapse)AuthorAgeFilesLines
...
* | Set the playlist_index and playlist fields for already resolved video results.Jaime Marquínez Ferrándiz2013-07-101-0/+1
|/
* Add function add_default_info_extractors to YoutubeDLJaime Marquínez Ferrándiz2013-06-271-1/+8
| | | | It adds to the list the ies returned by ge_extractors
* Fixed typo in subtitle format option (from: sbt => sbv)Ismael Mejia2013-06-261-1/+1
|
* Added support for additional vtt subtitle format (WebVTT) in youtube-dl.Ismael Mejia2013-06-261-1/+1
|
* Add the option "--write-auto-sub" to download automatic subtitles from YoutubeJaime Marquínez Ferrándiz2013-06-251-1/+2
| | | | | Now automatic subtitles are only downloaded if the option is given. (closes #903)
* Add "--video-password" option (related #889)Jaime Marquínez Ferrándiz2013-06-251-0/+1
| | | | | | Used only for accessing a private video Restore the error when the account is missing
* Split FileDownloader in two classes: FileDownloader and YoutubeDLJaime Marquínez Ferrándiz2013-06-241-0/+595
YoutubeDL is the class that coordinates everything FileDownloader gets a filename and an info dict and downloads the video.