-
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.
Added manifest for third party binaries
- Loading branch information
1 parent
dddb11c
commit 4ac34e7
Showing
6 changed files
with
41 additions
and
4 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
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 |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
/target/ | ||
/data/ | ||
/package/ | ||
/bin/ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Source for binaries | ||
| Name | Location | MD5 Hash | | ||
| --- | --- | --- | | ||
| ffmpeg | [Link](https://www.gyan.dev/ffmpeg/builds/packages/ffmpeg-2024-07-18-git-fa5a605542-essentials_build.7z) | 7c35458246ef08c70b76f11b2a12c41c83d72508eefaf9b75e572089c1c1b1c8 | | ||
| yt-dlp | [Link](https://github.com/yt-dlp/yt-dlp/releases/download/2024.07.16/yt-dlp.exe) | e96f6348244306ac999501b1e8e2b096b8a57f098c3b2b9ffe64b2107039e0ae | |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/sh | ||
# Download files | ||
mkdir ./bin/ | ||
cd ./bin | ||
curl -fLo ./yt-dlp.exe https://github.com/yt-dlp/yt-dlp/releases/download/2024.07.16/yt-dlp.exe & | ||
curl -fLo ./ffmpeg.7z https://github.com/GyanD/codexffmpeg/releases/download/7.0.1/ffmpeg-7.0.1-essentials_build.7z & | ||
wait | ||
# Unzip | ||
7z x ./ffmpeg.7z -offmpeg -y | ||
cp ./ffmpeg/ffmpeg-7.0.1-essentials_build/bin/ffmpeg.exe ./ffmpeg.exe | ||
# Verify hash | ||
set -e | ||
echo d7b51e782c79f564d6e33907b17b010f01634c00e3c42559975cbc7a82982f8f ffmpeg.exe | sha256sum --check | ||
echo e96f6348244306ac999501b1e8e2b096b8a57f098c3b2b9ffe64b2107039e0ae yt-dlp.exe | sha256sum --check | ||
# Cleanup | ||
rm ./ffmpeg.7z | ||
rm -rf ./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