digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Video Encoding and Conversion (http://www.digitalfaq.com/archives/encode/)
-   -   KVCD: GREEN strip on the right side of screen? (http://www.digitalfaq.com/archives/encode/13667-kvcd-green-strip.html)

spolik 07-09-2005 07:52 PM

KVCD: GREEN strip on the right side of screen?
 
hello i`ve been really busy with this new great hobby. this is awesome being able to compress my store bought dvd to small so i can put on kids pc so he can watch in his room on his pc.. ok now i had an old vhs tape i bought at yardsale that had monster inc on it. i got it to pc then run it though dvdtoavi got 4:3, 23.976fps progressive and audio is mpeg, so i changed audio from dolby to mpeg and got my d2v file and my mpa file.
then i went though all the steps and got the movie and audio mixed together but i have this GREEN strip on the right hand side of screen??

Dialhot 07-09-2005 08:24 PM

1/ I really doubt your source is 23.976 progressive.
How did you process from VHS to PC ?

2/ dvd2avi is aimed to read... dvd !
If your source is a standard MPEG, you can process it directly with DirectShowSource in Avisynth script.

spolik 07-10-2005 06:59 AM

to get vhs to pc i use intervideo home theather to record the video while watching it. in intervideo i have 3 settings, [Real-time Good]
Format: MPEG-2

Audio:
Format: MPEG-1 Layer II
Sampling Rate: 44.1 kHz 16-bit Stereo
Bit Rate: 224 KBits/sec

Video:
Size: 320x240
Frame Rate: 29.97 frames/sec
Bit Rate: 1800 KBits/sec

Total:
Bit Rate: 2099 KBits/sec
File split size : 4063 MBytes
Total record time : 7132 minutes


[Real-time Better]
Format: MPEG-2

Audio:
Format: MPEG-1 Layer II
Sampling Rate: 44.1 kHz 16-bit Stereo
Bit Rate: 224 KBits/sec

Video:
Size: 352x480
Frame Rate: 29.97 frames/sec
Bit Rate: 3600 KBits/sec

Total:
Bit Rate: 3971 KBits/sec
File split size : 4063 MBytes
Total record time : 3770 minutes


[Real-time Best]
Format: MPEG-2

Audio:
Format: MPEG-1 Layer II
Sampling Rate: 44.1 kHz 16-bit Stereo
Bit Rate: 224 KBits/sec

Video:
Size: 640x480
Frame Rate: 29.97 frames/sec
Bit Rate: 7200 KBits/sec

Total:
Bit Rate: 7715 KBits/sec
File split size : 4063 MBytes
Total record time : 1940 minutes


these are the settings i used the best and got two files that i made into an avi file to get both files together then converted the avi file into mpg with tmpceng and changed the setting in there to mpeg-1 video , size 352x240,ascect ratio to 4:3 525 line,frame rate to 23.971... now i`m still a newbie and now i`m sure that i`m doing something wrong and probalby the long way but it`s fun and all a learning experience. i`m getteing it but not at 100% think i`m only bout 60% understanding it lol.

Dialhot 07-10-2005 08:49 AM

Quote:

Originally Posted by spolik
these are the settings i used the best

So you can read in the spec you gave that your file is not 23.976 progressive. Isn't it ? Your file is more probably 29.970 truly interlaced.

Quote:

and got two files that i made into an avi file
:!::!::!:
You have a mpeg that you convert into a avi before to turn back into mpeg again ? Which codec did you use for that AVI ?

Never convert more than necessary !

Quote:

i`m getteing it but not at 100% think i`m only bout 60% understanding it lol.
The very first thing to do I presume is to stop thinking that nothing can be done without using A - V - I.

Do you know how to use an avisynth script ? Because here this will be absolutly necessary.

spolik 07-10-2005 10:34 AM

You have a mpeg that you convert into a avi before to turn back into mpeg again ? Which codec did you use for that AVI ?
i use camtasia studio to join the two files together to make one file and mpeg is not an option so i make avi.

Quote:

i`m getteing it but not at 100% think i`m only bout 60% understanding it lol.
The very first thing to do I presume is to stop thinking that nothing can be done without using A - V - I.

i guess the first thing i need to do is stop assuming that i now 60%lol i guess i`m down to like maybe 30% now

Do you know how to use an avisynth script ? Because here this will be absolutly necessary.[/quote]
i`m starting to think that i don`t no how to use avisynth script because i just keep opening fitcd then paste the script that i copied and pasted

LoadPlugin("c:\program files\avisynth 2.5\plugins\MPEG2Dec3.dll")
LoadPlugin("c:\program files\avisynth 2.5\plugins\asharp.dll")
LoadPlugin("c:\program files\avisynth 2.5\plugins\UnDot.dll")
LoadPlugin("c:\program files\avisynth 2.5\plugins\UnFilter.dll")
LoadPlugin("c:\program files\avisynth 2.5\plugins\vsfilter.dll")
LoadPlugin("c:\program files\avisynth 2.5\plugins\STMedianFilter.dll")

Mpeg2Source("c:\just testing\monster1.d2v")

undot()
Limiter()
asharp(1, 4)
BicubicResize(336, 222, 0, 0.6, 0, 2, 720, 476)
STMedianFilter(3, 3, 1, 1 )
MergeChroma(blur(1.5))
MergeLuma(blur(0.1))

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) ")

AddBorders(8, 9, 8, 9)
Limiter()

function fmin( int f1, int f2) { return ( f1<f2 ) ? f1 : f2}

i always just use this and keep change the mpeg2source to the file i`m doing.
just when i thought i knew some stuff i dont. lol so i`m off to read more on avisynth

kwag 07-10-2005 10:44 AM

Quote:

Originally Posted by spolik
lol so i`m off to read more on avisynth

Hi spolik,

Take a look here :)
http://www.avisynth.org/index.php?page=YourFirstScript

-kwag

Dialhot 07-10-2005 10:58 AM

Quote:

Originally Posted by spolik
i use camtasia studio to join the two files together to make one file and mpeg is not an option so i make avi.

What are these two files you want/need to join ?
And forget quicly anything that uses avi except if this is with a lossless codec (like huffman) but I habe big doubt about that in your case.

Quote:

i always just use this and keep change the mpeg2source to the file i`m doing.
In the present case you also have to deinterlace your source.
After some read about avisynth, you can go there :
http://www.kvcd.net/forum/viewtopic.php?t=8678


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

Site design, images and content © 2002-2024 The Digital FAQ, www.digitalFAQ.com
Forum Software by vBulletin · Copyright © 2024 Jelsoft Enterprises Ltd.