View Single Post
Old 15th November 2019, 04:51   #11  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,980
My version LSmash produced rubbish too, so updated to qyot27 first dll in list, and works fine, no audio probs that I could hear (only checked on headphones).

Try something like this

Code:
# Seems to be Progressive on viewing SeparateFields, ie dont need deinterlacing

vFN="D:\WORK\Sheena Easton machinery small sample.mov"
c=LSMASHVideoSource(vFN) #,format="YUV422P10")              # or "YUV420P10" (10 bit YV12)
a=LSMASHAudioSource(vFN)
#a=LwLibavAudioSource(vFN)                                  # LSMASHAudioSource() seem to work ok for me
AudioDubEx(c,a)
# return info
C1=QTGMC(Preset="Slow", sharpness=1.2).selecteven()         # Req QTGMC v3.363s and smdegrain v3.1.2.104s
C2=McDegrainSharp(frames=3)                                 # 1->3, req McDegrainSharp:- https://forum.doom9.org/showthread.php?p=1737045#post1737045
StackHorizontal(C1,C2)
My preference is the McDegrainSharp one on right [click twice for full size] McDegrainSharp my goto filter for almost every clip.

You can change frames to 1 or 2 if too much noise removed by McDegrainSharp. [but Sheena always had a kinda shiny sheen]

EDIT: Nasty 'glue' marks before/after scene change.

EDIT: QTGMC has some switch to just denoise, and not deinterlace, no idea what it is though [I dont use it that often].

EDIT: Processed as below script available as Sheena.mp4 ~3.5MB @SendSpace in my sig below, available for 30 days [could have benefitted from contrast adjustment]
Code:
vFN="D:\WORK\Sheena Easton machinery small sample.mov"
c=LSMASHVideoSource(vFN)
a=LSMASHAudioSource(vFN)
AudioDubEx(c,a)
McDegrainSharp(frames=3)
Crop(10,0,-14,-0)
# for MeGUI 10 Bit
RT_signalDar2(4,3)
ConvertBits(16)
ConvertToYUV420()
Return last
EDIT: Also uploaded same script as above but without McDegrainSharp, ~10.7MB Sheena_No_McDegrainSharp.mp4 [ie not much diff from 350MB source clip, just compressed non lossless].
EDIT: Also Added Sheena_Contrast.mp4 ~3.7MB, with a bit of Levels as Below
Code:
vFN="D:\WORK\Sheena Easton machinery small sample.mov"
c=LSMASHVideoSource(vFN)
a=LSMASHAudioSource(vFN)
AudioDubEx(c,a)
Crop(10,0,-14,-0)
Levels(128,1.0,1020,64,940,coring=false)
#Histogram(mode="Levels")
#Return last
McDegrainSharp(frames=3)
#Return last
# for MeGUI 10 Bit
RT_signalDar2(4,3)
ConvertBits(16)
ConvertToYUV420()
Return last
__________________
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; 15th November 2019 at 06:30.
StainlessS is offline   Reply With Quote