[GUIDE] VapourSynth + QTGMC Deinterlace + Hybrid UI FAQ for macOS - Printable Version +- Selur's Little Message Board (https://forum.selur.net) +-- Forum: Hybrid - Support (https://forum.selur.net/forum-1.html) +--- Forum: Problems & Questions (https://forum.selur.net/forum-3.html) +--- Thread: [GUIDE] VapourSynth + QTGMC Deinterlace + Hybrid UI FAQ for macOS (/thread-1279.html) |
RE: VapourSynth + QTGMC Deinterlace + Hybrid UI FAQ for macOS - shijan - 08.09.2020 Seems something was changed or broken in MKVToolNix 50. It gives error "muxing crashed: Crashed with exit status 1" Do not update to MKVToolNix 50 inside Hybrid app contents. MKVToolNix 49 and earlier works well. RE: VapourSynth + QTGMC Deinterlace + Hybrid UI FAQ for macOS - Selur - 08.09.2020 MkvToolNix works fine here, assuming the paths are set properly. In example: ./MKVToolNix-50.0.0.app/Contents/MacOS/mkvmerge Cu Selur RE: VapourSynth + QTGMC Deinterlace + Hybrid UI FAQ for macOS - shijan - 08.09.2020 I just downloaded MKVToolNix-50 form Videohelp again https://www.videohelp.com/software/MKVToolNix and it appears that it can't start even without Hybrid. Seems just a broken release. UPDATE: Seems it is some damaged MKVToolNix-50.0.0.0 version at Videohelp. MKVToolNix-50.0.0.1 downloaded from https://www.fosshub.com/MKVToolNix.html works well. RE: VapourSynth + QTGMC Deinterlace + Hybrid UI FAQ for macOS - Selur - 08.09.2020 I used the download from the official source ( https://www.fosshub.com/MKVToolNix.html). Cu Selur RE: VapourSynth + QTGMC Deinterlace + Hybrid UI FAQ for macOS - Selur - 08.09.2020 About the "LUT + other filters = black preview": Works fine on Windows, I can reproduce the issue in the MacOS VM, but there I get Quote:Vapoursynth preview error: Unable to create basic Accelerated OpenGL renderer. Unable to create basic Accelerated OpenGL renderer.I suspect that this will work on a non-virtualized Mac OS as long as the OpenGL support works properly. The Vapoursynth scripts Hybrid produces are correct, so my guess is that this is a OpenGL problem on MacOS. May be timecube author (https://github.com/sekrit-twc/timecube) has an idea, but this might only be solvable when having access to a real mac. On the other hand this might be a planned limitation by Mac OS since iirc they are promoting Metal and deprecating OpenGL. Since they plan to replace Metal with OpenGL. Cu Selur RE: VapourSynth + QTGMC Deinterlace + Hybrid UI FAQ for macOS - shijan - 09.09.2020 Ok, i can contact timecube developer about this problem, but i notice that there is no black screen if i use format=vs.RGB24 instead of format=vs.RGB48, and manually run in vsViever import vapoursynth as vs Also if i import 10 bit ProRes source and use Levels filter (TimeCube turned OFF) i see a green overlay artifact in vsViewer preview. If i import 8 bit source and use Levels filter image looks OK if Gamma set to 1.00. But when i start to adjust Gamma, i start to see green overlay artifact in vsViewer preview. So i guess it more looks like bug in Hybrid bit depth-color management code with some filters. RE: VapourSynth + QTGMC Deinterlace + Hybrid UI FAQ for macOS - Selur - 09.09.2020 You are right that this does happen when using high bit depth. in which case Hybrid uses: RGB48 (= 16bit); this also causes the problem on Windows. Using RGB30(=10bit) or RGB48(=8bit) works fine. Problem seems to be the RGB48 to XY conversion. So either this is a bug in Vapoursynth or something is amiss with the script. clip = core.resize.Bicubic(clip=clip, format=vs.RGB48, matrix_in_s="470bg", range_s="limited") clip = core.resize.Bicubic(clip=clip, format=vs.RGB48, matrix_in_s="470bg", range_s="limited") # adjusting color space from YUV420P10 to RGB48 for vscube Levels documentation says: clip Cu Selur RE: VapourSynth + QTGMC Deinterlace + Hybrid UI FAQ for macOS - shijan - 09.09.2020 Yep, interesting... Also it seems this is somehow related to interconnection with other filters that use tonal adjustment settings. For Example: TimeCubes + Tweak Saturation adjust = works well TimeCubes + Tweak Brightness adjust = no any changes in image Tweak Brightness adjust = works well RE: VapourSynth + QTGMC Deinterlace + Hybrid UI FAQ for macOS - Adamcarter - 09.09.2020 Told you guys, i am a BUG seeker. i Just seem to find bugs... RE: VapourSynth + QTGMC Deinterlace + Hybrid UI FAQ for macOS - Selur - 09.09.2020 Quote:Also it seems this is somehow related to interconnection with other filters that use tonal adjustment settings.It's releated to the actual script and what color space conversions take place, so without looking at the script those findings mean nothing. |