Hello,
I'm using the latest version of ffmpegX 0.0.9t and ran into a problem converting both a VIDEO_TS and single VOB files into a QuickTime movie file using Xvid.
It generally happens when I have to crop the letterboxes out and set the Video size to a non-4:3 resolution (eg. 320x176, 640x368).
When it's done, I get a 492x368 px (or 312x176 px if used the smaller example) QuickTime movie, an oddly shaped 4:3 movie, minus the letterboxes.
Is there a problem with the ffmpeg encoder or something?
Results 1 to 3 of 3
-
-
Hello,
I have come upon a similar problem using the latest 0.0.9xr2 version of ffmpegX.
I found a workaround for ffmepgX not passing the correct arguments to ffmpeg.
It may probably interest anyone wanting to crop a video using ffmpeg.
I had made the acquisition of a digital terrestrial 720x576 mpeg2 video clip that was letterboxed with two black bands of 76 pixels height each.
I wanted to crop the video while converting from MP2 to MP4.
I tried any number of combinations including the use of crop params and video resize formats that made sense. No matter what, the video output would be satisfactorily cropped but stretched vertically to make its aspect 4:3. Yuk.
I further tried typing direct commands under the terminal shell, following the example of the commands I could observe in the ffmpegX progress.
Bottom line : these commands in the shell terminal made the trick
1) /Applications/ffmpegX.app//Contents/Resources/ffmpeg -i file.mpg -y -threads 2 -vtag DIVX -map 0.0:0.0 -f avi -vcodec mpeg4 -b 977 -aspect 720:424 -croptop 76 -cropbottom 76 -r pal -g 240 -me epzs -qmin 2 -qmax 15 -bf 1 -qpel -trell -acodec copy -map 0.1:0.1 -benchmark -pass 1 -passlogfile file.mpg.ff.avi file.mpg.ff.avi
2) the second command is the same as the first, replacing -pass 1 with -pass 2
Yes, this was a two-pass encoding, I always check the best encoding options, this is performed only once.
The point I want to make is : use the -aspect 720:424 to pass the cropped video resize parameters and leave aside the -s 720x424 size parameters that ffmpegX will provide.
I would suggest to Major or whoever maintains the ffmepgX program to set these options when cropping and provide a set of non-constraint video size parameters.Regards,
JF
Similar Threads
-
How to change single VOB file to VIDEO_TS folder
By skyllasibe in forum Newbie / General discussionsReplies: 10Last Post: 9th Jun 2013, 05:02 -
Is the VIDEO_TS folder supposed having the .VOB file?
By coody in forum DVD RippingReplies: 6Last Post: 19th Dec 2011, 01:38 -
VIDEO_TS to AVI xVid with AC3 5.1 passthrough - problems
By couldtryharder in forum ffmpegX general discussionReplies: 11Last Post: 29th Nov 2011, 09:08 -
create video_ts from vob file
By stockton209 in forum Video ConversionReplies: 1Last Post: 7th Jan 2010, 17:33 -
The Essential of VIDEO_TS.VOB file
By cn9601 in forum Authoring (DVD)Replies: 3Last Post: 24th Mar 2008, 02:17