So I've been doing pretty good withmy avi downloads converting them for playing on my standalone DVD player, but this file's got me puzzled.
According to FitCD, the aspect is 4:3 (640 x 480) 1.333. My destination is 720 x 480.
In Tmpgenc, my source aspect ration is 1:1, My size is 720 x 480, the aspect ration is 4:3.
My script is not re-sizing. So how come I keep getting a squashed output?
What am I overlooking here?
![]()
+ Reply to Thread
Results 1 to 20 of 20
-
-
What are your resize settings in TMPGEnc?
If your script has no resizing string you have to do it in your encoder so that 640=>720 and 480=>480 with disabled keep aspect ratio setting (otherwise you'll encode vertical black borders with your video). In pixels you'll have 3:2 (720:480) for NTSC but it's 4:3 flag in MPEG that makes image displayed as 4:3.
Test playback in a true software DVD player like PowerDVD to be sure*.
What does your script do if not resizing, does it crop or add borders for letterboxing or something else? If not and your video is originally 4:3 .avi you can import it directly and resize in the encoder.
You can also apply advanced AviSynth resizing procedures like Lanczos4Resize(720,480) or Spline36Resize(720,480) (v.2.57 only) and disable resizing in your encoder.
*Just noticed your screen capture (had pictures disabled in my browser), it looks like a player doesn't recognise it as MPEG and displays it the same as avi (square pixels), it sometimes happens with MediaPlayerClassic and others. What player do you use? -
Originally Posted by buddycat
-
This was captured off my authoring program. I just snapped it in my authoring program (Nero) to illustrate the problem.
-
Your source is a 640x480 AVI, which you then want to convert to 720x480 DVD? If so, you used FitCD incorrectly, and it's not TMPGEnc's fault.
LanczosResize(720,480)
ConvertToRGB24()
Encode for 4:3. You added that black above and below with the AddBorders command.
You don't really want to add any borders, do you? -
What you see is just the result of adding borders by FitCD in AviSynth (you shouldn't add any borders unless you want a letterboxed image e.g. 16:9 or 2.35:1 on a 4:3 screen). If your source is 4:3 and you want it still fill the screen, remove or disable with '#' the 'borders' string in the script. Check resize settings before encoding or: add a resizing string to the script (as shown above) and disable this function in the encoder.
-
Under what circumstances should I use re-size in the scirpt, vs. doing something in TMGenc? I'm still not clear on that, even from past questions you've answered.
-
Let me clear up this mess of a thread.
You said your source was a MPEG-4 at 1:1 with a resolution of 640x480 so if you had set up FitCD correctly the resize part of your script would have looked like this:
LanczosResize(704,480,0,0,640,480)
AddBorders(8,0,8,0)
Now here is the really important part: When resizing with AviSynth and using TMPGEnc Plus be sure to set the VIDEO ARRANGE METHOD to FULL SCREEN and TMPGEnc Plus will NOT do any resizing itself. In fact it makes NO DIFFERENCE in this case what you set the SOURCE ASPECT RATIO to since TMPGEnc Plus will not be looking at that parameter since it isn't going to do any resizing because you set the VIDEO ARRANGE METHOD to FULL SCREEN since you are doing your resizing in the AviSynth script.
And it's just that simple
- John "FulciLives" Coleman
P.S.
Well you do have to be careful to properly set up TMPGEnc Plus to flag the video as either 4:3 or 16x9 but that goes without saying ... right? heh. :P"The eyes are the first thing that you have to destroy ... because they have seen too many bad things" - Lucio Fulci
EXPLORE THE FILMS OF LUCIO FULCI - THE MAESTRO OF GORE
-
Actually, no, it's not an MPEG 4.
Actually, yes, it's an MPEG-4 (almost certainly). If it's an AVI (an XviD or a DivX), then it's MPEG-4. -
You said the source was an AVI with a 640x480 resolution with an aspect ratio of 1.33:1 so that sure sounds like an MPEG-4 (aka DivX/XviD) file to me.
Also you should do the resizing in AviSynth and that is exactly what FitCD is for ... to help you resize correctly via an AviSynth AVS script.
- John "FulciLives" Coleman"The eyes are the first thing that you have to destroy ... because they have seen too many bad things" - Lucio Fulci
EXPLORE THE FILMS OF LUCIO FULCI - THE MAESTRO OF GORE
-
In fact you need to understand what DAR/PAR mean. In TMPGENC video source setting, the source aspect ratio actually means PAR. If you load source video file directly into TMPGENC, the source aspect ration shoud be 1:1. If you resize your video by avs before loaded into TMPGENC, then the source aspect ration should be changed to whatever you set such as 4:3/16:9.
-
Originally Posted by bronwman
This is assuming you are resizing with AviSynth of course or already have a file that is properly sized i.e., converting a file that is already 720x480 if making a NTSC DVD etc.
- John "FulciLives" Coleman"The eyes are the first thing that you have to destroy ... because they have seen too many bad things" - Lucio Fulci
EXPLORE THE FILMS OF LUCIO FULCI - THE MAESTRO OF GORE
Similar Threads
-
Aspect Ratio Question
By rede96 in forum Newbie / General discussionsReplies: 5Last Post: 14th Aug 2011, 04:17 -
Aspect Ratio Question + Some
By Alexander4444 in forum Video ConversionReplies: 7Last Post: 9th May 2011, 02:17 -
Aspect Ratio Question
By kelticvixen in forum Newbie / General discussionsReplies: 3Last Post: 12th Jan 2009, 13:27 -
aspect ratio question
By brianhj in forum Video ConversionReplies: 6Last Post: 16th Aug 2008, 12:54 -
Aspect Ratio Question (Sorry!)
By rede in forum Newbie / General discussionsReplies: 12Last Post: 30th Dec 2007, 07:25