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 > Video Encoding > MPEG-4 Encoder GUIs

Reply
 
Thread Tools Search this Thread Display Modes
Old 2nd December 2019, 13:42   #17881  |  Link
Atak_Snajpera
RipBot264 author
 
Atak_Snajpera's Avatar
 
Join Date: May 2006
Location: Poland
Posts: 7,806
Quote:
Originally Posted by Ryushin View Post
May I suggest buying the first Blade Runner in 4K and running MDegrain2-600 against that and then Watching the original. Especially the first scene when he gives the voidcomp (sp?) test in the hazy florescent room. MDegrain is so amazing in that it took out the soupy grain but left details like the cigarette smoke clear to see and make out. Maybe I'll cut out the two scenes and upload them.

I used to use HQDN3D. It was far faster than MDegrain2 and it was for a time, the only option available. The quality results though, vastly different between the two. So different I actually went back re-encoded a few sources with the new MDegrain and this was before Atak implemented threading and I was only getting 2fps. The quality was worth the wait. Now HQDN3D was also good to me when using in conjunction with MDegrain to remove a bit more harder to remove grain. But since HQDN3D cannot to 10Bit color (if I remember right) Atak removed it. That is when I switched to using MDegrain3.
Yes upload IT please.
Atak_Snajpera is offline   Reply With Quote
Old 2nd December 2019, 15:53   #17882  |  Link
slalom
Registered User
 
slalom's Avatar
 
Join Date: Jan 2010
Posts: 456
Quote:
Originally Posted by Ryushin View Post
That is when I switched to using MDegrain3.
I don't see that in the menu, is that only for 4K?
__________________
E5 2697 v2 @ 3.0GHz on P9X79 Deluxe 24GB
Xeon E5-2680 v2 @ 3.1GHz 16GB
Sony Vaio VPC-F13Z1E/B
slalom is offline   Reply With Quote
Old 2nd December 2019, 15:57   #17883  |  Link
Atak_Snajpera
RipBot264 author
 
Atak_Snajpera's Avatar
 
Join Date: May 2006
Location: Poland
Posts: 7,806
Quote:
Originally Posted by slalom View Post
I don't see that in the menu, is that only for 4K?
You have to create custom script

Code:
#Denoise
Loadplugin("C:\Program Files\RipBot264\Tools\AviSynth plugins\mvtools\mvtools2.dll")
super=MSuper(video,pel=2)
bv1=MAnalyse(super,blksize=8,isb=true,delta=1,overlap=4)
bv2=MAnalyse(super,blksize=8,isb=true,delta=2,overlap=4)
bv3=MAnalyse(super,blksize=8,isb=true,delta=3,overlap=4)
fv1=MAnalyse(super,blksize=8,isb=false,delta=1,overlap=4)
fv2=MAnalyse(super,blksize=8,isb=false,delta=2,overlap=4)
fv3=MAnalyse(super,blksize=8,isb=false,delta=3,overlap=4)
video=MDegrain3(video,super,bv1,fv1,bv2,fv2,bv3,fv3,thSAD=400)
Atak_Snajpera is offline   Reply With Quote
Old 2nd December 2019, 16:04   #17884  |  Link
Ryushin
Registered User
 
Ryushin's Avatar
 
Join Date: Mar 2011
Posts: 431
Blade Runner 4K MDegrain3 Test

I've cut 7:39 from the beginning of Blade Runner which includes the voight kampff test. The original and the Mdegrain3-800 is here. I'l leave this up for a week and then take it down.

https://cloud.chrisdos.com/index.php/s/YQJ2Y6LEdPcweEP
Ryushin is offline   Reply With Quote
Old 2nd December 2019, 17:28   #17885  |  Link
stryker412
Registered User
 
Join Date: Feb 2002
Posts: 151
Atak, I'm finalizing a new gaming/encoding build. With regards to Ripbot only, what do you think of this build? Any hardware not ripbot friendly? I'm looking at the 5700XT vs 2070 Super for GPU.

https://pcpartpicker.com/user/Stryke...d/#view=mW7zNG

Last edited by stryker412; 2nd December 2019 at 17:38.
stryker412 is offline   Reply With Quote
Old 2nd December 2019, 17:35   #17886  |  Link
Atak_Snajpera
RipBot264 author
 
Atak_Snajpera's Avatar
 
Join Date: May 2006
Location: Poland
Posts: 7,806
Quote:
Originally Posted by stryker412 View Post
Atak, I'm finalizing a new gaming/encoding build. With regards to Ripbot only, what do you think of this build? Any hardware not ripbot friendly? I'm looking at the 5700XT vs 2070 Super for GPU.

