This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

[BUG] SRMD causes crashes
#1
Every time I use the SRMD filter it spits out a "Helper1, exitCode: 11" error. I'm using Hybrid 2021.07.18.1 on MacOS Monetrey Beta 12.0 Beta (21A5294g). I know that the Monterey beta could be at fault here, but it's this one filter while the rest of the program works fine, which makes me think I'm doing something wrong. 

Link to sample video: https://drive.google.com/file/d/1QoKQ5eW...sp=sharing

Thanks for your help!
Reply
#2
The error, basically sais that the decoder crashed.
Looking ath the vapoursynth script used
# Imports import os import sys import vapoursynth as vs # getting Vapoursynth core core = vs.core # Import scripts folder scriptPath = '/Applications/Hybrid.app/Contents/MacOS/vsscripts' sys.path.append(os.path.abspath(scriptPath)) # Import scripts import havsfunc # source: '/Users/jeargumedo/Movies/SamJack43.mov' # current color space: YUV422P10, bit depth: 10, resolution: 648x486, fps: 29.97, color matrix: 470bg, yuv luminance scale: limited, scanorder: top field first # Loading /Users/jeargumedo/Movies/SamJack43.mov using LibavSMASHSource clip = core.lsmas.LibavSMASHSource(source="/Users/jeargumedo/Movies/SamJack43.mov") # making sure input color matrix is set as 470bg clip = core.resize.Point(clip, matrix_in_s="470bg",range_s="limited") # making sure frame rate is set to 29.97 clip = core.std.AssumeFPS(clip=clip, fpsnum=30000, fpsden=1001) # Setting color range to TV (limited) range. clip = core.std.SetFrameProp(clip=clip, prop="_ColorRange", intval=1) clip = core.std.AddBorders(clip=clip, left=0, right=0, top=0, bottom=2) # add borders to archive mod 4 (VsQTGMC) # setting field order to what QTGMC should assume (top field first) clip = core.std.SetFrameProp(clip=clip, prop="_FieldBased", intval=2) # Deinterlacing using QTGMC clip = havsfunc.QTGMC(Input=clip, Preset="Placebo", TFF=True, opencl=True) # new fps: 29.97 # make sure content is preceived as frame based clip = core.std.SetFieldBased(clip, 0) clip = clip[1::2] clip = core.std.CropRel(clip=clip, left=0, right=0, top=0, bottom=2) # removing borders (VsQTGMC) clip = core.std.AddBorders(clip=clip, left=0, right=0, top=0, bottom=2) # add borders to archive mod 4 (vsSRMD) # adjusting color space from YUV422P10 to RGBS for vsSRMD clip = core.resize.Bicubic(clip=clip, format=vs.RGBS, matrix_in_s="470bg", range_s="limited") # resizing using srmd # Zoomfactor: 3 clip = core.srmdnv.SRMD(clip=clip, scale=3, tta=True) clip = core.std.CropRel(clip=clip, left=0, right=0, top=0, bottom=6) # removing borders (vsSRMD) # adjusting resizing to hit target resolution clip = core.fmtc.resample(clip=clip, w=1920, h=1440, kernel="spline64", interlaced=False, interlacedd=False) # adjusting output color from: RGB48 to YUV422P8 for FFV1Model (i422@10) clip = core.resize.Bicubic(clip=clip, format=vs.YUV422P8, matrix_s="470bg", range_s="limited") # set output frame rate to 29.970fps clip = core.std.AssumeFPS(clip=clip, fpsnum=30000, fpsden=1001) # Output clip.set_output()
I see no problem. And the script works fine here.
Even if it's terribly slow. (0.4 fps here)
Does the Vapoursynth Preview work fine?
My guess is this is related to the beta and the graphic drivers.

Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Reply
#3
Vapoursynth Preview doesn't work either. It could be the beta, but it's pretty bizarre that everything else works.
Reply
#4
If the preview doesn't work then it's no surprise the encoding doesn't work either.
Does the preview show an error message?

Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Reply
#5
"Vapoursynth preview error:
qt.qpa.fonts: Populating font family aliases took 191 ms. Replace uses of missing font family "Monospace" with one that exists to avoid this cost."
Reply
#6
That error does only cause that vsViewer uses a slightly different font it does not cause vsViewer not to work.
If vsViewer crashed it should show a window with some detailed error,...

Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Reply
#7
Do you mean this? 

