-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow ytdlp parser and app to work with future versions of ytdlp
- Loading branch information
1 parent
f9f05be
commit e825722
Showing
11 changed files
with
322 additions
and
453 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
#!/bin/sh | ||
# Install yt-dlp | ||
mkdir ./bin/ | ||
curl -fLo ./bin/yt-dlp https://github.com/yt-dlp/yt-dlp/releases/download/2024.05.27/yt-dlp_linux | ||
cd ./bin/ | ||
curl -fLo ./yt-dlp https://github.com/yt-dlp/yt-dlp/releases/download/2024.07.16/yt-dlp_linux | ||
set -e | ||
echo af0570b5e60196a1785a12e7f48fc7cb7b5745b0bb9870ca2fe6ed90ddd80b46 ./bin/yt-dlp | sha256sum --check | ||
sudo chmod 777 ./bin/yt-dlp | ||
echo a6b840e536014ce7b2c7c40b758080498ed5054aa96979e64fcc369752cdc8d3 yt-dlp | sha256sum --check | ||
sudo chmod 777 ./yt-dlp | ||
# Install ffmpeg | ||
sudo apt-get --yes install ffmpeg |
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
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
Oops, something went wrong.