Convertire file mov in mp4
./convert_video.sh nome_file
#!/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