Last active
September 7, 2022 00:49
-
-
Save vadimkantorov/43619e4d73d08e36589b328e6b29d0cd to your computer and use it in GitHub Desktop.
Download only subtitles for a given lang with youtube-dl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# download only auto subtitles, resources: | |
# https://superuser.com/questions/927523/how-to-download-only-subtitles-of-videos-using-youtube-dl | |
# http://ytdl-org.github.io/youtube-dl/download.html | |
# wget https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x86.exe && ./vcredist_x86.exe /install /quiet /norestart | |
# wget https://yt-dl.org/downloads/latest/youtube-dl.exe | |
# downloadonlysubtitles ru 'https://www.youtube.com/watch?v=VBHhhGOGdKk' | |
alias downloadonlysubtitles='youtube-dl --skip-download --write-auto-sub --sub-lang' # or ./youtube-dl.exe on Windows |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment