Quantcast How to Convert PAL DVD to KVCD? - digitalFAQ.com Forums [Archives]
  #1  
02-15-2005, 04:59 PM
oxycotton420 oxycotton420 is offline
Free Member
 
Join Date: May 2004
Location: Lebanon, Beirut
Posts: 228
Thanks: 0
Thanked 0 Times in 0 Posts
Hello i am trying to back up this PAL dvd which is 78 Minutes and 18 seconds. My script that i am using is

Code:
LoadPlugin("D:\KVCD\avisynth plugins\MPEG2Dec3.dll") 
LoadPlugin("D:\KVCD\avisynth plugins\GripFit_YV12.dll") 
LoadPlugin("D:\KVCD\avisynth plugins\STMedianFilter.dll") 
LoadPlugin("D:\KVCD\avisynth plugins\asharp.dll") 
LoadPlugin("D:\KVCD\avisynth plugins\unfilter.dll") 
LoadPlugin("D:\KVCD\avisynth plugins\undot.dll") 
Mpeg2Source("D:\movie\VIDEO_TS\movie.d2v")
undot() 
asharp(1, 4) 
BicubicResize(320,384,0,0.6,0,0,720,576)
STMedianFilter(3, 3, 1, 1 ) 
MergeChroma(blur(1.5)) 
MergeLuma(blur(0.1)) 

AddBorders(16,96,16,96)
#Trim(0,93965).FadeOut(150)  
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)  ") 


function fmin( int f1, int f2) { 
  return ( f1<f2 ) ? f1 : f2 
}
Now according to DVD2AVI the FPS was 20.00 when i encoded this movie using HC encoder. when it was done the movie seemed to play very very rapidly from frame to frame. I thought this might be a FPS issue as i have never dealt with PAL that much. so what do you guys suggest?
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  
02-15-2005, 05:35 PM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
When your source is PAL, you must set the "field operation" (in video menu of DVD2AVI) to "None". This way you will obtain the correct FPS (25 of course).

Note: do not add the borders before the last filter, you will encode a lot faster.

Note2: for a 78 minute you can use 544x576 as resolution !
Reply With Quote
  #3  
02-15-2005, 05:40 PM
oxycotton420 oxycotton420 is offline
Free Member
 
Join Date: May 2004
Location: Lebanon, Beirut
Posts: 228
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Dialhot
When your source is PAL, you must set the "field operation" (in video menu of DVD2AVI) to "None". This way you will obtain the correct FPS (25 of course).
okay thank you phil i will try doing that with dvd2avi

Quote:
Originally Posted by Dialhot
Note: do not add the borders before the last filter, you will encode a lot faster.
i didn't think thank it mattered where i placed the add boarder tag. where exactly should i be placing it?

Quote:
Originally Posted by Dialhot
Note2: for a 78 minute you can use 544x576 as resolution !
yes but this is a very high wuality ANimation movie

Thanks
Reply With Quote
  #4  
02-15-2005, 05:46 PM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by oxycotton420
i didn't think thank it mattered where i placed the add boarder tag. where exactly should i be placing it?
You can easily understand that the more pixels you give to a filter to analyse, the longer is the time to process the whole picture.
And I told you to not place it before the last filter... so after the scriptclip line !
Quote:
yes but this is a very high wuality ANimation movie
The result won't be better with a smaller resolution. Poor results on anime are due to script not adapted to them.
See there : http://www.kvcd.net/forum/viewtopic....ght=dup#115827
Reply With Quote
  #5  
02-15-2005, 05:52 PM
oxycotton420 oxycotton420 is offline
Free Member
 
Join Date: May 2004
Location: Lebanon, Beirut
Posts: 228
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Dialhot
The result won't be better with a smaller resolution. Poor results on anime are due to script not adapted to them.
See there : http://www.kvcd.net/forum/viewtopic....ght=dup#115827
yes i guess adding the dup and remove grain filter might give it a little twist. i'm encoding at 352x576. so even if i encoded at 544x576 resolution with these filters added it should clear up some of the mess.

Note: this movie is shark tale i already read a lot about a similar movie "Finding Nemo" which has a lot of underwater scenes. That is why i am using a low resolution trying to fit it on one cd

Code:
RemoveGrain() 
Deen() 
TemporalCleaner(3,15) 
Dup(threshold=3,maxcopies=3,blend=false)
Reply With Quote
  #6  
02-15-2005, 05:55 PM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by oxycotton420
Note: this movie is shark tale i already read a lot about a similar movie "Finding Nemo" which has a lot of underwater scenes.
Okay, this is a computer animated movie, so do not use the dup line on it.
I'm quite sure that you wontg have any problem at 544x576 with a min bitrate set to 64 and a max to 2300.

Note: I'm not sure HC is very good for low bitrate. WHy don't you use Tmgpenc ???
Reply With Quote
  #7  
02-15-2005, 05:57 PM
oxycotton420 oxycotton420 is offline
Free Member
 
Join Date: May 2004
Location: Lebanon, Beirut
Posts: 228
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Dialhot
Okay, this is a computer animated movie, so do not use the dup line on it.
I'm quite sure that you wontg have any problem at 544x576 with a min bitrate set to 64 and a max to 2300.

Note: I'm not sure HC is very good for low bitrate. WHy don't you use Tmgpenc ???
Okay i will try it with tmpgenc and 544*576 i will tell you results tomorow when encoding is done.
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
KVCD: Convert Mp2 and M1v to Mpg? FloggingDolphin Video Encoding and Conversion 3 01-15-2006 03:35 PM
convert DVD to KVCD? dkl Video Encoding and Conversion 2 10-29-2004 09:38 PM
How to convert WMV to KVCD? p2phunter Video Encoding and Conversion 10 03-29-2004 10:28 PM
how to convert Vcd to kvcd? nighthawk Video Encoding and Conversion 1 03-17-2004 10:15 AM
KVCD: How to convert 23.976 to 29.970 fps ? incognito Video Encoding and Conversion 6 08-18-2003 07:15 PM

Thread Tools



 
All times are GMT -5. The time now is 11:55 PM  —  vBulletin © Jelsoft Enterprises Ltd