Created
September 30, 2024 12:14
-
-
Save dmd/a4d5663278794d491c11c4b91bda5cf2 to your computer and use it in GitHub Desktop.
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
( stuff before this... ) | |
command="mkvpropedit \"$input_file\"" | |
# Set all audio tracks to not default | |
echo "$audio_tracks" | jq -r '.id' | while read -r track_id; do | |
command+=" --edit track:a$track_id --set flag-default=0" | |
done | |
# Set the English track to default | |
command+=" --edit track:a$english_track --set flag-default=1" | |
# Execute the command | |
eval "$command" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment