Last active
June 25, 2023 14:39
-
-
Save michaeldebetaz/046ec3e633313b078825dc8710130a6b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| # Requires ffmpeg | |
| #!/bin/bash | |
| for file in *mkv; do | |
| filename="${file%.*}" | |
| echo "$filename" | |
| ffmpeg -i "$file" -vn -an -codec:s srt "$filename.srt" | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment