Quantcast KDVD: Aspect Ratio, Interlace, Anamorphic ? - digitalFAQ.com Forums [Archives]
Go Back    digitalFAQ.com Forums [Archives] > Video Production Forums > Video Encoding and Conversion

Reply
 
LinkBack Thread Tools
  #1  
09-14-2004, 03:31 PM
the viking the viking is offline
Free Member
 
Join Date: Sep 2004
Location: Norway
Posts: 174
Thanks: 0
Thanked 0 Times in 0 Posts
Hello!
I've captured my SVHS-tapes,and want to convert them to KDVD.
Using the KDVD-720x576-Full-D1_Pal_ template with TMPGEnc.
I've been using this Script:

LoadPlugin("C:\Programfiler\AviSynth 2.5\plugins\MPEG2Dec3.dll")
LoadPlugin("C:\Programfiler\AviSynth 2.5\plugins\Grip.dll")
LoadPlugin("C:\Programfiler\AviSynth 2.5\plugins\STMedianFilter.dll")
LoadPlugin("C:\Programfiler\AviSynth 2.5\plugins\asharp.dll")
LoadPlugin("C:\Programfiler\AviSynth 2.5\plugins\unfilter.dll")
LoadPlugin("C:\Programfiler\AviSynth 2.5\plugins\undot.dll")
LoadPlugin("C:\programfiler\AviSynth 2.5\plugins\kerneldeint.dll")
#
####
## Main section and static filters ###
#
AviSource("G:\Captured Video\Video 1.avi",true)
ConvertToYV12
KernelBob(order=0,sharp=true,threshold=7)
AssumeFrameBased()
Undot()
asharp(1, 4)
GripCrop(720, 576, overscan=1, source_anamorphic=false, dest_anamorphic=false)
GripSize(resizer="BicubicResize")
STMedianFilter(3, 3, 1, 1 )
MergeChroma(blur(1.5))
MergeLuma(blur(0.1))
SeparateFields()
SelectEvery(4,0,3)
Weave()

(I Know this is a DVD-source script,but I choosed to use it beacause the
Captured video was of pretty good quality.)

1. When I open the files in Gspot I get res. 720x540(1.33:1=4:3),
am I right this is NOT anamorphic film??

2. When I use the mentioned template,the default AR setting is 16:9 Display,
Is it a good idea to change it to 4:3 Display to get the right AR??or am I wrong?

3. When I open DV files in Gspot I get res.720x576(1.25:1=5:4),
how to get the correct AR from this one using TMPEGnc??
4. and I also read somewhere in this pages that DV can be Anamorpic,
any easy way to find out???

Thanks a lot!!!

--------------
Finn
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  
09-14-2004, 04:06 PM
Peter1234 Peter1234 is offline
Free Member
 
Join Date: Feb 2003
Posts: 237
Thanks: 0
Thanked 0 Times in 0 Posts
Do a search for "Guide to dealing with interlaced sources" by Boulder. I think it is in the Optimal Scripts topic.

There is no native anamorphic mode for DV like there is in mpeg2. But some DV cameras will encode an anamorphic image into a regular DV 720x480 frame (such as the Canon XL2). You could also use an anamorphic adapter lens. However, most DV cameras that record 16:9 use letterbox video.
Reply With Quote
  #3  
09-14-2004, 04:21 PM
the viking the viking is offline
Free Member
 
Join Date: Sep 2004
Location: Norway
Posts: 174
Thanks: 0
Thanked 0 Times in 0 Posts
I read that guide and modified my script,
the script above are for DV,Interlace,Bottom Field first,
SVHS got top field first,my mistake

The Interlace part is correct ,I think,im more
worried about the AR and anamorphic settings

I want to avoid "coneheads" in my movies if possible!!!

--------------------

Finn.
Reply With Quote
  #4  
09-14-2004, 04:37 PM
Peter1234 Peter1234 is offline
Free Member
 