https://pcpartpicker.com/user/Stryker412/saved/FwQXvK
This part list is private.
Atak_Snajpera is offline   Reply With Quote
Old 2nd December 2019, 17:38   #17887  |  Link
stryker412
Registered User
 
Join Date: Feb 2002
Posts: 151
Quote:
Originally Posted by Atak_Snajpera View Post
This part list is private.
Sorry, fixed the original link.
stryker412 is offline   Reply With Quote
Old 2nd December 2019, 17:39   #17888  |  Link
Atak_Snajpera
RipBot264 author
 
Atak_Snajpera's Avatar
 
Join Date: May 2006
Location: Poland
Posts: 7,806
Quote:
Originally Posted by stryker412 View Post
Sorry, fixed the original link.
Everything looks great except that SSD... QLC? Really? You won't be happy with 100 MiB/s real write speed...

Last edited by Atak_Snajpera; 2nd December 2019 at 17:49.
Atak_Snajpera is offline   Reply With Quote
Old 2nd December 2019, 17:49   #17889  |  Link
slalom
Registered User
 
slalom's Avatar
 
Join Date: Jan 2010
Posts: 456
Quote:
Originally Posted by Atak_Snajpera View Post
You have to create custom script

Code:
#Denoise
Loadplugin("C:\Program Files\RipBot264\Tools\AviSynth plugins\mvtools\mvtools2.dll")
super=MSuper(video,pel=2)
bv1=MAnalyse(super,blksize=8,isb=true,delta=1,overlap=4)
bv2=MAnalyse(super,blksize=8,isb=true,delta=2,overlap=4)
bv3=MAnalyse(super,blksize=8,isb=true,delta=3,overlap=4)
fv1=MAnalyse(super,blksize=8,isb=false,delta=1,overlap=4)
fv2=MAnalyse(super,blksize=8,isb=false,delta=2,overlap=4)
fv3=MAnalyse(super,blksize=8,isb=false,delta=3,overlap=4)
video=MDegrain3(video,super,bv1,fv1,bv2,fv2,bv3,fv3,thSAD=400)
Any chance of adding this to the menu for novices like me?
__________________
E5 2697 v2 @ 3.0GHz on P9X79 Deluxe 24GB
Xeon E5-2680 v2 @ 3.1GHz 16GB
Sony Vaio VPC-F13Z1E/B
slalom is offline   Reply With Quote
Old 2nd December 2019, 17:50   #17890  |  Link
stryker412
Registered User
 
Join Date: Feb 2002
Posts: 151
Quote:
Originally Posted by Atak_Snajpera View Post
Everything looks great except that SSD... QLC? Really? You won't be happy with 100 MiB/s real write speed...
I currently have a 2nd drive for ripbot encodes. What drive type do you suggest as a 2nd drive?
stryker412 is offline   Reply With Quote
Old 2nd December 2019, 17:51   #17891  |  Link
Atak_Snajpera
RipBot264 author
 
Atak_Snajpera's Avatar
 
Join Date: May 2006
Location: Poland
Posts: 7,806
Quote:
Originally Posted by slalom View Post
Any chance of adding this to the menu for novices like me?
Just save that to a file in Tools\AviSynth plugins\Scripts\Custom

Just make sure path in LoadPlugin is correct

Last edited by Atak_Snajpera; 2nd December 2019 at 17:58.
Atak_Snajpera is offline   Reply With Quote
Old 2nd December 2019, 17:53   #17892  |  Link
Atak_Snajpera
RipBot264 author
 
Atak_Snajpera's Avatar
 
Join Date: May 2006
Location: Poland
Posts: 7,806
Quote:
Originally Posted by stryker412 View Post
I currently have a 2nd drive for ripbot encodes. What drive type do you suggest as a 2nd drive?
Something decent using at least TLC... Just avoid QLC like plague because write endurance is also lower than in TLC.
Atak_Snajpera is offline   Reply With Quote
Old 2nd December 2019, 18:06   #17893  |  Link
stryker412
Registered User
 
Join Date: Feb 2002
Posts: 151
Quote:
Originally Posted by Atak_Snajpera View Post
Something decent using at least TLC... Just avoid QLC like plague because write endurance is also lower than in TLC.
How about this one?
https://www.newegg.com/crucial-mx500...82E16820156178
stryker412 is offline   Reply With Quote
Old 2nd December 2019, 18:06   #17894  |  Link
Pauly Dunne
Grumpy Old Man.
 
Pauly Dunne's Avatar
 
Join Date: Jul 2019
Location: Out There....
Posts: 692
Quote:
Originally Posted by Atak_Snajpera View Post
You have to create custom script

