Trying to make a NTSC DVD
Opend the avi in Gspot and trying to figur out how the script should look like ??
In Gspot it look like this Video: x:y576x240 (2.40:1) [=12:5]
23.976fps
The closest aspect ratio is 1:2.35 ??
Is it possible to encode this source in 16:9 or should it be 4:3 ??
I'll try in 16:9 is this right then ??
BicubicResize ( 720x363 )
AddBorders ( 0,58,0,58 )
I calculated like this.... 1:2.35
480x16:9=853
853/2.35=363
480-363/2=58,5 ( 58 )![]()
![]()
+ Reply to Thread
Results 1 to 10 of 10
-
-
LanczosResize(720,360)
addborders(0,60,0,60)
I'd go 352x480, but thats me.
LanczosResize(352,360)
addborders(0,60,0,60)Ejoc's CVD Page:
DVDDecrypter -> DVD2AVI -> Vobsub -> AVISynth -> TMPGEnc -> VCDEasy
DVD:
DVDShrink -> RecordNow DX
Capture:
VirualDub -> AVISynth -> QuEnc -> ffmpeggui -> TMPGEnc DVD Author -
I've played CVDs (352x480) on my house-mates Sony Trinitron 37" and he was shocked to learn that it was a CD-R and not a DVD. They look good, and are valid DVD video specs, so it can easily be converted to DVD-R.
Ejoc's CVD Page:
DVDDecrypter -> DVD2AVI -> Vobsub -> AVISynth -> TMPGEnc -> VCDEasy
DVD:
DVDShrink -> RecordNow DX
Capture:
VirualDub -> AVISynth -> QuEnc -> ffmpeggui -> TMPGEnc DVD Author -
Or, you could try this:
bilinearresize(854,356)
addborders(0,62,0,62)
bilinearresize(720,480)
Set your authoring program for 16:9 aspect ratio. This is an anamorphic 16:9 video with the borders. You could also crop off some of the horizontal and eliminate the borders, as in this:
crop(0,75,427,480) [check the proper syntax - take 75 pixels off both sides].
bilinearresize(720,480)ICBM target coordinates:
26° 14' 10.16"N -- 80° 16' 0.91"W -
Shit ! I can't even add the script in CCE v2.66 ???
Got error "Frame size 940x56 is not supported,Supported frame size is up to 720x576" ???
With this script :
LoadPlugin("C:\Program\Tillbehör\Virtualdub 1.4.9\plugins\textsub.vdf")
avisource("AManApart.avi")
bilinearresize(854,356)
addborders(0,62,0,62)
bilinearresize(720,480)
TextSub("amanapart21sec.srt")
ResampleAudio(44100)
or this :
LoadPlugin("C:\Program\Tillbehör\Virtualdub 1.4.9\plugins\textsub.vdf")
avisource("AManApart.avi")
BicubicResize(720,360)
AddBorders(0,60,0,60)
TextSub("amanapart21sec.srt")
ResampleAudio(44100)
What the hell is wrong I followed this guide:
http://www.doom9.org/index.html?/mpg/avi2dvdr.htm
-
just for giggles try
Code:#LoadPlugin("C:\Program\Tillbehör\Virtualdub 1.4.9\plugins\textsub.vdf") avisource("AManApart.avi") BicubicResize(720,360) AddBorders(0,60,0,60) #TextSub("amanapart21sec.srt") #ResampleAudio(44100)
Ejoc's CVD Page:
DVDDecrypter -> DVD2AVI -> Vobsub -> AVISynth -> TMPGEnc -> VCDEasy
DVD:
DVDShrink -> RecordNow DX
Capture:
VirualDub -> AVISynth -> QuEnc -> ffmpeggui -> TMPGEnc DVD Author -
just to make things eazy on yourself, try to load the AVS file into
tmpeg first.
that way you will know if there is a problem in the script,
avisynth will show you what you did wrong by writing an error message
in tmpegs preview window.
cce doesnt preview the clip, so avisynth cant tell you where the
problem is.
hope this helps in some way.HELL AINT A BAD PLACE TO BE
Similar Threads
-
Should i use and avisynth script for Dv ?
By smartel in forum Newbie / General discussionsReplies: 0Last Post: 10th Mar 2012, 08:29 -
Need Help with My AviSynth Script
By Enkidu in forum Newbie / General discussionsReplies: 3Last Post: 21st Jan 2011, 21:37 -
Avisynth Script Help
By jamhat in forum Video ConversionReplies: 2Last Post: 29th Nov 2009, 06:13 -
Avisynth script
By daz2712 in forum Video ConversionReplies: 2Last Post: 19th Aug 2009, 11:08 -
avisynth script
By magenta2007 in forum SVCD2DVD & VOB2MPGReplies: 7Last Post: 25th Sep 2007, 11:29