-
Recortar, trim, redimensionar, revertir, rotar
-
Eliminar audio, cambiar la velocidad, cambiar la tasa de fotogramas, ajustar el volumen
-
Convertir a otro formato de archivo
-
Soporta ejecutar tareas sobre varios archivos al mismo tiempo
$ vdx '*.mov' --crop 360,640 # Crop to width 360, height 640
$ vdx '*.mov' --format gif # Convert to GIF
$ vdx '*.mov' --fps 12 # Change the frame rate to 12
$ vdx '*.mov' --no-audio # Remove audio
$ vdx '*.mov' --resize 360,-1 # Resize to width 360, maintaining the aspect ratio
$ vdx '*.mov' --reverse # Reverse
$ vdx '*.mov' --rotate 90 # Rotate 90 degrees clockwise
$ vdx '*.mov' --speed 2 # Double the speed
$ vdx '*.mov' --trim 0:05,0:10 # Trim from 0:05 to 0:10
$ vdx '*.mov' --volume 0.5 # Halve the volume
- Por defecto procesa 3 archivos al mismo tiempo, y con una opción se puede ajustar la cantidad de ejecuciones simultáneas
$ vdx '*.mov' --format gif --output './gifs' --parallel 5
Aún no hay comentarios.