Join Date: Feb 2003
Posts: 237
Thanks: 0
Thanked 0 Times in 0 Posts
The script you posted is for a 4:3 display. If your source material is anamorphic you need to change "source_anamorphic=false" to "source_anamorphic=true" and "dest_anamorphic=false" to "dest_anamorphic=true" in the GripCrop statement. This will cause the output mpeg2 to have an anamorphic flag.
Reply With Quote
  #5  
09-14-2004, 04:47 PM
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
great Peter !
Reply With Quote
  #6  
09-14-2004, 05:00 PM
the viking the viking is offline
Free Member
 
Join Date: Sep 2004
Location: Norway
Posts: 174
Thanks: 0
Thanked 0 Times in 0 Posts
Yeah I see,
but one more question,
as far as I can see non of my cameras,SVHS and DV,have any 16:9
"equipment",so I think the movie is non-anamorphic.(I saw a post from Dialhot somewhere,where he said that 99% of .avi files wasn't anamorphic )
I've looked in the DV-cam user-guide,the 16:9 lens was extra-equipment.
but back to the question,if I change from "Full Screen" to "Full Screen Keep Aspect Ratio 2" in TMPGEnc I got sideborders when encoding,will those borders show on a 4:3 TV???or only on a 16:9 TV??
(maybe a stupid question but I take the chance )

------------
Finn.
Reply With Quote
  #7  
09-14-2004, 05:10 PM
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
it's not a better choice changing in the encoder!
do like Peter1234 recomendations changing the script, not in tmpgenc.
and that borders, you can see in the pc but not on tv.
do that:
encode a few minutes from your S-vhs source, burn in RW and play in your standalone/tv!
remove your doubts with this little test!
Reply With Quote
  #8  
09-14-2004, 05:18 PM
Peter1234 Peter1234 is offline
Free Member
 
Join Date: Feb 2003
Posts: 237
Thanks: 0
Thanked 0 Times in 0 Posts
the viking,
If you are encoding anamorphic with TMPGEnc you will also need to set the Aspect Ratio on the Video tab to 16:9 in order to get anamorphic output.
Reply With Quote
  #9  
09-14-2004, 05:28 PM
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
Quote:
Originally Posted by Peter1234
the viking,
If you are encoding anamorphic with TMPGEnc you will also need to set the Aspect Ratio on the Video tab to 16:9 in order to get anamorphic output.
yeah, right again Peter.
after read that last details i understood!

i did my recomendations to do tests cos i never encode from s-vhs
(i only encode dvds) and don't knew what could happen,then,
trusting in your hints, i post my confirmations to the viking.
and a little sample in standalone is a good hint to remove doubts!
Reply With Quote
  #10  
09-14-2004, 05:31 PM
Peter1234 Peter1234 is offline
Free Member
 
Join Date: Feb 2003
Posts: 237
Thanks: 0
Thanked 0 Times in 0 Posts
the viking,
If your input video is not anamorphic just encode everything using 4:3 aspect ratio.

Hi jorel,
Thanks for checking.
Reply With Quote
  #11  
09-14-2004, 05:38 PM
the viking the viking is offline
Free Member
 
Join Date: Sep 2004
Location: Norway
Posts: 174
Thanks: 0
Thanked 0 Times in 0 Posts
okey,I'll try that,using following line: GripCrop(720, 576, overscan=1, source_anamorphic=false, dest_anamorphic=false) and change from 16:9 Display to 4:3 in TMPGEnc settings.
Thanks!
---------------
Finn.
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
TMPGEnc: Aspect Ratio vs Source Aspect Ratio? Brenth Video Encoding and Conversion 3 08-14-2008 03:26 AM
KDVD: Correct aspect ratio conversion process supermule Video Encoding and Conversion 7 09-15-2005 04:21 AM
KDVD: How to set Full screen (keep aspect ratio) as default? lbhl Video Encoding and Conversion 1 07-08-2005 05:34 PM
First KDVD - sampler, aspect ratio, general problems ZoMBiE Video Encoding and Conversion 17 05-04-2005 09:08 AM
Aspect ratio vs source aspect ratio? marky Video Encoding and Conversion 1 08-02-2002 07:09 PM




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