]> jfr.im git - yt-dlp.git/blame - Changelog.md
[embedsubtitle] Keep original subtitle after conversion if write_subtitles given
[yt-dlp.git] / Changelog.md
CommitLineData
034b6215 1# Changelog
2
4084f235 3<!--
4# Instuctions for creating release
5
6* Run `make doc`
0bc0a322 7* Update Changelog.md and CONTRIBUTORS
8* Change "Merged with youtube-dl" version in Readme.md if needed
b2f70ae7 9* Commit to master as `Release <version>`
4084f235 10* Push to origin/release - build task will now run
eabce901 11* Update version.py using devscripts\update-version.py (be wary of timezones)
29b6000e 12* Run `make issuetemplates`
a392adf5 13* Commit to master as `[version] update :ci skip all`
4084f235 14* Push to origin/master
6d07ec81 15* Update changelog in /releases
4084f235 16
17-->
18
f20f5fe5 19
c25228e5 20### 2021.02.04
21* **Merge youtube-dl:** Upto [2021.02.04.1](https://github.com/ytdl-org/youtube-dl/releases/tag/2021.02.04.1)
0fd1a2b0 22* **Date/time formatting in output template:**
23 * You can use [`strftime`](https://docs.python.org/3/library/datetime.html#strftime-and-strptime-format-codes) to format date/time fields. Example: `%(upload_date>%Y-%m-%d)s`
c25228e5 24* **Multiple output templates:**
0fd1a2b0 25 * Separate output templates can be given for the different metadata files by using `-o TYPE:TEMPLATE`
26 * The allowed types are: `subtitle|thumbnail|description|annotation|infojson|pl_description|pl_infojson`
c25228e5 27* [youtube] More metadata extraction for channel/playlist URLs (channel, uploader, thumbnail, tags)
28* New option `--no-write-playlist-metafiles` to prevent writing playlist metadata files
29* [audius] Fix extractor
30* [youtube_live_chat] Fix `parse_yt_initial_data` and add `fragment_retries`
31* [postprocessor] Raise errors correctly
32* [metadatafromtitle] Fix bug when extracting data from numeric fields
33* Fix issue with overwriting files
34* Fix "Default format spec" appearing in quiet mode
35* [FormatSort] Allow user to prefer av01 over vp9 (The default is still vp9)
36* [FormatSort] fix bug where `quality` had more priority than `hasvid`
37* [pyinst] Automatically detect python architecture and working directory
38* Strip out internal fields such as `_filename` from infojson
39
40
29b6000e 41### 2021.01.29
42* **Features from [animelover1984/youtube-dl](https://github.com/animelover1984/youtube-dl)**: Co-authored by @animelover1984 and @bbepis
43 * Add `--get-comments`
44 * [youtube] Extract comments
45 * [billibilli] Added BiliBiliSearchIE, BilibiliChannelIE
46 * [billibilli] Extract comments
47 * [billibilli] Better video extraction
48 * Write playlist data to infojson
49 * [FFmpegMetadata] Embed infojson inside the video
50 * [EmbedThumbnail] Try embedding in mp4 using ffprobe and `-disposition`
51 * [EmbedThumbnail] Treat mka like mkv and mov like mp4
52 * [EmbedThumbnail] Embed in ogg/opus
53 * [VideoRemuxer] Conditionally remux video
54 * [VideoRemuxer] Add `-movflags +faststart` when remuxing to mp4
55 * [ffmpeg] Print entire stderr in verbose when there is error
56 * [EmbedSubtitle] Warn when embedding ass in mp4
57 * [anvato] Use NFLTokenGenerator if possible
58* **Parse additional metadata**: New option `--parse-metadata` to extract additional metadata from existing fields
59 * The extracted fields can be used in `--output`
60 * Deprecated `--metadata-from-title`
61* [Audius] Add extractor
62* [youtube] Extract playlist description and write it to `.description` file
63* Detect existing files even when using `recode`/`remux` (`extract-audio` is partially fixed)
64* Fix wrong user config from v2021.01.24
65* [youtube] Report error message from youtube as error instead of warning
66* [FormatSort] Fix some fields not sorting from v2021.01.24
67* [postprocessor] Deprecate `avconv`/`avprobe`. All current functionality is left untouched. But don't expect any new features to work with avconv
68* [postprocessor] fix `write_debug` to not throw error when there is no `_downloader`
69* [movefiles] Don't give "cant find" warning when move is unnecessary
70* Refactor `update-version`, `pyinst.py` and related files
71* [ffmpeg] Document more formats that are supported for remux/recode
72
73
0bc0a322 74### 2021.01.24
75* **Merge youtube-dl:** Upto [2021.01.24](https://github.com/ytdl-org/youtube-dl/releases/tag/2021.01.16)
76* Plugin support ([documentation](https://github.com/pukkandan/yt-dlp#plugins))
77* **Multiple paths**: New option `-P`/`--paths` to give different paths for different types of files
78 * The syntax is `-P "type:path" -P "type:path"` ([documentation](https://github.com/pukkandan/yt-dlp#:~:text=-P,%20--paths%20TYPE:PATH))
79 * Valid types are: home, temp, description, annotation, subtitle, infojson, thumbnail
80 * Additionally, configuration file is taken from home directory or current directory ([documentation](https://github.com/pukkandan/yt-dlp#:~:text=Home%20Configuration))
81* Allow passing different arguments to different external downloaders ([documentation](https://github.com/pukkandan/yt-dlp#:~:text=--downloader-args%20NAME:ARGS))
82* [mildom] Add extractor by @nao20010128nao
83* Warn when using old style `--external-downloader-args` and `--post-processor-args`
84* Fix `--no-overwrite` when using `--write-link`
85* [sponskrub] Output `unrecognized argument` error message correctly
86* [cbs] Make failure to extract title non-fatal
87* Fix typecasting when pre-checking archive
88* Fix issue with setting title on UNIX
89* Deprecate redundant aliases in `formatSort`. The aliases remain functional for backward compatibility, but will be left undocumented
90* [tests] Fix test_post_hooks
91* [tests] Split core and download tests
92
93
c69911e4 94### 2021.01.20
95* [TrovoLive] Add extractor (only VODs)
e2f6586c 96* [pokemon] Add `/#/player` URLs
c69911e4 97* Improved parsing of multiple postprocessor-args, add `--ppa` as alias
98* [EmbedThumbnail] Simplify embedding in mkv
99* [sponskrub] Encode filenames correctly, better debug output and error message
100* [readme] Cleanup options
101
e2f6586c 102
298f597b 103### 2021.01.16
f57adf0e 104* **Merge youtube-dl:** Upto [2021.01.16](https://github.com/ytdl-org/youtube-dl/releases/tag/2021.01.16)
105* **Configuration files:**
106 * Portable configuration file: `./yt-dlp.conf`
107 * Allow the configuration files to be named `yt-dlp` instead of `youtube-dlc`. See [this](https://github.com/pukkandan/yt-dlp#configuration) for details
298f597b 108* Add PyPI release
109
110
bf5a997e 111### 2021.01.14
112* Added option `--break-on-reject`
298f597b 113* [roosterteeth.com] Fix for bonus episodes by @Zocker1999NET
bf5a997e 114* [tiktok] Fix for when share_info is empty
115* [EmbedThumbnail] Fix bug due to incorrect function name
116* [documentation] Changed sponskrub links to point to [pukkandan/sponskrub](https://github.com/pukkandan/SponSkrub) since I am now providing both linux and windows releases
117* [documentation] Change all links to correctly point to new fork URL
118* [documentation] Fixes typos
119
120
9b45b9f5 121### 2021.01.12
122* [roosterteeth.com] Add subtitle support by @samiksome
90505ff1 123* Added `--force-overwrites`, `--no-force-overwrites` by @alxnull
9b45b9f5 124* Changed fork name to `yt-dlp`
125* Fix typos by @FelixFrog
126* [ci] Option to skip
127* [changelog] Added unreleased changes in blackjack4494/yt-dlc
128
129
f5546c0b 130### 2021.01.10
65156eba 131* [archive.org] Fix extractor and add support for audio and playlists by @wporr
132* [Animelab] Added by @mariuszskon
133* [youtube:search] Fix view_count by @ohnonot
134* [youtube] Show if video is embeddable in info
135* Update version badge automatically in README
136* Enable `test_youtube_search_matching`
137* Create `to_screen` and similar functions in postprocessor/common
138
f20f5fe5 139
f5546c0b 140### 2021.01.09
4084f235 141* [youtube] Fix bug in automatic caption extraction
142* Add `post_hooks` to YoutubeDL by @alexmerkel
143* Batch file enumeration improvements by @glenn-slayden
65156eba 144* Stop immediately when reaching `--max-downloads` by @glenn-slayden
4084f235 145* Fix incorrect ANSI sequence for restoring console-window title by @glenn-slayden
146* Kill child processes when yt-dlc is killed by @Unrud
034b6215 147
f20f5fe5 148
f5546c0b 149### 2021.01.08
f57adf0e 150* **Merge youtube-dl:** Upto [2021.01.08](https://github.com/ytdl-org/youtube-dl/releases/tag/2021.01.08)
e5bc03a6 151 * Extractor stitcher ([1](https://github.com/ytdl-org/youtube-dl/commit/bb38a1215718cdf36d73ff0a7830a64cd9fa37cc), [2](https://github.com/ytdl-org/youtube-dl/commit/a563c97c5cddf55f8989ed7ea8314ef78e30107f)) have not been merged
152* Moved changelog to seperate file
153
f20f5fe5 154
034b6215 155### 2021.01.07-1
156* [Akamai] fix by @nixxo
157* [Tiktok] merge youtube-dl tiktok extractor by @GreyAlien502
158* [vlive] add support for playlists by @kyuyeunk
159* [youtube_live_chat] make sure playerOffsetMs is positive by @siikamiika
160* Ignore extra data streams in ffmpeg by @jbruchon
161* Allow passing different arguments to different postprocessors using `--postprocessor-args`
162* Deprecated `--sponskrub-args`. The same can now be done using `--postprocessor-args "sponskrub:<args>"`
163* [CI] Split tests into core-test and full-test
164
f20f5fe5 165
034b6215 166### 2021.01.07
167* Removed priority of `av01` codec in `-S` since most devices don't support it yet
168* Added `duration_string` to be used in `--output`
169* Created First Release
170
f20f5fe5 171
034b6215 172### 2021.01.05-1
173* **Changed defaults:**
174 * Enabled `--ignore`
175 * Disabled `--video-multistreams` and `--audio-multistreams`
176 * Changed default format selection to `bv*+ba/b` when `--audio-multistreams` is disabled
177 * Changed default format sort order to `res,fps,codec,size,br,asr,proto,ext,has_audio,source,format_id`
178 * Changed `webm` to be more preferable than `flv` in format sorting
179 * Changed default output template to `%(title)s [%(id)s].%(ext)s`
180 * Enabled `--list-formats-as-table`
181
f20f5fe5 182
034b6215 183### 2021.01.05
184* **Format Sort:** Added `--format-sort` (`-S`), `--format-sort-force` (`--S-force`) - See [Sorting Formats](README.md#sorting-formats) for details
185* **Format Selection:** See [Format Selection](README.md#format-selection) for details
186 * New format selectors: `best*`, `worst*`, `bestvideo*`, `bestaudio*`, `worstvideo*`, `worstaudio*`
187 * Changed video format sorting to show video only files and video+audio files together.
188 * Added `--video-multistreams`, `--no-video-multistreams`, `--audio-multistreams`, `--no-audio-multistreams`
189 * Added `b`,`w`,`v`,`a` as alias for `best`, `worst`, `video` and `audio` respectively
190* **Shortcut Options:** Added `--write-link`, `--write-url-link`, `--write-webloc-link`, `--write-desktop-link` by @h-h-h-h - See [Internet Shortcut Options]README.md(#internet-shortcut-options) for details
191* **Sponskrub integration:** Added `--sponskrub`, `--sponskrub-cut`, `--sponskrub-force`, `--sponskrub-location`, `--sponskrub-args` - See [SponSkrub Options](README.md#sponskrub-options-sponsorblock) for details
c69911e4 192* Added `--force-download-archive` (`--force-write-archive`) by @h-h-h-h
034b6215 193* Added `--list-formats-as-table`, `--list-formats-old`
f20f5fe5 194* **Negative Options:** Makes it possible to negate most boolean options by adding a `no-` to the switch. Usefull when you want to reverse an option that is defined in a config file
034b6215 195 * Added `--no-ignore-dynamic-mpd`, `--no-allow-dynamic-mpd`, `--allow-dynamic-mpd`, `--youtube-include-hls-manifest`, `--no-youtube-include-hls-manifest`, `--no-youtube-skip-hls-manifest`, `--no-download`, `--no-download-archive`, `--resize-buffer`, `--part`, `--mtime`, `--no-keep-fragments`, `--no-cookies`, `--no-write-annotations`, `--no-write-info-json`, `--no-write-description`, `--no-write-thumbnail`, `--youtube-include-dash-manifest`, `--post-overwrites`, `--no-keep-video`, `--no-embed-subs`, `--no-embed-thumbnail`, `--no-add-metadata`, `--no-include-ads`, `--no-write-sub`, `--no-write-auto-sub`, `--no-playlist-reverse`, `--no-restrict-filenames`, `--youtube-include-dash-manifest`, `--no-format-sort-force`, `--flat-videos`, `--no-list-formats-as-table`, `--no-sponskrub`, `--no-sponskrub-cut`, `--no-sponskrub-force`
196 * Renamed: `--write-subs`, `--no-write-subs`, `--no-write-auto-subs`, `--write-auto-subs`. Note that these can still be used without the ending "s"
197* Relaxed validation for format filters so that any arbitrary field can be used
c25228e5 198* Fix for embedding thumbnail in mp3 by @pauldubois98 ([ytdl-org/youtube-dl#21569](https://github.com/ytdl-org/youtube-dl/pull/21569))
034b6215 199* Make Twitch Video ID output from Playlist and VOD extractor same. This is only a temporary fix
f5546c0b 200* **Merge youtube-dl:** Upto [2021.01.03](https://github.com/ytdl-org/youtube-dl/commit/8e953dcbb10a1a42f4e12e4e132657cb0100a1f8) - See [blackjack4494/yt-dlc#280](https://github.com/blackjack4494/yt-dlc/pull/280) for details
034b6215 201 * Extractors [tiktok](https://github.com/ytdl-org/youtube-dl/commit/fb626c05867deab04425bad0c0b16b55473841a2) and [hotstar](https://github.com/ytdl-org/youtube-dl/commit/bb38a1215718cdf36d73ff0a7830a64cd9fa37cc) have not been merged
202* Cleaned up the fork for public use
f20f5fe5 203
204
205### Unreleased changes in [blackjack4494/yt-dlc](https://github.com/blackjack4494/yt-dlc)
206* Updated to youtube-dl release 2020.11.26
207* [youtube]
208 * Implemented all Youtube Feeds (ytfav, ytwatchlater, ytsubs, ythistory, ytrec) and SearchURL
209 * Fix ytsearch not returning results sometimes due to promoted content
210 * Temporary fix for automatic captions - disable json3
211 * Fix some improper Youtube URLs
212 * Redirect channel home to /video
213 * Print youtube's warning message
214 * Multiple pages are handled better for feeds
215* Add --break-on-existing by @gergesh
216* Pre-check video IDs in the archive before downloading
217* [bitwave.tv] New extractor
218* [Gedi] Add extractor
219* [Rcs] Add new extractor
220* [skyit] Add support for multiple Sky Italia website and removed old skyitalia extractor
221* [france.tv] Fix thumbnail URL
222* [ina] support mobile links
223* [instagram] Fix extractor
224* [itv] BTCC new pages' URL update (articles instead of races)
225* [SouthparkDe] Support for English URLs
226* [spreaker] fix SpreakerShowIE test URL
227* [Vlive] Fix playlist handling when downloading a channel
228* [generic] Detect embedded bitchute videos
229* [generic] Extract embedded youtube and twitter videos
230* [ffmpeg] Ensure all streams are copied
231* Fix for os.rename error when embedding thumbnail to video in a different drive
232* make_win.bat: don't use UPX to pack vcruntime140.dll