digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Video Encoding and Conversion (http://www.digitalfaq.com/archives/encode/)
-   -   KVCD: Encoding problem - wide screen streched out to far? (http://www.digitalfaq.com/archives/encode/11256-kvcd-encoding-problem.html)

password 07-31-2004 06:23 PM

KVCD: Encoding problem - wide screen streched out to far?
 
i encoded butterfly effect and the movie came out like a wide screen streched out to far (fat faces) any suggestions? please help :cry:

Dialhot 07-31-2004 06:27 PM

:arrow: Encode differently !

No details in the question leads to no detail in the answer ! We don't have chrystal balls ! :banghead:
Fill this form COMPLETLY : http://www.kvcd.net/forum/viewtopic.php?t=8753

password 07-31-2004 07:11 PM

ntsc dvd
- interlaced: not interlaced

DESTINATION:

- KVCD
- Mode: mpeg 1
- Framerate: 23.976
- Resolution: 352x480
- Audiosamplerate: 44.1 khz
- Audio Enc Type: mp2
- Encoding Appl: TmpgEnc
- muxing Appl: BBmpeg
- Authoring Appl: Vcdeasy
- Burning Appl: Nero

Avisynth Version

- 2.5

Script used

## DLL Section ##
#
LoadPlugin("C:\Filters25\MPEG2Dec3.dll")
LoadPlugin("C:\Filters25\GripFit_YV12.dll")
LoadPlugin("C:\Filters25\STMedianFilter.dll")
LoadPlugin("C:\Filters25\asharp.dll")
LoadPlugin("C:\Filters25\unfilter.dll")
LoadPlugin("C:\Filters25\undot.dll")
#
####
## Main section and static filters ###
#
Mpeg2Source("D:\DVD_VIDEO\BUTTERFLY_EFFECT\DVD2AVI _Project_file.d2v")
#
undot()
asharp(1, 4)
Gripcrop(352, 480,overscan=1,source_anamorphic=true, dest_anamorphic=true)
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
}

#
####

Dialhot 07-31-2004 07:38 PM

Quote:

Originally Posted by password
dest_anamorphic=true

There is the problem. Default is to use "false" for target.
Do you you that on purpose ? For all your KVCD ?

Note: is your source anamorphic ? sure about that ?

password 07-31-2004 08:02 PM

when it plays on my dvd it does not play like a widescreen with big black lines but little black lines on the top and bottom and moviestacker 2.00 beta says the scorce is anamorphic and ITU-R BT.601-4 are checked

Dialhot 07-31-2004 08:12 PM

Set the DESTINATION to non anamorphic in moviestacker (uncheck the "anamorphic" box of the target.
Or just put manually "false" to dest_anamorphic, in the gripcrop line, insteed of "true".

password 07-31-2004 08:18 PM

will do thanx Phil :D

password 08-09-2004 02:31 PM

i encoded the movie and it seems like it's missing some frames (like a picture show). Also when i mux with bbmpeg is knoch matrix (Intra.mtr and Non-Intra.mtr) already encoded or do i have to put it manualy like it is done atuomaticly in dvd2svcd cause the bbmpeg guide left those blank?

Dialhot 08-09-2004 02:57 PM

The matrix embed with multiplexing are basically not used so you can let them blank.

password 08-11-2004 04:26 AM

thanx Phil so what about the slidshow playback? like the camera moves and instead of smooth movement it is choppy. i also bumped the max bitrate to 2500 instead of 1800 (is that the problem?)

Dialhot 08-11-2004 05:17 AM

Choppy movement are sometimes related to MIN bitrate, not MAX. Try to use a upper value for MIN. You can let MAX to 2500 with no problem.

password 08-11-2004 01:14 PM

i used the 352x240 template and keeped every thing defalt but the max bit rate and left the low bitrate its at 300 . i never had a problem with the choppyness with the low bitrate at 300 but i did leave the max biterate at 1800.

password 08-11-2004 08:37 PM

is anamorphic between wide screen and full screen because i just burned the matrix it was not wide screen and i was streched out (long faces) with medium sized bars on the top and bottom. so what do i do? Phil help!!!Anyone!!!

Dialhot 08-12-2004 04:09 AM

I do not understand anything to your question so please explain better.

password 08-12-2004 04:44 PM

i encoded a movie and it was not wide screen like it was supposed to be it was like they had coneheads. how do i fix this? the source is wide screen.

Dialhot 08-13-2004 02:45 AM

Okay. Just copy the script you used ehre and I will tell you what you can modify to fix the problem.

password 08-16-2004 03:00 AM

thanx Phil. here it is
# DLL Section ##
#
LoadPlugin("C:\Filters25\MPEG2Dec3.dll")
LoadPlugin("C:\Filters25\GripFit_YV12.dll")
LoadPlugin("C:\Filters25\STMedianFilter.dll")
LoadPlugin("C:\Filters25\asharp.dll")
LoadPlugin("C:\Filters25\unfilter.dll")
LoadPlugin("C:\Filters25\undot.dll")
#
####
## Main section and static filters ###
#
Mpeg2Source("D:\THE_MATRIX\DVD2AVI_Project_file.d2 v")
#
undot()
asharp(1, 4)
Gripcrop(352, 240,overscan=1,source_anamorphic=false)
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
}

#
####

Dialhot 08-20-2004 02:37 AM

Quote:

Gripcrop(352, 240,overscan=1,source_anamorphic=false)
You tell yourself that the source is widescreen and you don't see where should be the thing to change ?

Hum... source_anamorphic = true... 8)

password 08-24-2004 05:15 PM

so for wide screen movies it should be just
Gripcrop(352, 240,overscan=1,source_anamorphic=true)

Dialhot 08-25-2004 03:41 AM

you can even remove the "source_anamorphic' part as "true" is assume by default.


All times are GMT -5. The time now is 11:09 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.