Quantcast Small Pauses in Video? - digitalFAQ.com Forums [Archives]
  #1  
04-07-2004, 01:52 PM
andybno1 andybno1 is offline
Free Member
 
Join Date: Jul 2002
Location: Liverpool, UK
Posts: 832
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to andybno1 Send a message via Yahoo to andybno1
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.
Reply With Quote
Someday, 12:01 PM
admin's Avatar
Site Staff / Ad Manager
 
Join Date: Dec 2002
Posts: 42
Thanks: ∞
Thanked 42 Times in 42 Posts
  #2  
04-07-2004, 02:12 PM
Dialhot Dialhot is offline
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.
Reply With Quote
  #3  
04-08-2004, 02:20 AM
andybno1 andybno1 is offline
Free Member
 
Join Date: Jul 2002
Location: Liverpool, UK
Posts: 832
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to andybno1 Send a message via Yahoo to 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?
Reply With Quote
  #4  
04-08-2004, 03:46 AM
jorel jorel is offline
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
Reply With Quote
  #5  
04-08-2004, 08:17 AM
Prodater64 Prodater64 is offline
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?
Reply With Quote
  #6  
04-08-2004, 09:41 AM
andybno1 andybno1 is offline
Free Member
 
Join Date: Jul 2002
Location: Liverpool, UK
Posts: 832
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to andybno1 Send a message via Yahoo to andybno1
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:

Reply With Quote
  #7  
04-08-2004, 12:34 PM
Prodater64 Prodater64 is offline
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?
Reply With Quote
  #8  
04-08-2004, 12:56 PM
andybno1 andybno1 is offline
Free Member
 
Join Date: Jul 2002
Location: Liverpool, UK
Posts: 832
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to andybno1 Send a message via Yahoo to andybno1
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
}

#
####
Reply With Quote
  #9  
04-10-2004, 11:03 AM
Abond Abond is offline
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
Reply With Quote
  #10  
04-10-2004, 11:44 AM
andybno1 andybno1 is offline
Free Member
 
Join Date: Jul 2002
Location: Liverpool, UK
Posts: 832
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to andybno1 Send a message via Yahoo to andybno1
so whats the best way to convert from ntsc to pal??
Reply With Quote
  #11  
04-10-2004, 12:51 PM
Dialhot Dialhot is offline
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?
Reply With Quote
  #12  
04-10-2004, 01:34 PM
andybno1 andybno1 is offline
Free Member
 
Join Date: Jul 2002
Location: Liverpool, UK
Posts: 832
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to andybno1 Send a message via Yahoo to andybno1
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.
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
KVCD: video not encoding small enough?! oxide Video Encoding and Conversion 9 07-29-2003 01:04 AM
TMPGEnc: Video squished, file size too small? dionysus Video Encoding and Conversion 2 02-12-2003 08:34 AM
KVCD: Playback pauses on dvd player? jacko Players, DVRs, Media Centers 5 02-09-2003 06:10 PM
KVCD: It creates pauses on my player? katchupoy Players, DVRs, Media Centers 6 01-08-2003 02:33 PM
KVCD has MASSIVE blocks and 5 second pauses all over the place? GreenG0b1n Video Encoding and Conversion 21 06-05-2002 05:50 PM

Thread Tools



 
All times are GMT -5. The time now is 10:17 AM  —  vBulletin © Jelsoft Enterprises Ltd