12 ポイント 投稿者 xguru 2021-10-25 | まだコメントはありません。 | WhatsAppで共有
<p>- クロップ、トリム、リサイズ、リバース、回転 <br /> - オーディオの削除、速度変更、フレームレート変更、音量調整<br /> - 別のファイル形式に変換 <br /> - 複数のファイルに対して同時に処理を実行可能 <br /> <br /> $ vdx '*.mov' --crop 360,640 # Crop to width 360, height 640<br /> $ vdx '*.mov' --format gif # Convert to GIF<br /> $ vdx '*.mov' --fps 12 # Change the frame rate to 12<br /> $ vdx '*.mov' --no-audio # Remove audio<br /> $ vdx '*.mov' --resize 360,-1 # Resize to width 360, maintaining the aspect ratio<br /> $ vdx '*.mov' --reverse # Reverse<br /> $ vdx '*.mov' --rotate 90 # Rotate 90 degrees clockwise<br /> $ vdx '*.mov' --speed 2 # Double the speed<br /> $ vdx '*.mov' --trim 0:05,0:10 # Trim from 0:05 to 0:10<br /> $ vdx '*.mov' --volume 0.5 # Halve the volume<br /> <br /> - デフォルトでは3件を同時に処理し、オプションで並列実行数を調整可能<br /> $ vdx '*.mov' --format gif --output './gifs' --parallel 5 </p>

まだコメントはありません。

まだコメントはありません。