04-07-2004, 01:52 PM
|
Free Member
|
|
Join Date: Jul 2002
Location: Liverpool, UK
Posts: 832
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
anyone know why I get small pauses in video when there is some sort of camera pan/zoom or rotating object??
looks fine on pc but when watched on dvd player there they are.
|
Someday, 12:01 PM
|
|
Site Staff / Ad Manager
|
|
Join Date: Dec 2002
Posts: 42
Thanks: ∞
Thanked 42 Times in 42 Posts
|
|
|
04-07-2004, 02:12 PM
|
Free Member
|
|
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
If you work in VCD that want to say that your player does not handle VBR MPEG1 so well.
|
04-08-2004, 02:20 AM
|
Free Member
|
|
Join Date: Jul 2002
Location: Liverpool, UK
Posts: 832
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
its not VCD it was a avi to KDVD, I have played vcds, kvcds, kdvds on my dvd player all play fine so I'm a litte cofused to whats wrong.
I used optimal script and these two lines are the only difference:
- AVISource("C:\movie.avi")
converttoYV12()
is this right?
|
04-08-2004, 03:46 AM
|
Invalid Email / Banned / Spammer
|
|
Join Date: Aug 2002
Location: Brasil - MG - third stone from the sun
Posts: 5,570
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
andybno1,
could it be interlaced or ivtc ?
when was encoding dumbo (Disney) was needed redo using
Telecide(order=1,guide=1,post=2,vthresh=30)
to remove seamless moviments !
but i did skvcd (480x480), don't know if Kdvd need something like this !
take a look in the ink's thread "Interlaced / Progressive ... "
http://www.kvcd.net/forum/viewtopic.php?t=9808
|
04-08-2004, 08:17 AM
|
Free Member
|
|
Join Date: Mar 2003
Location: Palma de Mallorca - España
Posts: 2,925
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Quote:
Originally Posted by andybno1
its not VCD it was a avi to KDVD, I have played vcds, kvcds, kdvds on my dvd player all play fine so I'm a litte cofused to whats wrong.
I used optimal script and these two lines are the only difference:
- AVISource("C:\movie.avi")
converttoYV12()
is this right?
|
It is better if you configure codecs (DivX and XviD) than using converttoYV12(). You can read about this beginning here
Did you encode it as usual?
|
04-08-2004, 09:41 AM
|
Free Member
|
|
Join Date: Jul 2002
Location: Liverpool, UK
Posts: 832
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
thanx for that jorel I'll try it out.
Prodater64: I don't know how the avi was encoded as a friend done it for me an the avi is an xvid avi file.
here are details of xvid that I got through vdub:
|
04-08-2004, 12:34 PM
|
Free Member
|
|
Join Date: Mar 2003
Location: Palma de Mallorca - España
Posts: 2,925
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Sorry, I was talking about your mpg encode. You encode it as usual? Same resolution, same encoder, same script, or change any setting that could be cause of your problem?
|
04-08-2004, 12:56 PM
|
Free Member
|
|
Join Date: Jul 2002
Location: Liverpool, UK
Posts: 832
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
well the avi file is: 592X320 and NTSC
encoded to KDVD PAL 720X576 (anamorphic)
and script I used was:
Code:
##Main section and static filters ###
#
AVISource("C:\movie.avi")
converttoYV12()
#
undot()
asharp(1, 4)
GripCrop(720, 576)
GripSize(resizer="BicubicResize")
STMedianFilter(3, 3, 1, 1 )
MergeChroma(blur(1.5))
MergeLuma(blur(0.1))
#
#
##Linear Motion Adaptive Filtering ##
#
#( Portions from AviSynth's manual )
#This will apply variable temporalsoften
#and variable blur.
#Both filters are active at all times, and work inversely proportional to the
#activity, measured from current frame to next frame.
ScriptClip(" nf = YDifferenceToNext()" +chr(13)+ "unfilter( -(fmin(round(nf)*2, 100)), -(fmin(round(nf)*2, 100))).TemporalSoften( fmin( round(2/nf), 6), round(1/nf), round(3/nf), 1, 1) "
#
#
#
GripBorders()
#LetterBox( Your_Values_Here )#Depends on situation. Use MovieStacker!
#
#
##Functions ###
function fmin( int f1, int f2){
return ( f1<f2 )? f1 : f2
}
#
####
|
04-10-2004, 11:03 AM
|
Free Member
|
|
Join Date: Mar 2003
Posts: 243
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Quote:
well the avi file is: 592X320 and NTSC
encoded to KDVD PAL 720X576 (anamorphic)
|
Taking this in mind and looking at the script I would say it is a frame rate problem
|
04-10-2004, 11:44 AM
|
Free Member
|
|
Join Date: Jul 2002
Location: Liverpool, UK
Posts: 832
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
so whats the best way to convert from ntsc to pal??
|
04-10-2004, 12:51 PM
|
Free Member
|
|
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
The best is to NOT convert. Did you ever try to give NTSC KDVD to your player ?
Else just add "assumefps(25)" at the end of your script and don't forgot to use the correct setting in besweet to convert also your audio form 23.976 to 25.
Note: you source is 23.97, right ? or is it 29.970?
|
04-10-2004, 01:34 PM
|
Free Member
|
|
Join Date: Jul 2002
Location: Liverpool, UK
Posts: 832
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
fps is 23.976
I have tried this as ntsc an doesn't play on my dvd player I get a green screen but plays fine when I done it as pal.
|
All times are GMT -5. The time now is 06:39 AM — vBulletin © Jelsoft Enterprises Ltd
|