Rotate all videos in current directory 90 degrees and remove rotate metadata that's used by iOS & Quicktime.
find *.mp4 | xargs -I {} ffmpeg -i "{}" -v 0 -vf "transpose=1" -qscale 0 -y -metadata:s:v:0 "rotate=0" "rotated/{}"
Print the width, height and filename for every video in the current directory