aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Option to keep private keys in the infojsonpukkandan2021-03-185-6/+25
| | | | | | Options: --clean-infojson, --no-clean-infojson Related: https://github.com/yt-dlp/yt-dlp/issues/42#issuecomment-800778391
* Recursively remove private keys from infojsonpukkandan2021-03-181-5/+10
| | | | Related: https://github.com/yt-dlp/yt-dlp/issues/42
* [movefiles] Fix bugs and make more robustpukkandan2021-03-184-30/+40
|
* [youtube] bugfix for channel playlist extractionpukkandan2021-03-171-1/+1
| | | | Bug introduced in cd7c66cf014b3a5c3f7482dbcdda3343338f8d7c
* [niconico] Partial fixpukkandan2021-03-171-97/+108
| | | | | | | | | | | | | | | TODO: Smile formats don't work Extraction code that no longer works needs to be removed Adapted from: https://github.com/animelover1984/youtube-dl/commit/b5eff52dd9ed5565672ea1694b38c9296db3fade by animelover1984 Related: https://github.com/yt-dlp/yt-dlp/issues/171 https://github.com/animelover1984/youtube-dl/issues/29 https://github.com/ytdl-org/youtube-dl/issues/28470
* [stitcher] Merge from youtube-dl (#175)nixxo2021-03-162-33/+93
| | | | | | | This cherry-picks the commits: https://github.com/ytdl-org/youtube-dl/commit/a563c97c5cddf55f8989ed7ea8314ef78e30107f#diff-cc37718b18689c1c0588c4c74518853ef43ab020bbd674f3c04d4eae037798d2 https://github.com/ytdl-org/youtube-dl/commit/8522bcd97c4173407261a3fa0283dd7800c39601#diff-cc37718b18689c1c0588c4c74518853ef43ab020bbd674f3c04d4eae037798d2 Authored by: nixxo
* [rcs] Improved extraction (See desc) (#170)nixxo2021-03-161-17/+31
| | | | | | | * improved `video_data` extraction * added an extra fallback value for `description` * improved regex in `RCSVariousIE` Authored by: nixxo
* [formatSort] Fix `quality` being ignoredpukkandan2021-03-151-3/+3
| | | | Closes #172
* [sponskrub] Pass proxy to sponskrubpukkandan2021-03-151-0/+2
| | | | | | Needs atleast sponskrub version: faissaloo/sponskrub 3.7.0 OR yt-dlp/sponskrub 2021.03.15
* [version] updatepukkandan2021-03-158-17/+17
| | | | :ci skip all
* Release 2021.03.15pukkandan2021-03-154-40/+68
|
* Update to ytdl-commit-3be0980pukkandan2021-03-1517-252/+355
| | | | https://github.com/ytdl-org/youtube-dl/commit/3be098010f667b14075e3dfad1e74e5e2becc8ea
* Split video by chapters (#158)pukkandan2021-03-156-6/+79
| | | | | | | | | | | | | | | | | | | | * New options `--split-chapters` and `--no-split-chapters` * The output/path of the split files can be given using the key `chapter` * Additional keys `section_title`, `section_number`, `section_start`, `section_end` are available in the output template * Alias `--split-tracks` for parity with animelover/youtube-dl * `--sponskrub-cut` and `--split-chapter` cannot work together Closes: https://github.com/blackjack4494/yt-dlc/issues/277 https://github.com/ytdl-org/youtube-dl/issues/28438 https://github.com/ytdl-org/youtube-dl/issues/12907 https://github.com/ytdl-org/youtube-dl/issues/6480 https://github.com/ytdl-org/youtube-dl/pull/25005 Rewritten from the implementation by: femaref and Wattux https://github.com/Wattux/youtube-dl/tree/split-at-timestamps https://github.com/ytdl-org/youtube-dl/pull/25005 https://github.com/femaref/youtube-dl/tree/split-track
* [Youtube] Rewrite comment extraction (#167)Matthew2021-03-152-171/+300
| | | | | | | | | Closes #121 TODO: * Add an option for the user to specify newest/popular and max number of comments * Refactor the download code and generalize with TabIE * Parse time_text to timestamp
* [embedthumbnail] Set mtime correctlypukkandan2021-03-141-0/+4
| | | | Related: https://github.com/yt-dlp/yt-dlp/issues/67
* Refactor (See desc)pukkandan2021-03-147-49/+56
| | | | | | * Create `FFmpegPostProcessor.real_run_ffmpeg` that can accept multiple input/output files along with switches for each * Rewrite `cli_configuration_args` and related functions * Create `YoutubeDL._ensure_dir_exists` - this was previously defined in multiple places
* [pluto.tv] Add extractor (#163)CHJ852021-03-142-0/+165
| | | | | | https://github.com/ytdl-org/youtube-dl/pull/27621 Authored by: kevinoconnor7
* [zee5] Support zee5originalspukkandan2021-03-141-2/+2
|
* [rai] fix drm check (#168)nixxo2021-03-131-1/+1
| | | | Bug introduced by #150 Authored by: nixxo
* Native concurrent downloading of fragments (#166)shirt2021-03-137-104/+250
| | | | | | | | | | | * Option `--concurrent-fragments` (`-N`) to set the number of threads Related: #165 Known issues: * When receiving Ctrl+C, the process will exit only after finishing the currently downloading fragments * The download progress shows the speed of only one thread Authored by shirt-dev
* More improvements to HLS/DASH external downloader codepukkandan2021-03-115-22/+44
| | | | | | | * Fix error when there is no `protocol` in `info_dict` * Move HLS byte range detection to `Aria2cFD` so that the download will fall back to the native downloader instead of ffmpeg * Fix bug with getting no fragments in DASH * Convert `check_results` in `can_download` to a generator
* [wimtv] Add extractor (#161)nixxo2021-03-113-0/+179
| | | | | Added support for VODs, live and embeds Authored by: nixxo
* [Zee5] Add Show Extractor (#160)Ashish2021-03-112-34/+124
| | | | Co-authored-by: Ashish <ashish@pop-os.localdomain> Co-authored-by: pukkandan <pukkandan.ytdlp@gmail.com>
* Improve HLS/DASH external downloader code (#162)shirt-dev2021-03-104-32/+34
| | | Authored by: shirt
* [zee5] Improve regexpukkandan2021-03-091-1/+4
|
* [mtv] Add mtv.it and extract series metadata (#156)nixxo2021-03-082-0/+171
| | | | | | * New extractors: MTVItalia, MTVItaliaProgramma * Extract fields: series, season_number, episode_number Authored-by: nixxo
* [version] update :ci skip allpukkandan2021-03-087-15/+15
|
* Release 2021.03.07pukkandan2021-03-083-13/+33
|
* [vimeo] Fix videos with passwordteesid2021-03-071-0/+57
| | | | | | | | https://github.com/ytdl-org/youtube-dl/pull/27992 Fixes: https://github.com/ytdl-org/youtube-dl/issues/28354 Authored by teesid
* Fix some videos downloading with m3u8 extensionpukkandan2021-03-071-4/+7
|
* [bilibili] Change `Accept` header (Closes #145)pukkandan2021-03-071-10/+6
| | | | | | | | This is a temporary fix. Ideally we should find a more reasonable accept string that just "*/*" Fixes: https://github.com/ytdl-org/youtube-dl/issues/28363 https://github.com/ytdl-org/youtube-dl/issues/28341 Thanks to animelover1984 for identifying the problem
* [Documentation] Inclusion of two-line install script for Unix (#155)Ashish2021-03-071-0/+17
| | | | | | Closes #83 Authored-by: Ashish <ashish@pop-os.localdomain> ci skip all
* [rai] Check for DRM (#150)nixxo2021-03-071-0/+12
| | | Authored by: nixxo <nixxo@protonmail.com>
* Remove "fixup is ignored" warning when fixup wasn't passed by userpukkandan2021-03-071-1/+1
| | | | Closes #151
* [youtube] Detect when Mixes end or wrap aroundpukkandan2021-03-071-8/+13
|
* [youtube] Fix community page continuation (Closes #152)pukkandan2021-03-071-2/+6
|
* [gedi] Improvements from youtube-dl (#149)nixxo2021-03-064-274/+215
| | | Authored-by: nixxo <c.nixxo@gmail.com>
* [MXPlayer] Rewrite extractor with show support (#141)Ashish2021-03-061-60/+84
| | | | Co-authored-by: Ashish <ashish@pop-os.localdomain> Co-authored-by: pukkandan <pukkandan.ytdlp@gmail.com>
* [Youtube] Fix private feeds/playlists on multi-channel accounts (#143)Matthew2021-03-051-6/+22
| | | Authored by: colethedj
* [Youtube] Extract alerts from continuation (#144)Matthew2021-03-051-25/+32
| | | | | Related: #143 Authored by: colethedj
* [downloader] Fix bug for ffmpeg/httpiepukkandan2021-03-051-3/+3
| | | | Caused by: 7f7de7f94dfeacb0eb78cb9487dfcaf5707da381
* [trovo] Pass origin header (Closes #139)pukkandan2021-03-041-0/+3
| | | | Fixes: https://github.com/ytdl-org/youtube-dl/issues/28346
* [lbry] Support lbry:// urlpukkandan2021-03-041-4/+12
| | | | | | | | https://github.com/ytdl-org/youtube-dl/pull/28207 Fixes: https://github.com/ytdl-org/youtube-dl/issues/28084 Authored by: nixxo <nixxo@protonmail.com>
* [youtube] Fix history, trending and mix playlists (#136)pukkandan2021-03-042-66/+82
| | | | Co-authored-by: pukkandan <pukkandan.ytdlp@gmail.com> Co-authored-by: Matthew <colethedj@protonmail.com>
* [cbs] Add support for ParamountPlus (#138)shirt-dev2021-03-041-4/+7
| | | | | Related: https://github.com/ytdl-org/youtube-dl/issues/28342 Authored-by: shirtjs <2660574+shirtjs@users.noreply.github.com>
* [update] Fix updater removing the executable bit on some UNIX distrospukkandan2021-03-031-16/+6
| | | | Closes #133
* [update] Fix current build hash for UNIXpukkandan2021-03-031-7/+6
|
* [version] update :ci skip allpukkandan2021-03-037-14/+14
|
* Release 2021.03.03.2pukkandan2021-03-032-6/+10
|
* [build] fix bug from da7f321e9338624375eab758d822445d2846e771pukkandan2021-03-031-1/+1
|