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 Usage

Reply
 
Thread Tools Search this Thread Display Modes
Old 16th October 2020, 17:03   #881  |  Link
bruno321
Registered User
 
Join Date: Oct 2018
Posts: 133
Another one similar to the two ones that I brought up above... but neither srestore nor Exblend (with or without PAL mode activated) are giving good results:

https://fex.net/s/tpytxl3

Is there anything I can do to get rid of those blends?
bruno321 is offline   Reply With Quote
Old 5th June 2021, 09:01   #882  |  Link
Metal-HTPC
Registered User
 
Join Date: Dec 2018
Posts: 65
hello,
I'm having a PAL VHS which runs in NTSC speed but is a NTSC->PAL conversion with field blending.
Am I able to apply a fix blend for both the interlaced and deinterlaced version (I don't have the hq interlaced versions for all clips for some I only have the low resolution ones which appear to be already deinterlaced)
so they could match with my NTSC hard telecined film which I would IVTC with TFM().TDecimate() ?

https://workupload.com/file/nmUpb9S3DD9

I'm also getting a script error with Srestore "expected ')' . In The line 63: avs26=!(VersionNumber() 2.6)

Line 60-65
Quote:
# ==================================================================================================================================

function Srestore(clip sourceo, float "frate", "omode", float "speed", float "blocks", int "mode", float "thresh", int "cache", clip "dclip")
{
avs26=!(VersionNumber() < 2.6)
Which doesn't make any sense to me since I already use all the required plugins.
thanks in advance for your help

Last edited by Metal-HTPC; 5th June 2021 at 09:03.
Metal-HTPC is offline   Reply With Quote
Old 5th June 2021, 09:30   #883  |  Link
real.finder
Registered User
 
Join Date: Jan 2012
Location: Mesopotamia
Posts: 2,597
make sure you have last update from https://github.com/realfinder/AVS-St.../Srestore.avsi and https://github.com/realfinder/AVS-St...RF_Shared.avsi
__________________
See My Avisynth Stuff
real.finder is offline   Reply With Quote
Old 5th June 2021, 14:08   #884  |  Link
Metal-HTPC
Registered User
 
Join Date: Dec 2018
Posts: 65
ok it's working. I tried all the different options of srestore but can't seem to get it to the same frames as the dvd source and that is the interlaced I'm not at the progressive yet. So if anyone wants to check out the samples any help would be greatly appreciated. thanks a lot
Metal-HTPC is offline   Reply With Quote
Old 23rd August 2021, 11:01   #885  |  Link
rjansen1
Remco Jansen
 
Join Date: Aug 2019
Location: Netherlands
Posts: 15
FYI: After installing AVS+ 3.70 Srestore gave an "expected )" error. I found I needed to change the position from which to extract the version number in the AvsPlusVersionNumber function for it to start working again:

Quote:
function IsAvsPlus()
{
FindStr(VersionString, "AviSynth+") != 0
}

function AvsPlusVersionNumber()
{
# IsAvsPlus ? eval(MidStr(VersionString(),17,4)) : 0

# adjusted search position for new AVS+ 3.70
IsAvsPlus ? eval(MidStr(VersionString(),19,4)) : 0
}
rjansen1 is offline   Reply With Quote
Old 23rd August 2021, 14:43   #886  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 11,023
From recent [maybe latest] Real.Finder Zs_RF_Shared.avsi,
Code:
####################
#### some of StainlessS AvsVersion.avsi https://forum.doom9.org/showpost.php?p=1897680&postcount=5103
Function IsAvsNeo()               { FindStr(VersionString," Neo")!=0}
Function IsAvsPlus()              { FindStr(VersionString,"AviSynth+")!=0||IsAvsNeo}
Function AvsPlusVersionNumber()   { V=VersionString Off=(!IsAvsPlus)?0:FindStr(V,"(r") return (Off==0)?0:V.MidStr(Off+2).Value.Int } # Avs+ & Neo, (More than 4 digits, Max 24 bit, ~16M)
I personally ignore the Neo thing now.
__________________
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 ???

Last edited by StainlessS; 23rd August 2021 at 22:59.
StainlessS is offline   Reply With Quote
Old 6th February 2022, 14:18   #887  |  Link
malze
Registered User
 
Join Date: Mar 2021
Posts: 5
I was wandering if there is a 64-bit verison of Srestore plugin or similar plugin of this.
malze is offline   Reply With Quote
Old 6th February 2022, 14:21   #888  |  Link
Boulder
Pig on the wing
 
Boulder's Avatar
 
Join Date: Mar 2002
Location: Finland
Posts: 5,804
real.finder has kept the function up-to-date.

https://forum.doom9.org/showthread.php?t=174121
__________________
And if the band you're in starts playing different tunes
I'll see you on the dark side of the Moon...
Boulder is offline   Reply With Quote
Old 2nd August 2022, 13:31   #889  |  Link
Tlen
Registered User
 
Join Date: Apr 2020
Posts: 24
Hi,
I have a double blended PAL DVD, that is blended on the semi-frame.

My idea was to try to remove the double blending doing a

SeparateFields
srestore

Then a Weave to reunite the deblended semi-frames.

But i'm not able to end up with a pure 50fps de-blended result.

Srestore seems just not kicking in.

Is that workflow possible?
Tlen is offline   Reply With Quote
Old 7th August 2022, 02:21   #890  |  Link
manono
Moderator
 
Join Date: Oct 2001
Location: Hawaii
Posts: 7,406
Quote:
Originally Posted by Tlen View Post
SeparateFields
srestore
Doesn't that by itself give you 23.976fps for a PAL source? If so, then SRestore is 'kicking in'. Why would you want 50fps?
manono is offline   Reply With Quote
Old 7th August 2022, 15:42   #891  |  Link
Tlen
Registered User
 
Join Date: Apr 2020
Posts: 24
Quote:
Why would you want 50fps?
Honestly, i was looping on the fact that i wanted to maintain the original 25.00 fps,
and srestore wasnt't giving me results (or i was not able to make it function in that way),

but thinking about it, the original frate it's not a strict requirement, so i can try with the 23.976 path too.

Thank you for the reply.
Tlen is offline   Reply With Quote
Old 28th September 2023, 22:52   #892  |  Link
tormento
Acid fr0g
 
tormento's Avatar
 
Join Date: May 2002
Location: Italy
Posts: 2,823
Perhaps I should have posted here this.

Long story short: 59.98i to 23.976p, one video badly resized and perhaps telecined, the other simply interlaced.

Can you find some good use for srestore in that case scenario?
__________________
@turment on Telegram
tormento is offline   Reply With Quote
Old 11th October 2023, 03:24   #893  |  Link
fabioseixal
Registered User
 
Join Date: May 2008
Posts: 21
Quote:
Originally Posted by tormento View Post
Perhaps I should have posted here this.

Long story short: 59.98i to 23.976p, one video badly resized and perhaps telecined, the other simply interlaced.

Can you find some good use for srestore in that case scenario?
For the 1st clip, is this ok?

I had to resize because I have an old PC...
fabioseixal is offline   Reply With Quote
Old 11th October 2023, 04:02   #894  |  Link
kedautinh12
Registered User
 
Join Date: Jan 2018
Posts: 2,168
It's still dancy text
kedautinh12 is offline   Reply With Quote
Old 22nd September 2024, 00:51   #895  |  Link
tormento
Acid fr0g
 
tormento's Avatar
 
Join Date: May 2002
Location: Italy
Posts: 2,823
I can't sort this out.

My next step is to downsize to native (540p I suppose), retaining 444 croma at the end.

My suspect is that I have to resize before applying any kind of deblend/fake deinterlace.

I can't really fix the rainbow/blending/weaving.

Any help is welcome.
__________________
@turment on Telegram

Last edited by tormento; 22nd September 2024 at 00:53.
tormento is offline   Reply With Quote
Old 22nd September 2024, 10:10   #896  |  Link
Selur
Registered User
 
Selur's Avatar
 
Join Date: Oct 2001
Location: Germany
Posts: 7,504
Maybe ExBlend can help a bit.
__________________
Hybrid here in the forum, homepage
Selur is offline   Reply With Quote
Old 22nd September 2024, 19:28   #897  |  Link
Trixter
Registered User
 
Join Date: Oct 2003
Posts: 215
Quote:
Originally Posted by tormento View Post
I can't sort this out.

My suspect is that I have to resize before applying any kind of deblend/fake deinterlace.
You generally don't resize before fixing. Resizing is destructive, so you do it last.

Your footage shows some sort of multi-frame blending, like it was the result of a poor PAL to NTSC to inverse-telecine conversion. There are instances of half-frame horizontal blending halfway down the frame, for example. exblend might help, but for the most part this was mangled during conversion, and it's terribly difficult to unscramble eggs.
Trixter is offline   Reply With Quote
Reply

Tags
mrestore, srestore

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 02:53.


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