Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion.

Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules.

 

Go Back   Doom9's Forum > Capturing and Editing Video > VapourSynth

Closed Thread
 
Thread Tools Search this Thread Display Modes
Old 21st July 2018, 14:53   #1  |  Link
ThePi7on
Registered User
 
ThePi7on's Avatar
 
Join Date: Jan 2017
Location: Italy
Posts: 7
output with wrong aspect ratio

Hi, VapourSynth beginner here, and also fist time poster, so I hope I'm in the right section.

So I was experimenting a bit, and I realized the output has the wrong aspect ratio, even if ClipInfo reports the correct resolution.

Problem also persists if I only output the source without any filer applied.

As you can see, the the dragon ball in the center appears deformed.

Here's my script
Code:
import vapoursynth as vs
import havsfunc as haf
core = vs.get_core()

video = core.lsmas.LWLibavSource(r"G:\DOWNLOAD TORRENT 2\01. Son Goku Saga\[Pendekar] Dragon Ball - 001 [Dragon Box] [Dual Audio].mkv.!ut").text.ClipInfo()

src=video

super = core.mv.Super(video, pel=2, sharp=1)

backward_vec3 = core.mv.Analyse(super, blksize = 4, isb = True, delta = 3, overlap=2)
backward_vec2 = core.mv.Analyse(super, blksize = 4, isb = True, delta = 2, overlap=2)
backward_vec1 = core.mv.Analyse(super, blksize = 4, isb = True, delta = 1, overlap=2)

forward_vec1 = core.mv.Analyse(super, blksize = 4, isb = False, delta = 1, overlap=2)
forward_vec2 = core.mv.Analyse(super, blksize = 4, isb = False, delta = 2, overlap=2)
forward_vec3 = core.mv.Analyse(super, blksize = 4, isb = False, delta = 3, overlap=2)

video = core.mv.Degrain3(video, super, backward_vec1,forward_vec1,backward_vec2,forward_vec2,backward_vec3,forward_vec3, thsad=400)

#video = haf.EdgeCleaner (video, 10)
#video = haf.DeHalo_alpha (video)
video = haf.ContraSharpening(video, src, radius=1)

## double video
#out=core.std.StackHorizontal([video, src])
#out.set_output()

video.set_output()
Thanks in advance for the help
Attached Files
File Type: txt src_info.txt (7.2 KB, 17 views)
ThePi7on is offline  
Old 21st July 2018, 16:29   #2  |  Link
Wilbert
Moderator
 
Join Date: Nov 2001
Location: Netherlands
Posts: 6,364
Please have a look at the forum rules. Especially rule 6. Thanks. Thread closed.
Wilbert is offline  
Closed Thread

Tags
aspect ratio, wrong

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 13:29.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.