#!/bin/bash
# in /tmp convert my mov citybahn file to x265
# (A short panasonic video clip of a railcar)

cd /tmp

rm -f citybahn.mp4

test -f p1000327.mov || echo "copying"
test -f p1000327.mov || cp -v /mnt/av/video/my-movies/austria-2011/citybahn/p1000327.mov .

time ffmpeg -i p1000327.mov -c:v libx265 -crf 28 -c:a aac -b:a 128k citybahn.mp4


