Skip to content

Script que automatiza la conversión de un batch de Videos (basado en ffmpeg)

Notifications You must be signed in to change notification settings

educarlabs/videoconverter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

VideoConverter

Interfaz batch de conversión de videos en PHP basado en ffmpeg [http://www.ffmpeg.org].

Ejemplos Invocaciones

  -i /Users/gustavo/Downloads/1Test/filepaths.txt -o /Users/gustavo/conver --parseFiles
  -i /Users/gustavo/Downloads/1Test/1/Funcionales/OficiosCursodeterminacionesT01C07_SD_PA-PP-10060pa-pp-10601.mp4 -o /Users/gustavo/convert
  -i /Users/gustavo/Downloads/1Test/1 -o /Users/gustavo/Downloads/1Test/to --regex /.*(mp4|flv|avi)$/
  -i /Users/gustavo/Downloads/1Test/1/Funcionales/OficiosCursodeterminacionesT01C07_SD_PA-PP-10060pa-pp-10601.mp4 -o /Users/gustavo/conver --regex /.*(avi|flv)$/
  -i /Users/gustavo/original -o /Users/gustavo/original_convertidos
  • Casos:
  • Parseo desde directorio (con regex default)
php VideoConverter.php -i /ubicacion/videos/origen/ -o /ubicacion/videos/destino/
  • Parseo desde directorio CON regex especificado.
php VideoConverter.php -i /media/usbdrive/ -o /ubicacion/videos/destino/  --regex /.*(mp4|flv|avi)$/
  • Parseo desde UN UNICO ARCHIVO DE VIDEO (omite --regex o configuracion default)
php VideoConverter.php -i /media/usbdrive/archivo.avi -o /ubicacion/videos/destino/
  • Parseo desde lista de archivos (omite regex default)
php VideoConverter.php -i /media/usbdrive/archivos_a_procesar.txt -o /ubicacion/videos/destino/l  --inputFileList
  • Parseo desde lista de archivos APLICA regex por parametro
php VideoConverter.php -i /media/usbdrive/archivos_a_procesar.txt -o /ubicacion/videos/destino/  --inputFileList --regex /.*(mp4|flv|avi)$/

About

Script que automatiza la conversión de un batch de Videos (basado en ffmpeg)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages