Quantcast Mini Guide for DMR-E20 to KVCD Conversion with FitCD - digitalFAQ.com Forums [Archives]
  #1  
04-22-2002, 09:13 PM
kwag kwag is offline
Free Member
 
Join Date: Apr 2002
Location: Puerto Rico, USA
Posts: 13,537
Thanks: 0
Thanked 0 Times in 0 Posts
You must have AviSynth installed and also download decomb.dll.
These are available at http://www.videotools.net

This method is ONLY for NTSC captures.
Also remember that not all of the NTSC captures can be IVTC'ed, because IVTC can only be done if the source was originally shot on 24fps film.

Inverse Telecine is the procedure for converting 29.976fps Interlaced video into a 23.976 Progressive video.

You will also need the program FitCD available here: http://mitglied.lycos.de/fitcd/

Let's start!:

Open the .VRO file that is in the DVD-RAM with DVD2AVI and create a project. This is needed because we will be using FitCD, and FitCD can't open the .VRO directly. So we will create a project file with DVD2AVI so that FitCD can open the .d2v project file.

Don't use Forced Film , because we will use the decomb filter to automagically do Inverse Telecine.

When your project file is done, close DVD2AVI and run FitCD.

Ignore everything above the red bar that says MPEG resizing.
Now open your .d2v by pressing the Source folder icon and select 1/2 DVD as Destination Size.

Right beside the Crop: select Accurate.

Your file to be saved should look something like this:

LoadPlugin("C:\encoding\MPEG2DEC.dll")
mpeg2source("C:\project.d2v")
BilinearResize(352,480,0,0,352,480)
#TemporalSmoother(2,2)
AddBorders(0,0,0,0)
#Trim(0,1042).FadeOut(150)
#ResampleAudio(44100) # CCE 2.5 'crashfix' for Athlons
## If you want this 'fix' permanently, edit the INI-file:
## Under [AVSscript] set the CCEcrashfix-option to
## CCEcrashfix=1


Save it by clicking on the little floppy icon and save it to something like c:\film.avs

Now here's the fun part.

Open the film.avs file that you just generated in notepad or any other editor.
You can delete all the lines from #Trim all the way down to the end of the file.

Remove the # sign from the line #TemporalSmoother(2,2)


So now you have this:

LoadPlugin("C:\encoding\MPEG2DEC.dll")
mpeg2source("C:\project.d2v")
BilinearResize(352,480,0,0,352,480)
TemporalSmoother(2,2)
AddBorders(0,0,0,0)


Add the following lines to the file:

LoadPlugin("c:\encoding\decomb.dll")
Telecide(reverse=false,swap=false,firstlast=false, post=true,threshold=15,dthreshold=9,blend=true,chr oma=false,y0=0,y1=0)
Decimate(cycle=5,mode=0,threshold=0)