------------------------------------- Translated Report (Full Report Below) ------------------------------------- Process:               vsViewer [35693] Path:                  /Applications/Hybrid.app/Contents/MacOS/vsViewer.app/Contents/MacOS/vsViewer Identifier:            com.yourcompany.vsViewer Version:               ??? Code Type:             X86-64 (Native) Parent Process:        Hybrid [25647] Responsible:           Hybrid [25647] User ID:               501 Date/Time:             2021-08-11 10:09:47.8611 -0400 OS Version:            macOS 12.0 (21A5294g) Report Version:        12 Anonymous UUID:        CFF99493-13DB-96E9-878D-A07A37893653 Time Awake Since Boot: 120000 seconds System Integrity Protection: enabled Crashed Thread:        0  Dispatch queue: com.apple.main-thread Exception Type:        EXC_BAD_ACCESS (SIGSEGV) Exception Codes:       KERN_INVALID_ADDRESS at 0x00000000007eea43 Exception Codes:       0x0000000000000001, 0x00000000007eea43 Exception Note:        EXC_CORPSE_NOTIFY Termination Reason:    Namespace SIGNAL, Code 11 Segmentation fault: 11 Terminating Process:   exc handler [35693] VM Region Info: 0x7eea43 is not in any region.  Bytes before following region: 4475979197       REGION TYPE                    START - END         [ VSIZE] PRT/MAX SHRMOD  REGION DETAIL       UNUSED SPACE AT START --->        __TEXT                      10b48f000-10b516000    [  540K] r-x/r-x SM=COW  ...acOS/vsViewer Thread 0 Crashed::  Dispatch queue: com.apple.main-thread 0   libvsw2xnvk.dylib                    0x12ad3ab5e 0x12ab8c000 + 1764190 1   libvsw2xnvk.dylib                    0x12ad0a093 0x12ab8c000 + 1564819 2   libsrmdnv.dylib                      0x12c2ea8fa 0x12c16b000 + 1571066 3   libsrmdnv.dylib                      0x12c2e9da4 0x12c16b000 + 1568164 4   libsrmdnv.dylib                      0x12c2628be 0x12c16b000 + 1013950 5   libsrmdnv.dylib                      0x12c2e6857 0x12c16b000 + 1554519 6   libsrmdnv.dylib                      0x12c321632 0x12c16b000 + 1795634 7   libsrmdnv.dylib                      0x12c322eaa 0x12c16b000 + 1801898 8   libsrmdnv.dylib                      0x12c1913c8 0x12c16b000 + 156616 9   libsrmdnv.dylib                      0x12c1a6f28 0x12c16b000 + 245544 10  libsrmdnv.dylib                      0x12c1ff638 0x12c16b000 + 607800 11  libsrmdnv.dylib                      0x12c188952 0x12c16b000 + 121170 12  libsrmdnv.dylib                      0x12c18aacd 0x12c16b000 + 129741 13  libsrmdnv.dylib                      0x12c16e160 0x12c16b000 + 12640 14  libvapoursynth.dylib                 0x11845e8a5 0x1183ff000 + 391333 15  libvapoursynth.dylib                 0x11844ef41 0x1183ff000 + 327489 16  vapoursynth.so                       0x11882e446 0x1187bc000 + 468038 17  vapoursynth.so                       0x11882ce91 0x1187bc000 + 462481 18  libpython3.8.dylib                   0x12a254da6 0x12a235000 + 130470 19  libpython3.8.dylib                   0x12a32f328 0x12a235000 + 1024808 20  libpython3.8.dylib                   0x12a3274b4 0x12a235000 + 992436 21  libpython3.8.dylib                   0x12a330369 0x12a235000 + 1028969 22  libpython3.8.dylib                   0x12a326320 0x12a235000 + 987936 23  vapoursynth.so                       0x1187c0435 0x1187bc000 + 17461 24  libvapoursynth-script.0.dylib        0x1113bf179 0x1113be000 + 4473 25  vsViewer                             0x10b4cbe07 0x10b48f000 + 249351 26  vsViewer                             0x10b495f19 0x10b48f000 + 28441 27  vsViewer                             0x10b4934f6 0x10b48f000 + 17654 28  vsViewer                             0x10b493120 0x10b48f000 + 16672 29  dyld                                 0x1189224d5 0x11891d000 + 21717 Thread 1: 0   libsystem_pthread.dylib           0x7ff801ab20a0 0x7ff801ab0000 + 8352 Thread 2: 0   libsystem_pthread.dylib           0x7ff801ab20a0 0x7ff801ab0000 + 8352 Thread 3: 0   libsystem_pthread.dylib           0x7ff801ab20a0 0x7ff801ab0000 + 8352 Thread 4: 0   libsystem_pthread.dylib           0x7ff801ab20a0 0x7ff801ab0000 + 8352 Thread 5: 0   libsystem_pthread.dylib           0x7ff801ab20a0 0x7ff801ab0000 + 8352 Thread 6:: Thread (pooled) 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   QtCore                               0x1113fac1f 0x1113d0000 + 175135 3   QtCore                               0x1113fa8ee 0x1113d0000 + 174318 4   QtCore                               0x1113fa80d 0x1113d0000 + 174093 5   QtCore                               0x1113f713d 0x1113d0000 + 160061 6   QtCore                               0x1113f2a79 0x1113d0000 + 141945 7   libsystem_pthread.dylib           0x7ff801ab65a8 0x7ff801ab0000 + 26024 8   libsystem_pthread.dylib           0x7ff801ab20c3 0x7ff801ab0000 + 8387 Thread 7:: Thread (pooled) 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   QtCore                               0x1113fac1f 0x1113d0000 + 175135 3   QtCore                               0x1113fa8ee 0x1113d0000 + 174318 4   QtCore                               0x1113fa80d 0x1113d0000 + 174093 5   QtCore                               0x1113f713d 0x1113d0000 + 160061 6   QtCore                               0x1113f2a79 0x1113d0000 + 141945 7   libsystem_pthread.dylib           0x7ff801ab65a8 0x7ff801ab0000 + 26024 8   libsystem_pthread.dylib           0x7ff801ab20c3 0x7ff801ab0000 + 8387 Thread 8:: Thread (pooled) 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   QtCore                               0x1113fac1f 0x1113d0000 + 175135 3   QtCore                               0x1113fa8ee 0x1113d0000 + 174318 4   QtCore                               0x1113fa80d 0x1113d0000 + 174093 5   QtCore                               0x1113f713d 0x1113d0000 + 160061 6   QtCore                               0x1113f2a79 0x1113d0000 + 141945 7   libsystem_pthread.dylib           0x7ff801ab65a8 0x7ff801ab0000 + 26024 8   libsystem_pthread.dylib           0x7ff801ab20c3 0x7ff801ab0000 + 8387 Thread 9:: Thread (pooled) 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   QtCore                               0x1113fac1f 0x1113d0000 + 175135 3   QtCore                               0x1113fa8ee 0x1113d0000 + 174318 4   QtCore                               0x1113fa80d 0x1113d0000 + 174093 5   QtCore                               0x1113f713d 0x1113d0000 + 160061 6   QtCore                               0x1113f2a79 0x1113d0000 + 141945 7   libsystem_pthread.dylib           0x7ff801ab65a8 0x7ff801ab0000 + 26024 8   libsystem_pthread.dylib           0x7ff801ab20c3 0x7ff801ab0000 + 8387 Thread 10:: com.apple.CFSocket.private 0   libsystem_kernel.dylib            0x7ff801a87fda 0x7ff801a7f000 + 36826 1   CoreFoundation                    0x7ff801ba6b7d 0x7ff801afe000 + 691069 2   libsystem_pthread.dylib           0x7ff801ab65a8 0x7ff801ab0000 + 26024 3   libsystem_pthread.dylib           0x7ff801ab20c3 0x7ff801ab0000 + 8387 Thread 11: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libc++.1.dylib                    0x7ff801a1bec2 0x7ff801a10000 + 48834 3   libvapoursynth.dylib                 0x118471869 0x1183ff000 + 469097 4   libvapoursynth.dylib                 0x118473fc0 0x1183ff000 + 479168 5   libsystem_pthread.dylib           0x7ff801ab65a8 0x7ff801ab0000 + 26024 6   libsystem_pthread.dylib           0x7ff801ab20c3 0x7ff801ab0000 + 8387 Thread 12: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libc++.1.dylib                    0x7ff801a1bec2 0x7ff801a10000 + 48834 3   libvapoursynth.dylib                 0x118471869 0x1183ff000 + 469097 4   libvapoursynth.dylib                 0x118473fc0 0x1183ff000 + 479168 5   libsystem_pthread.dylib           0x7ff801ab65a8 0x7ff801ab0000 + 26024 6   libsystem_pthread.dylib           0x7ff801ab20c3 0x7ff801ab0000 + 8387 Thread 13: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libc++.1.dylib                    0x7ff801a1bec2 0x7ff801a10000 + 48834 3   libvapoursynth.dylib                 0x118471869 0x1183ff000 + 469097 4   libvapoursynth.dylib                 0x118473fc0 0x1183ff000 + 479168 5   libsystem_pthread.dylib           0x7ff801ab65a8 0x7ff801ab0000 + 26024 6   libsystem_pthread.dylib           0x7ff801ab20c3 0x7ff801ab0000 + 8387 Thread 14: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libc++.1.dylib                    0x7ff801a1bec2 0x7ff801a10000 + 48834 3   libvapoursynth.dylib                 0x118471869 0x1183ff000 + 469097 4   libvapoursynth.dylib                 0x118473fc0 0x1183ff000 + 479168 5   libsystem_pthread.dylib           0x7ff801ab65a8 0x7ff801ab0000 + 26024 6   libsystem_pthread.dylib           0x7ff801ab20c3 0x7ff801ab0000 + 8387 Thread 15: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libc++.1.dylib                    0x7ff801a1bec2 0x7ff801a10000 + 48834 3   libvapoursynth.dylib                 0x118471869 0x1183ff000 + 469097 4   libvapoursynth.dylib                 0x118473fc0 0x1183ff000 + 479168 5   libsystem_pthread.dylib           0x7ff801ab65a8 0x7ff801ab0000 + 26024 6   libsystem_pthread.dylib           0x7ff801ab20c3 0x7ff801ab0000 + 8387 Thread 16: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libc++.1.dylib                    0x7ff801a1bec2 0x7ff801a10000 + 48834 3   libvapoursynth.dylib                 0x118471869 0x1183ff000 + 469097 4   libvapoursynth.dylib                 0x118473fc0 0x1183ff000 + 479168 5   libsystem_pthread.dylib           0x7ff801ab65a8 0x7ff801ab0000 + 26024 6   libsystem_pthread.dylib           0x7ff801ab20c3 0x7ff801ab0000 + 8387 Thread 17: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libc++.1.dylib                    0x7ff801a1bec2 0x7ff801a10000 + 48834 3   libvapoursynth.dylib                 0x118471869 0x1183ff000 + 469097 4   libvapoursynth.dylib                 0x118473fc0 0x1183ff000 + 479168 5   libsystem_pthread.dylib           0x7ff801ab65a8 0x7ff801ab0000 + 26024 6   libsystem_pthread.dylib           0x7ff801ab20c3 0x7ff801ab0000 + 8387 Thread 18: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libc++.1.dylib                    0x7ff801a1bec2 0x7ff801a10000 + 48834 3   libvapoursynth.dylib                 0x118471869 0x1183ff000 + 469097 4   libvapoursynth.dylib                 0x118473fc0 0x1183ff000 + 479168 5   libsystem_pthread.dylib           0x7ff801ab65a8 0x7ff801ab0000 + 26024 6   libsystem_pthread.dylib           0x7ff801ab20c3 0x7ff801ab0000 + 8387 Thread 19: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libc++.1.dylib                    0x7ff801a1bec2 0x7ff801a10000 + 48834 3   libvapoursynth.dylib                 0x118471869 0x1183ff000 + 469097 4   libvapoursynth.dylib                 0x118473fc0 0x1183ff000 + 479168 5   libsystem_pthread.dylib           0x7ff801ab65a8 0x7ff801ab0000 + 26024 6   libsystem_pthread.dylib           0x7ff801ab20c3 0x7ff801ab0000 + 8387 Thread 20: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libavcodec.58.dylib                  0x12c9cde8d 0x12c501000 + 5033613 3   ???                               0x20a000000000 ??? Thread 21: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libavcodec.58.dylib                  0x12c9cde8d 0x12c501000 + 5033613 3   ???                               0x20a000000000 ??? Thread 22: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libavcodec.58.dylib                  0x12c9cde8d 0x12c501000 + 5033613 3   ???                               0x20a000000000 ??? Thread 23: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libavcodec.58.dylib                  0x12c9cde8d 0x12c501000 + 5033613 3   ???                               0x20a000000000 ??? Thread 24: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libavcodec.58.dylib                  0x12c9cde8d 0x12c501000 + 5033613 3   ???                               0x20a000000000 ??? Thread 25: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libavcodec.58.dylib                  0x12c9cde8d 0x12c501000 + 5033613 3   ???                               0x20a000000000 ??? Thread 26: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libavcodec.58.dylib                  0x12c9cde8d 0x12c501000 + 5033613 3   ???                               0x20a000000000 ??? Thread 27: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libavcodec.58.dylib                  0x12c9cde8d 0x12c501000 + 5033613 3   ???                               0x20a000000000 ??? Thread 28: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libavcodec.58.dylib                  0x12c9cde8d 0x12c501000 + 5033613 3   ???                               0x20a000000000 ??? Thread 29: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libavcodec.58.dylib                  0x12c9cde8d 0x12c501000 + 5033613 3   ???                               0x20a000000000 ??? Thread 30: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libavcodec.58.dylib                  0x12c9cde8d 0x12c501000 + 5033613 3   ???                               0x20a000000000 ??? Thread 31: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libavcodec.58.dylib                  0x12c9cde8d 0x12c501000 + 5033613 3   ???                               0x20a000000000 ??? Thread 32: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libavcodec.58.dylib                  0x12c9cde8d 0x12c501000 + 5033613 3   ???                               0x20a000000000 ??? Thread 33: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libavcodec.58.dylib                  0x12c9cde8d 0x12c501000 + 5033613 3   ???                               0x20a000000000 ??? Thread 34: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libavcodec.58.dylib                  0x12c9cde8d 0x12c501000 + 5033613 3   ???                               0x20a000000000 ??? Thread 35: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libavcodec.58.dylib                  0x12c9cde8d 0x12c501000 + 5033613 3   ???                               0x20a000000000 ??? Thread 36: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libc++.1.dylib                    0x7ff801a1bec2 0x7ff801a10000 + 48834 3   libvapoursynth.dylib                 0x118471869 0x1183ff000 + 469097 4   libvapoursynth.dylib                 0x118473fc0 0x1183ff000 + 479168 5   libsystem_pthread.dylib           0x7ff801ab65a8 0x7ff801ab0000 + 26024 6   libsystem_pthread.dylib           0x7ff801ab20c3 0x7ff801ab0000 + 8387 Thread 37: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libc++.1.dylib                    0x7ff801a1bec2 0x7ff801a10000 + 48834 3   libvapoursynth.dylib                 0x118471869 0x1183ff000 + 469097 4   libvapoursynth.dylib                 0x118473fc0 0x1183ff000 + 479168 5   libsystem_pthread.dylib           0x7ff801ab65a8 0x7ff801ab0000 + 26024 6   libsystem_pthread.dylib           0x7ff801ab20c3 0x7ff801ab0000 + 8387 Thread 38: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libc++.1.dylib                    0x7ff801a1bec2 0x7ff801a10000 + 48834 3   libvapoursynth.dylib                 0x118471869 0x1183ff000 + 469097 4   libvapoursynth.dylib                 0x118473fc0 0x1183ff000 + 479168 5   libsystem_pthread.dylib           0x7ff801ab65a8 0x7ff801ab0000 + 26024 6   libsystem_pthread.dylib           0x7ff801ab20c3 0x7ff801ab0000 + 8387 Thread 39: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libc++.1.dylib                    0x7ff801a1bec2 0x7ff801a10000 + 48834 3   libvapoursynth.dylib                 0x118471869 0x1183ff000 + 469097 4   libvapoursynth.dylib                 0x118473fc0 0x1183ff000 + 479168 5   libsystem_pthread.dylib           0x7ff801ab65a8 0x7ff801ab0000 + 26024 6   libsystem_pthread.dylib           0x7ff801ab20c3 0x7ff801ab0000 + 8387 Thread 40: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libc++.1.dylib                    0x7ff801a1bec2 0x7ff801a10000 + 48834 3   libvapoursynth.dylib                 0x118471869 0x1183ff000 + 469097 4   libvapoursynth.dylib                 0x118473fc0 0x1183ff000 + 479168 5   libsystem_pthread.dylib           0x7ff801ab65a8 0x7ff801ab0000 + 26024 6   libsystem_pthread.dylib           0x7ff801ab20c3 0x7ff801ab0000 + 8387 Thread 41: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libc++.1.dylib                    0x7ff801a1bec2 0x7ff801a10000 + 48834 3   libvapoursynth.dylib                 0x118471869 0x1183ff000 + 469097 4   libvapoursynth.dylib                 0x118473fc0 0x1183ff000 + 479168 5   libsystem_pthread.dylib           0x7ff801ab65a8 0x7ff801ab0000 + 26024 6   libsystem_pthread.dylib           0x7ff801ab20c3 0x7ff801ab0000 + 8387 Thread 42: 0   libsystem_kernel.dylib            0x7ff801a82696 0x7ff801a7f000 + 13974 1   libsystem_pthread.dylib           0x7ff801ab6b1d 0x7ff801ab0000 + 27421 2   libc++.1.dylib                    0x7ff801a1bec2 0x7ff801a10000 + 48834 3   libvapoursynth.dylib                 0x118471869 0x1183ff000 + 469097 4   libvapoursynth.dylib                 0x118473fc0 0x1183ff000 + 479168 5   libsystem_pthread.dylib           0x7ff801ab65a8 0x7ff801ab0000 + 26024 6   libsystem_pthread.dylib           0x7ff801ab20c3 0x7ff801ab0000 + 8387 Thread 0 crashed with X86 Thread State (64-bit):   rax: 0x00000000007ee9f3  rbx: 0x00000000007ee9f3  rcx: 0x0000000000000000  rdx: 0x000000010f533b30   rdi: 0x00000000007ee9f3  rsi: 0x0000000000000110  rbp: 0x000000010f531520  rsp: 0x000000010f531500    r8: 0x000000010f531598   r9: 0x000000000000018c  r10: 0x0000000000000000  r11: 0xffffffffffffe190   r12: 0xe000000200000000  r13: 0x00007fd93c21a330  r14: 0x000000012ae5f018  r15: 0x000000010f531598   rip: 0x000000012ad3ab5e  rfl: 0x0000000000010296  cr2: 0x00000000007eea43   Logical CPU:     0 Error Code:      0x00000006 (no mapping for user data write) Trap Number:     14 Thread 0 instruction stream:   25 90 49 8b 4f 28 48 89-0f 49 89 47 28 49 89 5f  %.I.O(H..I.G(I._   30 48 89 df 49 39 de 74-a9 48 89 d8 48 83 7b 08  0H..I9.t.H..H.{.   02 48 8b 1b 72 dc 48 85-ff 74 e2 e8 ae 41 05 00  .H..r.H..t...A..   49 89 5f 30 48 89 df 49-39 de 75 dd eb 84 48 83  I._0H..I9.u...H.   c4 08 5b 41 5e 41 5f 5d-c3 90 90 90 90 90 90 90  ..[A^A_]........   90 90 55 48 89 e5 41 57-41 56 41 54 53 48 89 fb  ..UH..AWAVATSH.. [ff]47 50 48 01 77 58 4c-8b 27 4c 8b 77 20 49 8d  .GPH.wXL.'L.w I. <==   04 36 4c 39 e0 76 3c 49-89 f7 4c 8b 73 18 4d 01  .6L9.v<I..L.s.M.   f7 4d 39 e7 76 44 4c 89-ff e8 5c 41 05 00 48 89  .M9.vDL...\A..H.   c1 48 8b 73 30 4b 8d 44-3c ff 31 d2 49 f7 f4 48  .H.s0K.D<.1.I..H   89 31 48 89 41 08 48 89-4b 30 4c 89 63 20 49 01  .1H.A.H.K0L.c I.   ce eb 58 4c 03 73 30 48-8b 4b 10 48 01 c8 48 f7  ..XL.s0H.K.H..H. Binary Images:        0x12ab8c000 -        0x12ae4efff libvsw2xnvk.dylib (*) <ba70c363-e5b0-38a4-a7e8-dfdfe1a94b88> /Library/Frameworks/VapourSynth.framework/lib/vapoursynth/libvsw2xnvk.dylib        0x12c16b000 -        0x12c437fff libsrmdnv.dylib (*) <247fbd7c-9a34-39d1-87ad-052b8b1f7227> /Library/Frameworks/VapourSynth.framework/lib/vapoursynth/libsrmdnv.dylib        0x1183ff000 -        0x118525fff libvapoursynth.dylib (*) <75c7510b-8c63-3155-9f5b-bcc7ac9c6037> /Library/Frameworks/VapourSynth.framework/lib/libvapoursynth.dylib        0x1187bc000 -        0x118856fff vapoursynth.so (*) <fd4aca3f-5c32-3c01-a2b4-658093e46d87> /Library/Frameworks/VapourSynth.framework/lib/python3.8/site-packages/vapoursynth.so        0x12a235000 -        0x12a471fff libpython3.8.dylib (*) <574cdca9-171e-3d8e-b022-86a7a21d23ed> /Library/Frameworks/VapourSynth.framework/lib/libpython3.8.dylib        0x1113be000 -        0x1113bffff libvapoursynth-script.0.dylib (*) <50f87c14-dbed-330e-9090-b15373a656e4> /Library/Frameworks/VapourSynth.framework/lib/libvapoursynth-script.0.dylib        0x10b48f000 -        0x10b515fff com.yourcompany.vsViewer (*) <77595ebe-cb86-3119-bcf9-b050a03b366e> /Applications/Hybrid.app/Contents/MacOS/vsViewer.app/Contents/MacOS/vsViewer        0x11891d000 -        0x118984fff dyld (*) <dc3377fa-9121-3b39-bc31-50248a0e6bb9> /usr/lib/dyld     0x7ff801ab0000 -     0x7ff801abbfff libsystem_pthread.dylib (*) <64e69af9-3964-396d-aa39-95b86bf68f55> /usr/lib/system/libsystem_pthread.dylib     0x7ff801a7f000 -     0x7ff801aaffff libsystem_kernel.dylib (*) <95d0c67c-6f79-3fb1-b86c-0807435bc150> /usr/lib/system/libsystem_kernel.dylib        0x1113d0000 -        0x11193cfff org.qt-project.QtCore (5.15) <ae40c3fb-88a8-3841-b641-37a1232c7609> /Applications/Hybrid.app/Contents/MacOS/vsViewer.app/Contents/Frameworks/QtCore.framework/Versions/5/QtCore     0x7ff801afe000 -     0x7ff801ffffff com.apple.CoreFoundation (6.9) <45249d64-25d3-3e6e-b2f3-425f7cfc11dc> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation     0x7ff801a10000 -     0x7ff801a68fff libc++.1.dylib (*) <f599b13f-6275-3735-b14f-a5ef216cdeae> /usr/lib/libc++.1.dylib        0x12c501000 -        0x12d00efff libavcodec.58.dylib (*) <1097b320-92db-3df6-86bd-a1359774605f> /Library/Frameworks/VapourSynth.framework/lib/libavcodec.58.dylib                0x0 - 0xffffffffffffffff ??? (*) <00000000-0000-0000-0000-000000000000> ??? External Modification Summary:   Calls made by other processes targeting this process:     task_for_pid: 0     thread_create: 0     thread_set_state: 0   Calls made by this process:     task_for_pid: 0     thread_create: 0     thread_set_state: 0   Calls made by all processes on this machine:     task_for_pid: 0     thread_create: 0     thread_set_state: 0 VM Region Summary: ReadOnly portion of Libraries: Total=1.1G resident=0K(0%) swapped_out_or_unallocated=1.1G(100%) Writable regions: Total=2.6G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=2.6G(100%)                                 VIRTUAL   REGION REGION TYPE                        SIZE    COUNT (non-coalesced) ===========                     =======  ======= Activity Tracing                   256K        1 ColorSync                          220K       23 Foundation                          16K        1 Kernel Alloc Once                    8K        1 MALLOC                             1.0G      151 MALLOC guard page                   48K        9 MALLOC_MEDIUM (reserved)           1.1G       15         reserved VM address space (unallocated) MALLOC_NANO (reserved)           384.0M        1         reserved VM address space (unallocated) OpenCL                             208K        6 STACK GUARD                       56.2M       43 Stack                             29.3M       43 VM_ALLOCATE                       9980K       85 __DATA                            45.5M      448 __DATA_CONST                      14.3M      203 __DATA_DIRTY                       633K      108 __FONT_DATA                          4K        1 __GLSLBUILTINS                    5176K        1 __LINKEDIT                       667.9M      118 __OBJC_RO                         80.9M        1 __OBJC_RW                         3040K        3 __TEXT                           414.4M      445 __UNICODE                          588K        1 dyld private memory               1152K        3 mapped file                      393.9M       30 shared memory                     1296K       17 ===========                     =======  ======= TOTAL                              4.2G     1758 TOTAL, minus reserved VM space     2.7G     1758 ----------- Full Report ----------- {"app_name":"vsViewer","timestamp":"2021-08-11 10:09:48.00 -0400","app_version":"","slice_uuid":"77595ebe-cb86-3119-bcf9-b050a03b366e","build_version":"","platform":1,"bundleID":"com.yourcompany.vsViewer","share_with_app_devs":1,"is_first_party":0,"etl_key":"3","bug_type":"309","os_version":"macOS 12.0 (21A5294g)","incident_id":"87939F86-AE70-4FE2-BD2A-B90EEFA759AF","name":"vsViewer"} {   "uptime" : 120000,   "procLaunch" : "2021-08-11 10:09:45.4084 -0400",   "procRole" : "Background",   "version" : 2,   "userID" : 501,   "deployVersion" : 209,   "modelCode" : "iMac19,1",   "procStartAbsTime" : 126990270505208,   "coalitionID" : 854,   "osVersion" : {     "train" : "macOS 12.0",     "build" : "21A5294g",     "releaseType" : "User"   },   "captureTime" : "2021-08-11 10:09:47.8611 -0400",   "incident" : "87939F86-AE70-4FE2-BD2A-B90EEFA759AF",   "bug_type" : "309",   "pid" : 35693,   "procExitAbsTime" : 126992722050698,   "cpuType" : "X86-64",   "procName" : "vsViewer",   "procPath" : "\/Applications\/Hybrid.app\/Contents\/MacOS\/vsViewer.app\/Contents\/MacOS\/vsViewer",   "bundleInfo" : {"CFBundleIdentifier":"com.yourcompany.vsViewer"},   "storeInfo" : {"deviceIdentifierForVendor":"8E52A0D9-3057-5F71-A918-45D251031801","thirdParty":true},   "parentProc" : "Hybrid",   "parentPid" : 25647,   "coalitionName" : "de.selur.Hybrid",   "crashReporterKey" : "CFF99493-13DB-96E9-878D-A07A37893653",   "responsiblePid" : 25647,   "responsibleProc" : "Hybrid",   "sip" : "enabled",   "vmRegionInfo" : "0x7eea43 is not in any region.  Bytes before following region: 4475979197\n      REGION TYPE                    START - END         [ VSIZE] PRT\/MAX SHRMOD  REGION DETAIL\n      UNUSED SPACE AT START\n--->  \n      __TEXT                      10b48f000-10b516000    [  540K] r-x\/r-x SM=COW  ...acOS\/vsViewer",   "isCorpse" : 1,   "exception" : {"codes":"0x0000000000000001, 0x00000000007eea43","rawCodes":[1,8317507],"type":"EXC_BAD_ACCESS","signal":"SIGSEGV","subtype":"KERN_INVALID_ADDRESS at 0x00000000007eea43"},   "termination" : {"flags":0,"code":11,"namespace":"SIGNAL","indicator":"Segmentation fault: 11","byProc":"exc handler","byPid":35693},   "vmregioninfo" : "0x7eea43 is not in any region.  Bytes before following region: 4475979197\n      REGION TYPE                    START - END         [ VSIZE] PRT\/MAX SHRMOD  REGION DETAIL\n      UNUSED SPACE AT START\n--->  \n      __TEXT                      10b48f000-10b516000    [  540K] r-x\/r-x SM=COW  ...acOS\/vsViewer",   "extMods" : {"caller":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"system":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"targeted":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"warnings":0},   "faultingThread" : 0,   "threads" : [{"triggered":true,"id":8317427,"instructionState":{"instructionStream":{"bytes":[37,144,73,139,79,40,72,137,15,73,137,71,40,73,137,95,48,72,137,223,73,57,222,116,169,72,137,216,72,131,123,8,2,72,139,27,114,220,72,133,255,116,226,232,174,65,5,0,73,137,95,48,72,137,223,73,57,222,117,221,235,132,72,131,196,8,91,65,94,65,95,93,195,144,144,144,144,144,144,144,144,144,85,72,137,229,65,87,65,86,65,84,83,72,137,251,255,71,80,72,1,119,88,76,139,39,76,139,119,32,73,141,4,54,76,57,224,118,60,73,137,247,76,139,115,24,77,1,247,77,57,231,118,68,76,137,255,232,92,65,5,0,72,137,193,72,139,115,48,75,141,68,60,255,49,210,73,247,244,72,137,49,72,137,65,8,72,137,75,48,76,137,99,32,73,1,206,235,88,76,3,115,48,72,139,75,16,72,1,200,72,247],"offset":96}},"threadState":{"r13":{"value":140570993468208},"rax":{"value":8317427},"rflags":{"value":66198},"cpu":{"value":0},"r14":{"value":5014679576},"rsi":{"value":272},"r8":{"value":4552070552},"cr2":{"value":8317507},"rdx":{"value":4552080176},"r10":{"value":0},"r9":{"value":396},"r15":{"value":4552070552},"rbx":{"value":8317427},"trap":{"value":14,"description":"(no mapping for user data write)"},"err":{"value":6},"r11":{"value":18446744073709543824},"rip":{"value":5013482334,"matchesCrashFrame":1},"rbp":{"value":4552070432},"rsp":{"value":4552070400},"r12":{"value":16140901073085792256},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":8317427}},"queue":"com.apple.main-thread","frames":[{"imageOffset":1764190,"imageIndex":0},{"imageOffset":1564819,"imageIndex":0},{"imageOffset":1571066,"imageIndex":1},{"imageOffset":1568164,"imageIndex":1},{"imageOffset":1013950,"imageIndex":1},{"imageOffset":1554519,"imageIndex":1},{"imageOffset":1795634,"imageIndex":1},{"imageOffset":1801898,"imageIndex":1},{"imageOffset":156616,"imageIndex":1},{"imageOffset":245544,"imageIndex":1},{"imageOffset":607800,"imageIndex":1},{"imageOffset":121170,"imageIndex":1},{"imageOffset":129741,"imageIndex":1},{"imageOffset":12640,"imageIndex":1},{"imageOffset":391333,"imageIndex":2},{"imageOffset":327489,"imageIndex":2},{"imageOffset":468038,"imageIndex":3},{"imageOffset":462481,"imageIndex":3},{"imageOffset":130470,"imageIndex":4},{"imageOffset":1024808,"imageIndex":4},{"imageOffset":992436,"imageIndex":4},{"imageOffset":1028969,"imageIndex":4},{"imageOffset":987936,"imageIndex":4},{"imageOffset":17461,"imageIndex":3},{"imageOffset":4473,"imageIndex":5},{"imageOffset":249351,"imageIndex":6},{"imageOffset":28441,"imageIndex":6},{"imageOffset":17654,"imageIndex":6},{"imageOffset":16672,"imageIndex":6},{"imageOffset":21717,"imageIndex":7}]},{"id":8317429,"frames":[{"imageOffset":8352,"imageIndex":8}]},{"id":8317430,"frames":[{"imageOffset":8352,"imageIndex":8}]},{"id":8317449,"frames":[{"imageOffset":8352,"imageIndex":8}]},{"id":8317451,"frames":[{"imageOffset":8352,"imageIndex":8}]},{"id":8317452,"frames":[{"imageOffset":8352,"imageIndex":8}]},{"id":8317460,"name":"Thread (pooled)","frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":175135,"imageIndex":10},{"imageOffset":174318,"imageIndex":10},{"imageOffset":174093,"imageIndex":10},{"imageOffset":160061,"imageIndex":10},{"imageOffset":141945,"imageIndex":10},{"imageOffset":26024,"imageIndex":8},{"imageOffset":8387,"imageIndex":8}]},{"id":8317461,"name":"Thread (pooled)","frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":175135,"imageIndex":10},{"imageOffset":174318,"imageIndex":10},{"imageOffset":174093,"imageIndex":10},{"imageOffset":160061,"imageIndex":10},{"imageOffset":141945,"imageIndex":10},{"imageOffset":26024,"imageIndex":8},{"imageOffset":8387,"imageIndex":8}]},{"id":8317462,"name":"Thread (pooled)","frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":175135,"imageIndex":10},{"imageOffset":174318,"imageIndex":10},{"imageOffset":174093,"imageIndex":10},{"imageOffset":160061,"imageIndex":10},{"imageOffset":141945,"imageIndex":10},{"imageOffset":26024,"imageIndex":8},{"imageOffset":8387,"imageIndex":8}]},{"id":8317463,"name":"Thread (pooled)","frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":175135,"imageIndex":10},{"imageOffset":174318,"imageIndex":10},{"imageOffset":174093,"imageIndex":10},{"imageOffset":160061,"imageIndex":10},{"imageOffset":141945,"imageIndex":10},{"imageOffset":26024,"imageIndex":8},{"imageOffset":8387,"imageIndex":8}]},{"id":8318011,"name":"com.apple.CFSocket.private","frames":[{"imageOffset":36826,"imageIndex":9},{"imageOffset":691069,"imageIndex":11},{"imageOffset":26024,"imageIndex":8},{"imageOffset":8387,"imageIndex":8}]},{"id":8318044,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":48834,"imageIndex":12},{"imageOffset":469097,"imageIndex":2},{"imageOffset":479168,"imageIndex":2},{"imageOffset":26024,"imageIndex":8},{"imageOffset":8387,"imageIndex":8}]},{"id":8318045,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":48834,"imageIndex":12},{"imageOffset":469097,"imageIndex":2},{"imageOffset":479168,"imageIndex":2},{"imageOffset":26024,"imageIndex":8},{"imageOffset":8387,"imageIndex":8}]},{"id":8318046,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":48834,"imageIndex":12},{"imageOffset":469097,"imageIndex":2},{"imageOffset":479168,"imageIndex":2},{"imageOffset":26024,"imageIndex":8},{"imageOffset":8387,"imageIndex":8}]},{"id":8318047,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":48834,"imageIndex":12},{"imageOffset":469097,"imageIndex":2},{"imageOffset":479168,"imageIndex":2},{"imageOffset":26024,"imageIndex":8},{"imageOffset":8387,"imageIndex":8}]},{"id":8318048,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":48834,"imageIndex":12},{"imageOffset":469097,"imageIndex":2},{"imageOffset":479168,"imageIndex":2},{"imageOffset":26024,"imageIndex":8},{"imageOffset":8387,"imageIndex":8}]},{"id":8318049,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":48834,"imageIndex":12},{"imageOffset":469097,"imageIndex":2},{"imageOffset":479168,"imageIndex":2},{"imageOffset":26024,"imageIndex":8},{"imageOffset":8387,"imageIndex":8}]},{"id":8318050,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":48834,"imageIndex":12},{"imageOffset":469097,"imageIndex":2},{"imageOffset":479168,"imageIndex":2},{"imageOffset":26024,"imageIndex":8},{"imageOffset":8387,"imageIndex":8}]},{"id":8318051,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":48834,"imageIndex":12},{"imageOffset":469097,"imageIndex":2},{"imageOffset":479168,"imageIndex":2},{"imageOffset":26024,"imageIndex":8},{"imageOffset":8387,"imageIndex":8}]},{"id":8318052,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":48834,"imageIndex":12},{"imageOffset":469097,"imageIndex":2},{"imageOffset":479168,"imageIndex":2},{"imageOffset":26024,"imageIndex":8},{"imageOffset":8387,"imageIndex":8}]},{"id":8318053,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":5033613,"imageIndex":13},{"imageOffset":35871566856192,"imageIndex":14}]},{"id":8318054,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":5033613,"imageIndex":13},{"imageOffset":35871566856192,"imageIndex":14}]},{"id":8318055,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":5033613,"imageIndex":13},{"imageOffset":35871566856192,"imageIndex":14}]},{"id":8318056,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":5033613,"imageIndex":13},{"imageOffset":35871566856192,"imageIndex":14}]},{"id":8318057,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":5033613,"imageIndex":13},{"imageOffset":35871566856192,"imageIndex":14}]},{"id":8318058,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":5033613,"imageIndex":13},{"imageOffset":35871566856192,"imageIndex":14}]},{"id":8318059,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":5033613,"imageIndex":13},{"imageOffset":35871566856192,"imageIndex":14}]},{"id":8318060,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":5033613,"imageIndex":13},{"imageOffset":35871566856192,"imageIndex":14}]},{"id":8318061,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":5033613,"imageIndex":13},{"imageOffset":35871566856192,"imageIndex":14}]},{"id":8318062,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":5033613,"imageIndex":13},{"imageOffset":35871566856192,"imageIndex":14}]},{"id":8318063,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":5033613,"imageIndex":13},{"imageOffset":35871566856192,"imageIndex":14}]},{"id":8318064,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":5033613,"imageIndex":13},{"imageOffset":35871566856192,"imageIndex":14}]},{"id":8318065,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":5033613,"imageIndex":13},{"imageOffset":35871566856192,"imageIndex":14}]},{"id":8318066,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":5033613,"imageIndex":13},{"imageOffset":35871566856192,"imageIndex":14}]},{"id":8318067,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":5033613,"imageIndex":13},{"imageOffset":35871566856192,"imageIndex":14}]},{"id":8318068,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":5033613,"imageIndex":13},{"imageOffset":35871566856192,"imageIndex":14}]},{"id":8318075,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":48834,"imageIndex":12},{"imageOffset":469097,"imageIndex":2},{"imageOffset":479168,"imageIndex":2},{"imageOffset":26024,"imageIndex":8},{"imageOffset":8387,"imageIndex":8}]},{"id":8318076,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":48834,"imageIndex":12},{"imageOffset":469097,"imageIndex":2},{"imageOffset":479168,"imageIndex":2},{"imageOffset":26024,"imageIndex":8},{"imageOffset":8387,"imageIndex":8}]},{"id":8318077,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":48834,"imageIndex":12},{"imageOffset":469097,"imageIndex":2},{"imageOffset":479168,"imageIndex":2},{"imageOffset":26024,"imageIndex":8},{"imageOffset":8387,"imageIndex":8}]},{"id":8318078,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":48834,"imageIndex":12},{"imageOffset":469097,"imageIndex":2},{"imageOffset":479168,"imageIndex":2},{"imageOffset":26024,"imageIndex":8},{"imageOffset":8387,"imageIndex":8}]},{"id":8318079,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":48834,"imageIndex":12},{"imageOffset":469097,"imageIndex":2},{"imageOffset":479168,"imageIndex":2},{"imageOffset":26024,"imageIndex":8},{"imageOffset":8387,"imageIndex":8}]},{"id":8318080,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":48834,"imageIndex":12},{"imageOffset":469097,"imageIndex":2},{"imageOffset":479168,"imageIndex":2},{"imageOffset":26024,"imageIndex":8},{"imageOffset":8387,"imageIndex":8}]},{"id":8318081,"frames":[{"imageOffset":13974,"imageIndex":9},{"imageOffset":27421,"imageIndex":8},{"imageOffset":48834,"imageIndex":12},{"imageOffset":469097,"imageIndex":2},{"imageOffset":479168,"imageIndex":2},{"imageOffset":26024,"imageIndex":8},{"imageOffset":8387,"imageIndex":8}]}],   "usedImages" : [   {     "source" : "P",     "arch" : "x86_64",     "base" : 5011718144,     "size" : 2895872,     "uuid" : "ba70c363-e5b0-38a4-a7e8-dfdfe1a94b88",     "path" : "\/Library\/Frameworks\/VapourSynth.framework\/lib\/vapoursynth\/libvsw2xnvk.dylib",     "name" : "libvsw2xnvk.dylib"   },   {     "source" : "P",     "arch" : "x86_64",     "base" : 5034651648,     "size" : 2936832,     "uuid" : "247fbd7c-9a34-39d1-87ad-052b8b1f7227",     "path" : "\/Library\/Frameworks\/VapourSynth.framework\/lib\/vapoursynth\/libsrmdnv.dylib",     "name" : "libsrmdnv.dylib"   },   {     "source" : "P",     "arch" : "x86_64",     "base" : 4701810688,     "size" : 1208320,     "uuid" : "75c7510b-8c63-3155-9f5b-bcc7ac9c6037",     "path" : "\/Library\/Frameworks\/VapourSynth.framework\/lib\/libvapoursynth.dylib",     "name" : "libvapoursynth.dylib"   },   {     "source" : "P",     "arch" : "x86_64",     "base" : 4705730560,     "size" : 634880,     "uuid" : "fd4aca3f-5c32-3c01-a2b4-658093e46d87",     "path" : "\/Library\/Frameworks\/VapourSynth.framework\/lib\/python3.8\/site-packages\/vapoursynth.so",     "name" : "vapoursynth.so"   },   {     "source" : "P",     "arch" : "x86_64",     "base" : 5001924608,     "size" : 2347008,     "uuid" : "574cdca9-171e-3d8e-b022-86a7a21d23ed",     "path" : "\/Library\/Frameworks\/VapourSynth.framework\/lib\/libpython3.8.dylib",     "name" : "libpython3.8.dylib"   },   {     "source" : "P",     "arch" : "x86_64",     "base" : 4584103936,     "size" : 8192,     "uuid" : "50f87c14-dbed-330e-9090-b15373a656e4",     "path" : "\/Library\/Frameworks\/VapourSynth.framework\/lib\/libvapoursynth-script.0.dylib",     "name" : "libvapoursynth-script.0.dylib"   },   {     "source" : "P",     "arch" : "x86_64",     "base" : 4484296704,     "CFBundleIdentifier" : "com.yourcompany.vsViewer",     "size" : 552960,     "uuid" : "77595ebe-cb86-3119-bcf9-b050a03b366e",     "path" : "\/Applications\/Hybrid.app\/Contents\/MacOS\/vsViewer.app\/Contents\/MacOS\/vsViewer",     "name" : "vsViewer"   },   {     "source" : "P",     "arch" : "x86_64",     "base" : 4707176448,     "size" : 425984,     "uuid" : "dc3377fa-9121-3b39-bc31-50248a0e6bb9",     "path" : "\/usr\/lib\/dyld",     "name" : "dyld"   },   {     "source" : "P",     "arch" : "x86_64",     "base" : 140703156600832,     "size" : 49152,     "uuid" : "64e69af9-3964-396d-aa39-95b86bf68f55",     "path" : "\/usr\/lib\/system\/libsystem_pthread.dylib",     "name" : "libsystem_pthread.dylib"   },   {     "source" : "P",     "arch" : "x86_64",     "base" : 140703156400128,     "size" : 200704,     "uuid" : "95d0c67c-6f79-3fb1-b86c-0807435bc150",     "path" : "\/usr\/lib\/system\/libsystem_kernel.dylib",     "name" : "libsystem_kernel.dylib"   },   {     "source" : "P",     "arch" : "x86_64",     "base" : 4584177664,     "CFBundleShortVersionString" : "5.15",     "CFBundleIdentifier" : "org.qt-project.QtCore",     "size" : 5689344,     "uuid" : "ae40c3fb-88a8-3841-b641-37a1232c7609",     "path" : "\/Applications\/Hybrid.app\/Contents\/MacOS\/vsViewer.app\/Contents\/Frameworks\/QtCore.framework\/Versions\/5\/QtCore",     "name" : "QtCore",     "CFBundleVersion" : "5.15.0"   },   {     "source" : "P",     "arch" : "x86_64h",     "base" : 140703156920320,     "CFBundleShortVersionString" : "6.9",     "CFBundleIdentifier" : "com.apple.CoreFoundation",     "size" : 5251072,     "uuid" : "45249d64-25d3-3e6e-b2f3-425f7cfc11dc",     "path" : "\/System\/Library\/Frameworks\/CoreFoundation.framework\/Versions\/A\/CoreFoundation",     "name" : "CoreFoundation",     "CFBundleVersion" : "1844"   },   {     "source" : "P",     "arch" : "x86_64",     "base" : 140703155945472,     "size" : 364544,     "uuid" : "f599b13f-6275-3735-b14f-a5ef216cdeae",     "path" : "\/usr\/lib\/libc++.1.dylib",     "name" : "libc++.1.dylib"   },   {     "source" : "P",     "arch" : "x86_64",     "base" : 5038411776,     "size" : 11591680,     "uuid" : "1097b320-92db-3df6-86bd-a1359774605f",     "path" : "\/Library\/Frameworks\/VapourSynth.framework\/lib\/libavcodec.58.dylib",     "name" : "libavcodec.58.dylib"   },   {     "size" : 0,     "source" : "A",     "base" : 0,     "uuid" : "00000000-0000-0000-0000-000000000000"   } ],   "sharedCache" : {   "base" : 140703153405952,   "size" : 15212380160,   "uuid" : "f15ad98e-8292-3334-8311-8b9fb3948578" },   "vmSummary" : "ReadOnly portion of Libraries: Total=1.1G resident=0K(0%) swapped_out_or_unallocated=1.1G(100%)\nWritable regions: Total=2.6G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=2.6G(100%)\n\n                                VIRTUAL   REGION \nREGION TYPE                        SIZE    COUNT (non-coalesced) \n===========                     =======  ======= \nActivity Tracing                   256K        1 \nColorSync                          220K       23 \nFoundation                          16K        1 \nKernel Alloc Once                    8K        1 \nMALLOC                             1.0G      151 \nMALLOC guard page                   48K        9 \nMALLOC_MEDIUM (reserved)           1.1G       15         reserved VM address space (unallocated)\nMALLOC_NANO (reserved)           384.0M        1         reserved VM address space (unallocated)\nOpenCL                             208K        6 \nSTACK GUARD                       56.2M       43 \nStack                             29.3M       43 \nVM_ALLOCATE                       9980K       85 \n__DATA                            45.5M      448 \n__DATA_CONST                      14.3M      203 \n__DATA_DIRTY                       633K      108 \n__FONT_DATA                          4K        1 \n__GLSLBUILTINS                    5176K        1 \n__LINKEDIT                       667.9M      118 \n__OBJC_RO                         80.9M        1 \n__OBJC_RW                         3040K        3 \n__TEXT                           414.4M      445 \n__UNICODE                          588K        1 \ndyld private memory               1152K        3 \nmapped file                      393.9M       30 \nshared memory                     1296K       17 \n===========                     =======  ======= \nTOTAL                              4.2G     1758 \nTOTAL, minus reserved VM space     2.7G     1758 \n",   "legacyInfo" : {   "threadTriggered" : {     "queue" : "com.apple.main-thread"   } },   "trialInfo" : {   "rollouts" : [     {       "rolloutId" : "607844aa04477260f58a8077",       "factorPackIds" : {         "SIRI_MORPHUN_ASSETS" : "60ef663fea07ad5dba6c903e"       },       "deploymentId" : 250000055     },     {       "rolloutId" : "5fc94383418129005b4e9ae0",       "factorPackIds" : {       },       "deploymentId" : 250000110     },     {       "rolloutId" : "60356660bbe37970735c5624",       "factorPackIds" : {       },       "deploymentId" : 250000013     },     {       "rolloutId" : "60da5e84ab0ca017dace9abf",       "factorPackIds" : {       },       "deploymentId" : 250000006     },     {       "rolloutId" : "602ad4dac86151000cf27e46",       "factorPackIds" : {         "SIRI_DICTATION_ASSETS" : "610c869137f5d11121dcd114"       },       "deploymentId" : 250000156     },     {       "rolloutId" : "601d9415f79519000ccd4b69",       "factorPackIds" : {         "SIRI_TEXT_TO_SPEECH" : "610c7e7b37f5d11121dcd0fa"       },       "deploymentId" : 250000147     }   ],   "experiments" : [   ] } } Model: iMac19,1, BootROM 1554.140.20.0.0, 8 processors, 8-Core Intel Core i9, 3.6 GHz, 64 GB, SMC 2.46f12 Graphics: kHW_AMDRadeonProVega48Item, Radeon Pro Vega 48, spdisplays_pcie_device, 8 GB Memory Module: BANK 0/ChannelA-DIMM0, 16 GB, DDR4, 2667 MHz, 0000, - Memory Module: BANK 1/ChannelA-DIMM1, 16 GB, DDR4, 2667 MHz, 0000, unknown Memory Module: BANK 2/ChannelB-DIMM0, 16 GB, DDR4, 2667 MHz, 0000, unknown Memory Module: BANK 3/ChannelB-DIMM1, 16 GB, DDR4, 2667 MHz, 0000, unknown AirPort: spairport_wireless_card_type_wifi (0x14E4, 0x7BF), wl0: Jul 12 2021 19:26:30 version 9.30.464.0.32.5.76 FWID 01-45ccefcd Bluetooth: Version (null), 0 services, 0 devices, 0 incoming serial ports Network Service: Ethernet, Ethernet, en0 Network Service: Wi-Fi, AirPort, en1 PCI Card: pci1b73,1100, sppci_usbxhci, Thunderbolt@16,0,0 PCI Card: pci1b73,1100, sppci_usbxhci, Thunderbolt@15,0,0 PCI Card: pci1b21,1242, sppci_usbxhci, Thunderbolt@14,0,0 PCI Card: ethernet, sppci_ethernet, Thunderbolt@13,0,0 PCI Card: Intensity Shuttle Thunderbolt, sppci_video, Thunderbolt@19,0,0 USB Device: USB 3.1 Bus USB Device: My Passport 2628 USB Device: Magic Keyboard USB Device: FaceTime HD Camera (Built-in) USB Device: easystore 2647 USB Device: Magic Trackpad 2 USB Device: Portable SSD T5 USB Device: USB 3.0 Bus USB Device: Extreme SSD USB Device: Portable SSD T5 USB Device: CalDigit Thunderbolt 3 Audio USB Device: USB 3.0 Bus USB Device: Card Reader USB Device: easystore 25FB USB Device: Portable SSD T5 USB Device: USB 3.1 Bus USB Device: ShadowCast USB Device: My Book 25EE Thunderbolt Bus: iMac, Apple Inc., 47.5 Thunderbolt Device: TS3 Plus, CalDigit, Inc., 1, 44.1
Reply
#8
Not what I meant, but that explains the confusion.
vsViewer totally crashed.

Does the Vapoursynth Preview work if you don't use SRMD?

Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Reply
#9
Yes, it'll open using Waifu2x or ResampleHQ or NEEDI3 etc.
Reply
#10
Okay, that it isn't an issue of Qt or vsViewer.
Can't really do anything about the srmd library since it's neither written nor compiled by me.
You could ask l33tmeatwad over at doom9s (https://forum.doom9.org/showthread.php?t=175522) if the has an idea, but my guess is that it's some incompatibilty with the beta and some dependency needed to build srmd.

Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)