mirror of
https://github.com/kuhyx/scripts.git
synced 2026-07-04 15:03:09 +02:00
feat: conveert mkv videos additionally
This commit is contained in:
parent
f49a7d909b
commit
2fb23a9f33
@ -80,7 +80,7 @@ export OUTPUT_DIR
|
|||||||
|
|
||||||
# Find and process videos
|
# Find and process videos
|
||||||
if [ -d "$INPUT_PATH" ]; then
|
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
|
else
|
||||||
move_video "$INPUT_PATH"
|
move_video "$INPUT_PATH"
|
||||||
fi
|
fi
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user