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 > Avisynth Development

Reply
 
Thread Tools Search this Thread Display Modes
Old 29th May 2019, 13:52   #561  |  Link
LouieChuckyMerry
Registered User
 
LouieChuckyMerry's Avatar
 
Join Date: Feb 2014
Posts: 355
StvG: If input is 16-bit, then would

Code:
ConvertToDoubleWidth()
F3KDB(Input_Mode=2,Output_Mode=2)
ConvertFromDoubleWidth()
be correct?

Last edited by LouieChuckyMerry; 29th May 2019 at 13:53. Reason: Syntax
LouieChuckyMerry is offline   Reply With Quote
Old 29th May 2019, 14:21   #562  |  Link
LouieChuckyMerry
Registered User
 
LouieChuckyMerry's Avatar
 
Join Date: Feb 2014
Posts: 355
real.finder: I was wanting to compare my 16-bit native HBD script with it's 16-bit LSB counterpart, but encountered a problem.

Using the latest SMDegrain (it also happens with the "fixed" version from your last post, so I don't think that's the problem), latest NNEDI_Resize16, and latest EDI_RPow2, this scipt:

Code:
SMDegrain(LSB=True,LSB_Out=True)
NNEDI3_Resize16(Target_Width=960,Target_Height=720,LSB_In=True,LSB=True)
ConvertFromStacked
outputs proper 960x720 video. However, this script

Code:
SMDegrain(LSB=True,LSB_Out=True)
EDI_RPow2(CShift="Spline",FWidth=960,FHeight=720,LSB=True,LSB_Out=True)
ConvertFromStacked
outputs 960x720 video that's still stacked, with the top half stretched out proper video and the bottom half green-acid-flashback.

I'm probably doing something wrong, but I read the EDI_RPow2 .avsi and I think the LSB calls are correct.

Last edited by LouieChuckyMerry; 29th May 2019 at 14:45. Reason: Information
LouieChuckyMerry is offline   Reply With Quote
Old 29th May 2019, 18:20   #563  |  Link
real.finder
Registered User
 
Join Date: Jan 2012
Location: Mesopotamia
Posts: 2,587
Quote:
Originally Posted by LouieChuckyMerry View Post
real.finder: I was wanting to compare my 16-bit native HBD script with it's 16-bit LSB counterpart, but encountered a problem.

Using the latest SMDegrain (it also happens with the "fixed" version from your last post, so I don't think that's the problem), latest NNEDI_Resize16, and latest EDI_RPow2, this scipt:

Code:
SMDegrain(LSB=True,LSB_Out=True)
NNEDI3_Resize16(Target_Width=960,Target_Height=720,LSB_In=True,LSB=True)
ConvertFromStacked
outputs proper 960x720 video. However, this script

Code:
SMDegrain(LSB=True,LSB_Out=True)
EDI_RPow2(CShift="Spline",FWidth=960,FHeight=720,LSB=True,LSB_Out=True)
ConvertFromStacked
outputs 960x720 video that's still stacked, with the top half stretched out proper video and the bottom half green-acid-flashback.

I'm probably doing something wrong, but I read the EDI_RPow2 .avsi and I think the LSB calls are correct.
EDI_RPow2 don't has lsb_in that why, and that why using lsb hack is so annoying and you should avoid it, that aside from most lsb_in things are not real 16bit
__________________
See My Avisynth Stuff

Last edited by real.finder; 29th May 2019 at 19:24.
real.finder is offline   Reply With Quote
Old 29th May 2019, 18:32   #564  |  Link
StvG
Registered User
 
Join Date: Jul 2018
Posts: 447
Quote:
Originally Posted by LouieChuckyMerry View Post
StvG: If input is 16-bit, then would

Code:
ConvertToDoubleWidth()
F3KDB(Input_Mode=2,Output_Mode=2)
ConvertFromDoubleWidth()
be correct?
Yes, If you want 16-bit output.


real.finder, in wiki input_depth=10 should be input_depth=16 or it can be omitted (input_depth=16 is default).
StvG is offline   Reply With Quote
Old 29th May 2019, 18:48   #565  |  Link
real.finder
Registered User
 
Join Date: Jan 2012
Location: Mesopotamia
Posts: 2,587
Quote:
Originally Posted by StvG View Post
real.finder, in wiki input_depth=10 should be input_depth=16 or it can be omitted (input_depth=16 is default).
I fix it with faster way
__________________
See My Avisynth Stuff
real.finder is offline   Reply With Quote
Old 30th May 2019, 04:50   #566  |  Link
StvG
Registered User
 
Join Date: Jul 2018
Posts: 447
Thanks.
StvG is offline   Reply With Quote
Old 30th May 2019, 22:35   #567  |  Link
LouieChuckyMerry
Registered User
 
LouieChuckyMerry's Avatar
 
Join Date: Feb 2014
Posts: 355
Quote:
Originally Posted by real.finder View Post
EDI_RPow2 don't has lsb_in that why, and that why using lsb hack is so annoying and you should avoid it, that aside from most lsb_in things are not real 16bit
OK, thanks, I must've misunderstood the .avsi.


