60p Conform using FFMPEG aka Slow Mo [<Back>] [<Edit>] 60p SlowMo conform + opensourceLoseless quality with using 4444 sub-sampling 60p to 23.98p (24) or 29.97p (30)Just change the resolution ( 1280x720 ) to the native resolution of your footage. In this example, its 720p from the EOS 7D#!/bin/bashfor file in $1/*.MOVdoFILE1=$( eval basename $file | sed "s/.MOV//")ffmpeg -i $file -f rawvideo -pix_fmt yuv420p -vcodec rawvideo -s 1920x1080 -y pipe:1 | ffmpeg -f rawvideo -pix_fmt yuv420p -sameq -r 29.97 -s 1920x1080 -i pipe:0 -y $FILE1done "Slow down! you're getting us both killed!!"Footage shot with Nex5n at 1080p60 @ 1/125 ffmpeg -i 00003.MTS -f rawvideo -pix_fmt yuv444p -vcodec rawvideo -s 1920x1080 -y pipe:1 | ffmpeg -f rawvideo -pix_fmt yuv420p -sameq -r 23.976 -s 1920x1080 -i pipe:0 -y 00003.MP4 By: Ted Simbajon