deen("c3d") » Upcycling Ideas » Forums
Forums

Forums



ПоискПоиск   Users   Registration   Entrance
Today: 22.06.2025 - 02:03:50
Pages:  1  2  

deen("c3d")

Advertising

.
MessageAuthor

Looks very promising indeed! Great work. Regarding usability, I think it would be great if you used named, optional parameters. If you are going to implement several different softeners (which is a great idea!) I think it would be easier to use. for some reason it's easier for me to remember 'c3d_matrix = "121"' than 'mode = 0' - that way you could also implement optional different thresholds for temporal softening, etc. Donalds filters are great inspiration for that. Does that make any sense? ps. a few fps more is good enough for me, if the filter gives me 3fps :) I'd be happy to look through your implementation - feel free to mail me the source :)

---------------------------------------------
www.dentsport.com Alex Grabau

Bimmubishi

users main




Statistics:
Messages: 773
Registration: 10.15.2003
11.02.23 - 15:28:47
Message # 1
RE: deen("c3d")

>Looks very promising indeed! Great work. thx >Regarding usability, I think it would be great if you used named, >optional parameters. If you are going to implement several different >softeners (which is a great idea!) I think it would be easier to use. well, i have 5 methods : "c3d","a3d","m3d","a2d","m2d" and they all need the same parameters, so it makes sense i share them >for some reason it's easier for me to remember 'c3d_matrix = "121"' than > 'mode = 0' - that way you could also implement optional different >thresholds for temporal softening, etc. -> exactly the same as vlad's filter to avoid confusion. >Donalds filters are great inspiration for that. sure ^_^ >Does that make any sense? well, if i need to split things, i'll do it ^^ >ps. a few fps more is good enough for me, if the filter gives me 3fps >I'd be happy to look through your implementation - feel free to mail >me the source a few fps like 23+3 fps accessing unaligned data don't seem to be a big deal BTW, i could improve pairing, to make 8 check in 11 cycles (currently 13 or 14). but i don't think i can do it much faster ^^

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

Dan Wang

users main




Statistics:
Messages: 74
Registration: 03.12.2001
11.02.23 - 15:37:00
Message # 2
RE: deen("c3d")

Sorry Marc, but I don't manage to make that thing working. I always get a message saying Avisynth open failure deen : name list : 'c3d','a3d','m3d','a3d', or 'm2d' my script : LoadPlugin("C:\video\avsfilters\deenyv12.dll") avisource("f:\capture\capture.avi") converttoyv12() deen("c3d",1,10,12,3) bicubicresize(480,576,0,0.75) converttoyuy2() I've tried with native yv12 source : same message... Using W2000, AMD xp 1800+ and avisynth 2.5 build 29/12 So ? Regards, FuPP

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

Malcolm

users main




Statistics:
Messages: 541
Registration: 12.11.2001
11.02.23 - 15:41:59
Message # 3
RE: deen("c3d")

strange. i'll check what could cause that. it worked flawlessly on MPEG-2 and AVI (MPEG-4) YV12 sources EDIT : i tested everything i could. i'm still unable to reproduce it. does anyone encounter the same problem ?

---------------------------------------------
MY 93 318i or 325 IS THE "#1 STANNA" which ever one-still badass to me!!!!!

kimbels_97318i

users main




Statistics:
Messages: 60
Registration: 03.01.2002
11.02.23 - 15:45:41
Message # 4
RE: deen("c3d")

Hi @Marc FD Nop no problems in here. PS: thks for your work this filter works very good :)

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

alexd

users main




Statistics:
Messages: 6,051
Registration: 08.10.2001
11.02.23 - 15:49:36
Message # 5
RE: deen("c3d")

thx celeron. if it works, i'll continue then. there's massive alignement and pairing + some new isse code i want to test ^^

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

LWRNCE

users main




Statistics:
Messages: 10,465
Registration: 12.22.2003
11.02.23 - 15:56:07
Message # 6
RE: deen("c3d")

Had the same problem. Here is what I did: - frameserving the following AVI files to VDubmod - XP SP1, P4-M File 1, AVI uncompressed - no chance to apply deen(), same error message as reported above File 2, AVI with code IV32 - no chance to apply deen(), same error message as reported above File 3, AVI with code dvsd - using AVISource(), deen() throws error message - using DirectShowSource(), deen() works - in the same VDub session, deen() works then even with AVISource() $

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

dnbsquirrel

users main




Statistics:
Messages: 464
Registration: 06.26.2003
11.02.23 - 16:05:36
Message # 7
RE: deen("c3d")

It happend very often, if you add "deen" after other filters. And the only way to make it work ( at least for me ) is to close VdubMod, and then Restart it. And at this moment, the script is ok. This error happen with "AViSource" and "Mpeg2Source". It happen with other filters and without other filters. The order of the "loadplugin" declaration (if there' many filters) has no effect. The order of the functions call has no effect too. And again, one of the easiest way to reproduce this error, is to make a script with 2-3 filters (1 internal + 2 external, like Conv3d and aSharp. Just need to load those plugins, not necessary use them), and then load this script in VdubMod. Then open the AvsEditor, and : 1) Replace the "LoadPlugin("Conv3d.dll")" by "LoadPlugin("deen.dll")" , and then add "deen("m2d",1,10,12)" for example 2) Add "LoadPlugin("deen.dll"), and then add "deen("m2d",1,10,12)" for example But with 1), it append more often. Like if there was a problem when 1 plugin was loading and another Unloading at the same time.. It doesn't happend every time, but really often. (sometimes you can make it work without closing/re-opening VdubMod, but just in adding a 5th parameter : "deen("m2d",1,10,12)" -> "deen("m2d",1,10,12,3)" . But again it's not 100% sure.).

---------------------------------------------
95 m3 turbo avus

AllEyezOnMy325

users main




Statistics:
Messages: 693
Registration: 09.08.2002
11.02.23 - 16:17:07
Message # 8
RE: deen("c3d")

@MarcFD: Yes - my own preliminary results show the same. I get a very good speedup in the processing part, but the initial realignment is _much_ slower than I anticipated. I am not finished with the tests, but I'm working on a mmx-optimized unpack (currently in C), that writes 4-byte aligned. Processingwise I'm able to test and blend 8 bytes in parallel, with a perframe-variable matrix. I cannot seem to fit in the temporal tests, that skips the temporal part - that work make the code branching, and probably slower. Now that the matrix is variable it could actually be funny to try adjusting it on a per-frame basis. Perhaps it could be merged with something along the lines of dup(), using the information to adjust blending.

---------------------------------------------
"Ruthless like the coupe"

4Life

users main




Statistics:
Messages: 279
Registration: 01.31.2003
11.02.23 - 16:21:29
Message # 9
RE: deen("c3d")

>@MarcFD: Yes - my own preliminary results show the same. I get a very >good speedup in the processing part, no speedup at all. > but the initial realignment is >_much_ slower than I anticipated. not really for me. but it's simple code. no interleaving. maybe usefull for sse2 i think.

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

Greek535

users main




Statistics:
Messages: 14
Registration: 10.14.2003
11.02.23 - 16:27:20
Message # 10
RE: deen("c3d")
When recording MIDI to Audio the audio, the audio timing isn\'t the same as MIDI : Previous topicNext topic: Mastering CD w/Ozone... 0db?
Pages:  1  2  

The administrator has prohibited guests from replying to messages! To register, follow the link: register


Participants