Como combinar y rotar videos de 3gp a mp4

1. Convertir los videos usando winff
2. Instalar gpac

sudo apt-get install gpac

Usar el siguiente comando para convertir los videos

MP4Box -cat vid1.mp4 -cat vid2.mp4 -cat vid3.mp4 -new combinedfile.mp4

Para rotar videos podemos usar el siguiente comando

mencoder -ovc lavc -vop rotate=1 -oac copy input.mpg -o output.mpg

Donde rotate=1 puede ser reemplazado por las siguientes opciones

0 Rotate by 90 degrees clockwise and flip (default).
1 Rotate by 90 degrees clockwise.
2 Rotate by 90 degrees counterclockwise.
3 Rotate by 90 degrees counterclockwise and flip.

Referencias

http://www.thetechrepo.com/main-articles/530-combine-mp4m4v-files-in-lin...

http://www.thelinuxblog.com/rotating-videos-in-linux/

Etiquetas: