Install DivX 3x& 4x. Open DVD2SVCD and go to the Misc. tab folder and enable conv. divx 3x and 4x (may solve CCE problems). Now go to the
Encoder tab folder and enable Safe mode frameserving and try again.
===============================================
NOTE 1. If the AVI your encoding has a widescreen Aspect Ratio of 2.3:1, DVD2SVCD does not have this as a setting to automate the encoding and it has to be adjusted manually, though it does get it right sometimes!
a. In the Conversion tab, change the aspect ratio set to 16:9.
b. Click on the Frameserver tab and change the Edit the Avisynth Script file to Edit as part of Video encoding.
c. Now start the conversion as usual.
d. Stay with the encoding and after the Audio has been extracted & converted and just before the actual encoding start, an AviSynth script window will pop up. In here we have to modify the numbers, this example will explain. Once the correct numbers have been entered, the AddBoarders statement added, then hit the Save button and then the OK button. The encoding will now continue as usual and result in the correct aspect ratio for the movie.
eg: Our AVI had dimensions of, say, 512 x 224 ( X x Y ) as found above. This needs to be resized for a SVCD to 480 x 576 for PAL or 480 x 480 for NTSC. But the pixel aspect ratios of a PC monitor and a PAL or NTSC TV are not the same. PC Monitor pixels have a square pixel aspect ratio of 1:1 but pixel aspect ratio for PAL TV is 54:59 and for an NTSC TV is 11:10.
So the correct resizing parameters for our AVI in this example would be:
For PAL AVI:
Calculated height = ((720 / X) x Y) / (54 / 59)
=((720 / 512) x 224) / (54 / 59)
= 344.16
So the correct "Resize" statement in the AviSynth script would be:
...
BiCubicResize(480,344,0.00,0.60)
...
where the Calculated height of 344.16 has been rounded to 344 to be divisible by 4 (even better if divisible by 16).
Then we add borders on top and bottom to fill the height up to 576 pixels.
Correct borders = (576 - Calculated height) / 2
= (576 - 344) / 2
= 116
So the correct "AddBorders" statement in the AviSynth script would be:
...
BiCubicResize(480,344,0.00,0.60)
AddBorders(0,116,0,116)
...
For NTSC AVI:
Calculated height = ((720 / X) x Y) / (11 / 10)
= ((720 / 512) x 224) / (11 / 10)
= 286.36
So the correct "Resize" statement in the AviSynth script would be:
...
BiCubicResize(480,288,0.00,0.60)
...
where the Calculated height of 286.36 has been rounded up to 288 to be divisible by 4 (even better if divisible by 16).
Then you have to add borders on top and bottom to fill the height up to 480 pixels.
Correct borders = (480 - Calculated height) / 2
= (480 - 288) / 2
= 96
So the correct "AddBorders" statement in the AviSynth script would be:
...
BiCubicResize(480,288,0.00,0.60)
AddBorders(0,96,0,96)
...
NOTE 2. I would strongly suggest not to convert widescreen 2.3:1 acpect ratio AVI's to 16:9 SVCD's. You are struggling to maintain SVCD quality from a DivX, and chopping off any part of the pic is only going to make things worse, not better.
Shoey :)
Asus K8N nVidia nForce3 Pro 250 GB, Athlon 64 3200+, Hitachi 80 gig SATA 150, Corsair XMS 1 gig PC4000, ATI Radeon Saphire 9600 Pro (256 DDR), Windows XP Pro (64 Bit),Lite-ON SOHD 167T,, Plextor PX-712SA,BenQ 1640.

This message has been edited since posting. Last time this message was edited on 28. July 2003 @ 03:38
|