#!/bin/bash

for f in *.mp4; do
    mv $f $f.old
    ffmpeg -i $f.old -c:a copy -c:v copy $f
done