( Cupy+Paste is very handy, isn't it )

The file will look like this:

LoadPlugin("C:\encoding\MPEG2DEC.dll")
LoadPlugin("c:\encoding\decomb.dll")
mpeg2source("C:\project.d2v")
Telecide(reverse=false,swap=false,firstlast=false, post=true,threshold=15,dthreshold=9,blend=true,chr oma=false,y0=0,y1=0)
Decimate(cycle=5,mode=0,threshold=0)
BilinearResize(352,480,0,0,352,480)
TemporalSmoother(2,2)
AddBorders(0,0,0,0)


Save your film.avs file.

In the above example, I assume that your MPEG2DEC.dll and decomb.dll are under c:\encoding

Now film.avs is the file you will open with TMPEG as Video source, and also open your wave file under Audio source.

Your input aspect will be correct because when you opened the .avs file, TMPEG will take the settings from the script. So in this case, you're done with all adjustments. So just start your encode process.

I have just tried this procedure as I was typing, just to be sure that the information I am giving you is correct.

So here it is. "The Mini guide for DMR-E20 to KVCD conversion with FitCD"

Hope this helps,
kwag
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-23-2002, 02:56 PM
Mario Mario is offline
Free Member
 
Join Date: Apr 2002
Location: Staffordshire, UK
Posts: 26
Thanks: 0
Thanked 0 Times in 0 Posts
Can you please help me Kwag - I have (hopefully) followed your instructions - for a VHS capture (PAL) but after approx 1 minute I get following error message:- AVISource: failed to decompress frame 1452 (error -467)

This is my .avs script:
LoadPlugin("C:\Avisynth\MPEG2DEC.dll")
LoadPlugin("c:\Avisynth\decomb.dll")
AviSource("F:\Capture.00.avi")
Telecide(reverse=false,swap=false,firstlast=false, post=true,threshold=15,dthreshold=9,blend=true,chr oma=false,y0=0,y1=0)
Decimate(cycle=5,mode=0,threshold=0)
BilinearResize(320,512,13,0,614,480)
TemporalSmoother(2,2)
AddBorders(0,0,0,0)

I am using Tmpgenc 2.53.

What am I doing wrong?
__________________
Frank
Reply With Quote
  #3  
04-23-2002, 05:04 PM
kwag kwag is offline
Free Member
 
Join Date: Apr 2002
Location: Puerto Rico, USA
Posts: 13,537
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Mario
Can you please help me Kwag - I have (hopefully) followed your instructions - for a VHS capture (PAL) but after approx 1 minute I get following error message:- AVISource: failed to decompress frame 1452 (error -467)

This is my .avs script:
LoadPlugin("C:\Avisynth\MPEG2DEC.dll")
LoadPlugin("c:\Avisynth\decomb.dll")
AviSource("F:\Capture.00.avi")
Telecide(reverse=false,swap=false,firstlast=false, post=true,threshold=15,dthreshold=9,blend=true,chr oma=false,y0=0,y1=0)
Decimate(cycle=5,mode=0,threshold=0)
BilinearResize(320,512,13,0,614,480)
TemporalSmoother(2,2)
AddBorders(0,0,0,0)

I am using Tmpgenc 2.53.

What am I doing wrong?
Nothing Mario. My screw up for not specifying that IVTC is for NTSC.

Use your above script like this:

LoadPlugin("C:\Avisynth\MPEG2DEC.dll")
AviSource("F:\Capture.00.avi")
BilinearResize(320,512,13,0,614,480)
TemporalSmoother(2,2)
AddBorders(0,0,0,0)

You don't need to do IVTC because your capture is PAL.

I will make a note of this immediately in the mini guide.

kwag
Reply With Quote
  #4  
08-16-2002, 05:23 PM
Tom S Tom S is offline
Free Member
 
Join Date: Aug 2002
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Hi, Kwag -

I followed your directions as stated for converting a one hour video clip from my DVD-RAM disk to a VCD. It worked, but the image quality is a lot poorer than the original, which was recorded in the 6 hour mode.

Isn't there a better - and hopefully faster - way to do this than going through TMPGenc? What about Gordian Knot and Divx 5? I have U-Lead Video Studio 5. Would that be useful? Thanks!

Tom S
Reply With Quote
  #5  
08-16-2002, 05:48 PM
kwag kwag is offline
Free Member
 
Join Date: Apr 2002
Location: Puerto Rico, USA
Posts: 13,537
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Tom S
Hi, Kwag -

I followed your directions as stated for converting a one hour video clip from my DVD-RAM disk to a VCD. It worked, but the image quality is a lot poorer than the original, which was recorded in the 6 hour mode.

Isn't there a better - and hopefully faster - way to do this than going through TMPGenc? What about Gordian Knot and Divx 5? I have U-Lead Video Studio 5. Would that be useful? Thanks!

Tom S
Hi Tom,
In 6 hour mode, the quality is Sub-VCD
I never record in 6 hour mode. Only in 1 or 2 hour mode, if I'm going to transcode to (x)VCD. Then the results are great
For MPEG-1 encoding, I don't think you'll find a better encoder than TMPEG.

-kwag
Reply With Quote
  #6  
08-17-2002, 12:16 AM
Tom S Tom S is offline
Free Member
 
Join Date: Aug 2002
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Thanks for the fast response!

I use the 6 hour mode almost exclusively. The quality from my DVD-RAM in the 6 hour mode is pretty darn good, even on my 36" Wega XBR - which is not an HDTV set.

I don't understand why I have to lose so much, just compressing it ~2:1 or so to make an hour fit onto a CD. I've seen entire DVDs reduced to VCD that look _really_good_! That's ~5:1 compression, or so.

So. Is anybody working on software to do this, or should I just wait until newer hardware comes out? I'm just tired of storing all these _tapes_! I want to archive *everything* - including video clips, which I want to archive on regular CDs.

I would be willing to _buy_ a good package that does all that.

Tom S
Reply With Quote
  #7  
05-27-2003, 04:58 PM
Grantman Grantman is offline
Free Member
 
Join Date: Sep 2002
Location: Northfield, IL
Posts: 102
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to Grantman Send a message via AIM to Grantman Send a message via MSN to Grantman Send a message via Yahoo to Grantman
In the miniguide you wrote:

"Don't use Forced Film , because we will use the decomb filter to automagically do Inverse Telecine."

What if the source that has been captured to the DMER-20 (or similar source) was not originally FILM?

Does it make sense to eliminate the following lines from the script:

LoadPlugin("c:\Avisynth\decomb.dll")
Telecide reverse=false,swap=false,firstlast=false,post=true ,threshold=15,dthreshold=9,blend=true,chroma=false ,y0=0,y1=0)
Decimate(cycle=5,mode=0,threshold=0)

And if those lines are removed then is it correct to change the 352x480 template to 29.97 instead of 23.97?

Also... why FitCD and not MovieStacker?
Grantman
Reply With Quote
  #8  
05-27-2003, 05:18 PM
kwag kwag is offline
Free Member
 
Join Date: Apr 2002
Location: Puerto Rico, USA
Posts: 13,537
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Grantman
In the miniguide you wrote:

"Don't use Forced Film , because we will use the decomb filter to automagically do Inverse Telecine."

What if the source that has been captured to the DMER-20 (or similar source) was not originally FILM?

