Debian活用/画像、動画変換
< Debian活用
ナビゲーションに移動
検索に移動
$ find . -type f -name '*.heic' -exec mogrify -format jpeg {} \;
$ ffmpeg -i XXX.mp4 -crf 18 test.mp4 $ ffmpeg -i XXX.mp4 -t 30 -c copy test.mp4 $ ffmpeg -i XXX.mp4 -ss 00:17:55 -c copy test.mp4 $ ffmpeg -i XXX.mp4 -ss 30 -t 60 -c copy test.mp4 $ ffmpeg -i XXX.mp4 -ss 30 -to 00:17:55 -c copy test.mp4