You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789101112 |
- #!/bin/sh
-
- #mkdir convert
-
- for f in *.avi; do ffmpeg -i "$f" "${f%.avi}.mp4"; done
-
-
- #find -name '*.avi' -exec ffmpeg -i {} {}.mp4 \;
-
-
- #find a safe way to delete old files?
- #find . -name "*.avi.mp4" -exec rename 's/\.avi.mp4$/\.mp4/i' {} \;
|