Final Cut would chop AVCHD in no time, however any effects are not visible until rendering and that takes forever (25-30 min on MBP for 2 minute material), and since effects would require a transcode Premiere beats FCP for material that requires adjustments. The workflow is to chop AVCHD in FCP and do post in Premiere or otherwise on Windows transcoding with meGUI since Premiere would display effects rightaway and has better picture adjustments.
FCP will open MPEG-1 from SONY, but would be unable to decode audio and ffmpeg would error out on video when I try to rewrap.
On Mac the only way to transcode arbitrary video is ffmpeg. (Handbrake does better job but works only with MPEG-2 MPG wrapped). Instructions are here, but apparently quality suck (still need to further verify). ffmpeg could crop and resize with "-croptop 60 -cropbottom 88 -cropleft 252 -cropright 252 -s 720x480 -aspect 720:480" and could cut with -ss
The following would crop and resize "Globe Trekker"
ffmpeg -i /Users/zander/Globe\ Trekker_Extra_South_England.mpg -an -croptop 60 -cropbottom 88 -cropleft 252 -cropright 252 -s 720x480 -vcodec libx264 -deinterlace -b 900k -partitions all -me umh -subq 6 -trellis 1 -refs 1 -coder 0 -me_range 16 -level 30 -bt 900k -maxrate 10M - threads 2 England.mp4
ffmpeg -i /Users/zander/Globe\ Trekker_Extra_South_England.mpg -acodec libfaac -ab 96k -croptop 60 -cropbottom 88 -cropleft 252 -cropright 252 -s 720x480 -vcodec libx264 -deinterlace -pass 1 -b 900k -partitions 0 -me epzs -subq 1 -trellis 0 -refs 1 -coder 0 -me_range 16 -level 30 -bt 900k -maxrate 10M -threads 2 England.mp4
and the following would do 720p->480p(wide)
ffmpeg -i /Users/zander/Movies/720p/Christmas\ Party.mov -an -aspect 1280:720 -s 720x480 -vcodec libx264 -pass 1 -b 900k -partitions 0 -me epzs -subq 1 -trellis 0 -refs 1 -coder 0 -me_range 16 -level 30 -bt 900k -maxrate 10M -threads 2 Christmas-orig.mp4
ffmpeg -i /Users/zander/Movies/720p/Christmas\ Party.mov -acodec libfaac -ab 64k -pass 2 -aspect 1280:720 -s 720x480 -vcodec libx264 -b 900k -partitions all -me umh -subq 6 -trellis 1 -refs 1 -coder 0 -me_range 16 -level 30 -bt 900k -maxrate 10M -threads 2 Christmas-orig.mp4
No comments:
Post a Comment