MAJOR CLEANUP: with manager scirpt to replace everything

This commit is contained in:
2024-10-07 18:38:55 +01:00
parent e3779b4ab7
commit e0fc7e698c
392 changed files with 22930 additions and 6475 deletions

16
scripts/MkvToMp4.bash Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
# Check if exactly one argument was provided
if [ "$#" -ne 1 ]; then
echo "Usage: $0 <argument>"
exit 1
fi
# Assign the argument to a variable for better readability
ARGUMENT="$1"
#
# Remove the last 3 characters (.txt) and append .md instead
NEW_FILENAME="${ARGUMENT%.mkv}.mp4"
# Insert your long command here, using $ARGUMENT where the user's input is needed
ffmpeg -i "$ARGUMENT" -vcodec copy -acodec copy "${NEW_FILENAME}"