forked from Unmanic/unmanic-plugins
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
swap init.d for requirements.txt, add missing LIECENSE
- Loading branch information
1 parent
ecc3bbb
commit c1502ae
Showing
6 changed files
with
695 additions
and
3 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -16,5 +16,5 @@ | |
"on_worker_process": 2 | ||
}, | ||
"tags": "audio,ffmpeg,library file test", | ||
"version": "0.0.6" | ||
"version": "0.0.7" | ||
} |
10 changes: 10 additions & 0 deletions
10
source/keep_only_video_and_audio_streams/init.d/install-ffsubsync.sh
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,10 @@ | ||
#!/bin/bash | ||
|
||
# Script is executed by the Unmanic container on startup to auto-install dependencies | ||
|
||
if ! command -v ffsubsync &> /dev/null; then | ||
echo "**** Installing ffsubsync ****" | ||
python3 -m pip install ffsubsync | ||
else | ||
echo "**** ffsubsync already installed ****" | ||
fi |
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,2 +0,0 @@ | ||
numpy==1.26.3;python_version>='3.10' | ||
ffsubsync | ||