added ffmpeg convert all files

This commit is contained in:
Alexander Popov 2024-05-24 00:05:08 +03:00
parent b53f35225b
commit bc592e5a11
Signed by: iiiypuk
GPG Key ID: E47FE0AB36CD5ED6

3
code/Bash/find_ffmpeg.sh Normal file
View File

@ -0,0 +1,3 @@
#!/bin/sh
find . -name "*.avi" -exec sh -c 'ffmpeg -n -i "$1" -c:v libx264 -preset veryfast -c:a copy $(basename "$1" .avi).mp4' _ {} \;