Does it make sense to eliminate the following lines from the script:

LoadPlugin("c:\Avisynth\decomb.dll")
Telecide reverse=false,swap=false,firstlast=false,post=true ,threshold=15,dthreshold=9,blend=true,chroma=false ,y0=0,y1=0)
Decimate(cycle=5,mode=0,threshold=0)

And if those lines are removed then is it correct to change the 352x480 template to 29.97 instead of 23.97?
Yes to all If the source was not telecined, just remove the telecide and decimate and encode at 29.97fps. Remember that you must deinterlace if your target is a (K)VCD, unless your target is a SVCD.
Quote:

Also... why FitCD and not MovieStacker?
Check the date the article was posted

-kwag
Reply With Quote
  #9  
07-07-2003, 11:36 PM
syk2c11 syk2c11 is offline
Free Member
 
Join Date: Jun 2002
Posts: 290
Thanks: 0
Thanked 0 Times in 0 Posts
Hi there,
I am thinking to get a Panasonic DMR-E60, if I use DVD-RW (not DVD-RAM) to record TV programs, what would be the file format in DVD-RW? Is it gonna be .VOBs or something else. Kwag said use DVD2AVI to open .VRO Is VRO file only applicable to DVD-RAM. I just want to make sure I can convert the TV programs into our lovely KVCDs. Thanks.

BTW, is ordinary DVD-Rom (or DVD-burner) able to read DVD-RAM disc?
Reply With Quote
  #10  
07-07-2003, 11:50 PM
kwag kwag is offline
Free Member
 
Join Date: Apr 2002
Location: Puerto Rico, USA
Posts: 13,537
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by syk2c11
Hi there,
I am thinking to get a Panasonic DMR-E60, if I use DVD-RW (not DVD-RAM) to record TV programs, what would be the file format in DVD-RW? Is it gonna be .VOBs or something else.
Hi syk2c11,
Yes, if you record to DVD-R, you get standard VOBs. Only if you use DVD-RAM, you'll get a .VRO file.
Quote:
Kwag said use DVD2AVI to open .VRO Is VRO file only applicable to DVD-RAM.
Yes
Quote:
I just want to make sure I can convert the TV programs into our lovely KVCDs. Thanks.
You sure can
Quote:

BTW, is ordinary DVD-Rom (or DVD-burner) able to read DVD-RAM disc?
Nope . You need a DVD reader/writer that can read DVD-RAM.
I have the Panasonic LF-311, and what I do is I take my DVD-RAM cartridges from the DMR and put them on my PC. Then I copy the .VRO to the hard disk for processing.
I'm not sure about the DMR-E60, but I believe it's basically the same as the E20, 30 series, but it has FireWire. It only supports DVD-R and DVD-RAM. Not DVD-RW . Remember that
Btw, I just got a DMR-E80H, which records to DVD-R, DVD-RAM and 106 hours to Hard Disk

-kwag
Reply With Quote
  #11  
07-08-2003, 12:00 AM
syk2c11 syk2c11 is offline
Free Member
 
Join Date: Jun 2002
Posts: 290
Thanks: 0
Thanked 0 Times in 0 Posts
Kwag,
What! DMR-E80H? Is it the newest model from Panasonic? Is there a link I can read more about it? If DMR-E60 doesn't support DVD-RW, I would rather to get a TV capture card instead then.
Reply With Quote
  #12  
07-08-2003, 12:07 AM
kwag kwag is offline
Free Member
 
Join Date: Apr 2002
Location: Puerto Rico, USA
Posts: 13,537
Thanks: 0
Thanked 0 Times in 0 Posts
Here is the link: http://catalog2.panasonic.com/webapp...Model=DMR-E80H
The manufacturing date on the back of my unit is June 2003 , so I got a brand new unit

-kwag
Reply With Quote
  #13  
09-12-2003, 03:44 AM
syk2c11 syk2c11 is offline
Free Member
 
Join Date: Jun 2002
Posts: 290
Thanks: 0
Thanked 0 Times in 0 Posts
Hi Kwag,
I just bought the DRM-E60 (without hard disk), I have successfully transfer the .VRO to my PC and successfully convert to lovely KVCD
I am wondering if there is a way to import to Adobe Premiere for cutting commercials (by applying transition). Premiere doesn't like .d2v and .VRO I have tried to rename the .VRO to .MPG, video went black but audio is fine. Thanks in advance!
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
Manual File Prediction: Mini How-to Guide kwag Avisynth Scripting 84 07-30-2004 09:12 PM
Mini-guide quick and easy - DVD to (S)KVCD with MencodeMe Prodater64 Video Encoding and Conversion 12 07-16-2004 07:34 PM
Mencoder: New mini-guide for KSVCD maurus Video Encoding and Conversion 0 05-31-2004 04:28 AM
Any Guide for Mpeg to KVCD conversion? mufaa Video Encoding and Conversion 2 04-19-2004 09:59 PM
Where to get DVD to mini-kDVD guide ? Critter Video Encoding and Conversion 0 11-03-2003 01:50 AM

Thread Tools



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