feat: conveert mkv videos additionally

This commit is contained in:
Krzysztof Rudnicki 2024-12-16 18:09:26 +01:00
parent bc862f8834
commit 2125fd86b7
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -40,3 +40,4 @@ testem.log
# System files
.DS_Store
Thumbs.db
*.mkv

View File

@ -80,7 +80,7 @@ export OUTPUT_DIR
# Find and process videos
if [ -d "$INPUT_PATH" ]; then
find "$INPUT_PATH" -type f -name "*.mp4" -o -name "*.mkv" -o -name "*.avi" -o -name "*.webm" -exec bash -c 'move_video "$0"' {} \;
find "$INPUT_PATH" \( -name "*.mkv" -o -name "*.mp4" -o -name "*.avi" -o -name "*.webm" \) -type f -exec bash -c 'move_video "$0"' {} \;
else
move_video "$INPUT_PATH"
fi