yt-dlc/yt_dlp
pukkandan b25522ba52
[update] Replace self without launching a subprocess in windows
Closes: #335, https://github.com/ytdl-org/youtube-dl/issues/28488, https://github.com/ytdl-org/youtube-dl/issues/5810, https://github.com/ytdl-org/youtube-dl/issues/5994

In windows, a running executable cannot be replaced. So, the old updater worked by launching a batch script and then exiting, so that the batch script can replace the executable. However, this caused the above-mentioned issues.

The new method takes advantage of the fact that while the executable cannot be replaced or deleted, it can still be renamed. The current update process on windows is as follows:
1. Delete `yt-dlp.exe.old` if it exists
2. Download the new version as `yt-dlp.exe.new`
3. Rename the running exe to `yt-dlp.exe.old`
4. Rename `yt-dlp.exe.new` to `yt-dlp.exe`
5. Open a shell that deletes `yt-dlp.exe.old` and terminate

While we still use a subprocess, the actual update is already done before the app terminates and the batch script does not print anything to stdout/stderr. So this solves all the above issues
2021-05-26 01:13:34 +05:30
..
downloader [ffmpeg] Download and merge in a single step if possible 2021-05-23 03:53:18 +05:30
extractor [ard] Allow URLs without `-` before id 2021-05-23 23:03:08 +05:30
postprocessor [ard] Allow URLs without `-` before id 2021-05-23 23:03:08 +05:30
YoutubeDL.py [cleanup] Refactor updater 2021-05-26 01:13:08 +05:30
__init__.py [cleanup] Refactor updater 2021-05-26 01:13:08 +05:30
__main__.py
aes.py
cache.py
compat.py
jsinterp.py
options.py [cleanup] Refactor ffmpeg convertors 2021-05-22 15:20:42 +05:30
socks.py
swfinterp.py
update.py [update] Replace self without launching a subprocess in windows 2021-05-26 01:13:34 +05:30
utils.py Handle Basic Auth `user:pass` in URLs 2021-05-24 03:38:02 +05:30
version.py [version] update 2021-05-20 21:15:41 +05:30
webvtt.py