LoginSignup
0
0

More than 1 year has passed since last update.

batch conver mp4

Last updated at Posted at 2022-08-25
for i in *.mov; do
    # [ -f "$i" ] || break
    name=$(echo "$i" | cut -f 1 -d '.')
    echo $name
    I:/script/bin/td/tools/opensource/ImageMagick-6.8.9-Q16/ffmpeg.exe  -i $i -qscale 0 mp4/$name.mp4
done
for %%f in (*.mov) do (
  I:/script/bin/td/tools/opensource/ImageMagick-6.8.9-Q16/ffmpeg.exe  -i %%f -qscale 0 %%~nf.mp4
)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0