Quote:
Originally Posted by StvG View Post
Yes, If you want 16-bit output.
I do want 16-bit output (I should've indicated that when I asked my question), thank you very much for your answer .
LouieChuckyMerry is offline   Reply With Quote
Old 1st June 2019, 11:58   #568  |  Link
jpsdr
Registered User
 
Join Date: Oct 2002
Location: France
Posts: 2,309
Going back to original topic after some long off-topic... (from what i've seen, it's been a lot of post not related anymore to the thread topic... ).
New version, see first post.
__________________
My github.
jpsdr is offline   Reply With Quote
Old 2nd June 2019, 16:49   #569  |  Link
LouieChuckyMerry
Registered User
 
LouieChuckyMerry's Avatar
 
Join Date: Feb 2014
Posts: 355
Quote:
Originally Posted by jpsdr View Post
Going back to original topic after some long off-topic... (from what i've seen, it's been a lot of post not related anymore to the thread topic... ).
New version, see first post.
Sorry about that, jpsdr . Thanks for the update
LouieChuckyMerry is offline   Reply With Quote
Old 2nd June 2019, 16:52   #570  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,980
Quote:
Originally Posted by LouieChuckyMerry View Post
Sorry about that, jpsdr . Thanks for the update
What he said +1,
Thanks also LCM, I missed the update post.
__________________
I sometimes post sober.
StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace

"Some infinities are bigger than other infinities", but how many of them are infinitely bigger ???
StainlessS is offline   Reply With Quote
Old 3rd June 2019, 00:12   #571  |  Link
real.finder
Registered User
 
Join Date: Jan 2012
Location: Mesopotamia
Posts: 2,587
Quote:
Originally Posted by jpsdr View Post
Going back to original topic after some long off-topic... (from what i've seen, it's been a lot of post not related anymore to the thread topic... ).
New version, see first post.


and I suggest Moderators move those posts to my Thread http://forum.doom9.org/showthread.php?t=174121
__________________
See My Avisynth Stuff
real.finder is offline   Reply With Quote
Old 4th June 2019, 19:04   #572  |  Link
Taurus
Registered User
 
Taurus's Avatar
 
Join Date: Mar 2002
Location: Krautland
Posts: 903
Let me chime in...
Thanks for the update, jpsdr!
Taurus is offline   Reply With Quote
Old 5th June 2019, 11:09   #573  |  Link
Forteen88
Herr
 
Join Date: Apr 2009
Location: North Europe
Posts: 556
Thanks!
Quote:
Change list:
30/05/2018 v0.9.4.52
Shouldn't it be the year 2019?!
Forteen88 is offline   Reply With Quote
Old 6th June 2019, 09:32   #574  |  Link
jpsdr
Registered User
 
Join Date: Oct 2002
Location: France
Posts: 2,309
Yes, i've noticed it for the readme, forget the first page here.
__________________
My github.

Last edited by jpsdr; 6th June 2019 at 10:09.
jpsdr is offline   Reply With Quote
Old 7th June 2019, 11:59   #575  |  Link
jpsdr
Registered User
 
Join Date: Oct 2002
Location: France
Posts: 2,309
New version, see first post.
__________________
My github.
jpsdr is offline   Reply With Quote
Old 7th June 2019, 12:07   #576  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,980
OOOooooh lovely, thanks again.
__________________
I sometimes post sober.
StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace

"Some infinities are bigger than other infinities", but how many of them are infinitely bigger ???
StainlessS is offline   Reply With Quote
Old 28th April 2020, 23:41   #577  |  Link
jpsdr
Registered User
 
Join Date: Oct 2002
Location: France
Posts: 2,309
New version, see first post.
__________________
My github.
jpsdr is offline   Reply With Quote
Old 30th April 2020, 10:05   #578  |  Link
ChaosKing
Registered User
 
Join Date: Dec 2005
Location: Germany
Posts: 1,795
Hmm the link works on the first page, but there is no binary linked in the latest release on github?
https://github.com/jpsdr/NNEDI3/releases
__________________
AVSRepoGUI // VSRepoGUI - Package Manager for AviSynth // VapourSynth
VapourSynth Portable FATPACK || VapourSynth Database
ChaosKing is offline   Reply With Quote
Old 30th April 2020, 10:11   #579  |  Link
jpsdr
Registered User
 
Join Date: Oct 2002
Location: France
Posts: 2,309
It seems that something gone wrong with github when i've uploaded the binary, but i didn't notice. It should be fine now.
__________________
My github.
jpsdr is offline   Reply With Quote
Old 4th May 2020, 17:54   #580  |  Link
mp3dom
Registered User
 
Join Date: Jul 2003
Location: Italy
Posts: 1,135
Am I the only one to have problems with the latest version (.54)? Especially with qtgmc, I get lots of black frames at the end of a video (that doesn't have black frames) that I'm going to deinterlace, and lots of ghosting. Keeping all the other plugins the same (mvtools, masktools) and reverting back to version .53 seems to fix everything.

Edit: Ok, I'm not the only one... It's exactly this:
https://forum.doom9.org/showthread.p...16#post1910416

Last edited by mp3dom; 4th May 2020 at 17:56.
mp3dom is offline   Reply With Quote
Reply

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 03:33.


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