Code:
#Denoise
Loadplugin("C:\Program Files\RipBot264\Tools\AviSynth plugins\mvtools\mvtools2.dll")
super=MSuper(video,pel=2)
bv1=MAnalyse(super,blksize=8,isb=true,delta=1,overlap=4)
bv2=MAnalyse(super,blksize=8,isb=true,delta=2,overlap=4)
bv3=MAnalyse(super,blksize=8,isb=true,delta=3,overlap=4)
fv1=MAnalyse(super,blksize=8,isb=false,delta=1,overlap=4)
fv2=MAnalyse(super,blksize=8,isb=false,delta=2,overlap=4)
fv3=MAnalyse(super,blksize=8,isb=false,delta=3,overlap=4)
video=MDegrain3(video,super,bv1,fv1,bv2,fv2,bv3,fv3,thSAD=400)
This is Gold !!!

Any chance of a script for MDegrain1, to complete the set ?
__________________
Not poorly done, just doin' it my way !!!
Live every day like it's your last, because one day, it will be !! (M$B)
Pauly Dunne is offline   Reply With Quote
Old 2nd December 2019, 18:07   #17895  |  Link
Atak_Snajpera
RipBot264 author
 
Atak_Snajpera's Avatar
 
Join Date: May 2006
Location: Poland
Posts: 7,806
Quote:
Originally Posted by stryker412 View Post
That one is sataIII not NVMe!
Atak_Snajpera is offline   Reply With Quote
Old 2nd December 2019, 18:08   #17896  |  Link
Atak_Snajpera
RipBot264 author
 
Atak_Snajpera's Avatar
 
Join Date: May 2006
Location: Poland
Posts: 7,806
Quote:
Originally Posted by Pauly Dunne View Post
This is Gold !!!

Any chance of a script for MDegrain1, to complete the set ?
Code:
#Denoise
Loadplugin("C:\Program Files\RipBot264\Tools\AviSynth plugins\mvtools\mvtools2.dll")
super=MSuper(video,pel=2)
bv1=MAnalyse(super,blksize=8,isb=true,delta=1,overlap=4)
fv1=MAnalyse(super,blksize=8,isb=false,delta=1,overlap=4)
video=MDegrain1(video,super,bv1,fv1,thSAD=400)
Atak_Snajpera is offline   Reply With Quote
Old 2nd December 2019, 18:18   #17897  |  Link
stryker412
Registered User
 
Join Date: Feb 2002
Posts: 151
Quote:
Originally Posted by Atak_Snajpera View Post
That one is sataIII not NVMe!

Gotcha. Found this one but it's much more expensive.

https://www.amazon.com/Samsung-970-E...IKX0DER&sr=1-1
stryker412 is offline   Reply With Quote
Old 2nd December 2019, 18:19   #17898  |  Link
Pauly Dunne
Grumpy Old Man.
 
Pauly Dunne's Avatar
 
Join Date: Jul 2019
Location: Out There....
Posts: 692
Quote:
Originally Posted by Atak_Snajpera View Post
Code:
#Denoise
Loadplugin("C:\Program Files\RipBot264\Tools\AviSynth plugins\mvtools\mvtools2.dll")
super=MSuper(video,pel=2)
bv1=MAnalyse(super,blksize=8,isb=true,delta=1,overlap=4)
fv1=MAnalyse(super,blksize=8,isb=false,delta=1,overlap=4)
video=MDegrain1(video,super,bv1,fv1,thSAD=400)
__________________
Not poorly done, just doin' it my way !!!
Live every day like it's your last, because one day, it will be !! (M$B)
Pauly Dunne is offline   Reply With Quote
Old 2nd December 2019, 18:22   #17899  |  Link
stryker412
Registered User
 
Join Date: Feb 2002
Posts: 151
Atak what about nvidia vs Radeon for GPU?
stryker412 is offline   Reply With Quote
Old 2nd December 2019, 18:23   #17900  |  Link
Pauly Dunne
Grumpy Old Man.
 
Pauly Dunne's Avatar
 
Join Date: Jul 2019
Location: Out There....
Posts: 692
Quote:
Originally Posted by stryker412 View Post
Gotcha. Found this one but it's much more expensive.

https://www.amazon.com/Samsung-970-E...IKX0DER&sr=1-1
Or

https://www.amazon.com/XPG-SX8200-Ge...5307192&sr=8-2

I have some 512Gb versions, but I think I would go for EVO Plus, next. Pro's would be nice, but too exy
__________________
Not poorly done, just doin' it my way !!!
Live every day like it's your last, because one day, it will be !! (M$B)

Last edited by Pauly Dunne; 2nd December 2019 at 18:36.
Pauly Dunne is offline   Reply With Quote
Reply

Tags
264, 265, appletv, avchd, bluray, gui, iphone, ipod, ps3, psp, ripbot264, x264 2-pass, x264 gui, x264_64, x265, xbox360

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 16:26.


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