Skip to content

Instantly share code, notes, and snippets.

@bluvertigo
Last active March 23, 2018 09:08
Show Gist options
  • Save bluvertigo/8baeba90b82385721e86cf8d26328661 to your computer and use it in GitHub Desktop.
Save bluvertigo/8baeba90b82385721e86cf8d26328661 to your computer and use it in GitHub Desktop.
Convertire file mov in mp4
#!/bin/bash
# uso ./convert_mov.sh NOME_FILE
filename=$1
ffmpeg -i $filename.mov -vcodec h264 -acodec aac -strict -2 $filename.mp4
# Alternativa
# ffmpeg -i data/video.mp4 -vcodec h264 -b:v 1000k -acodec mp2 data/output.mp4

./convert_video.sh nome_file

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment