Selur's Little Message Board

Full Version: Trying to get Hybrid running an an M1 Mac
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Sadly because Hybrid keeps crashing on my recently purchased Windows 11 PC, I am now hoping to be able to get it running on an M1 Mac running OS Sequoia (15.7.3) 

I've installed Vapoursynth via Homebrew

And then ran:

xattr -rc /Applications/Hybrid.app - but Terminal reports "permission Denied/Applications/Hybrid.app"

Hybrid is up and running, but although it starts off processing the audio files it fails to process the video. Is there another way to set the path to Vs?

Debug attached.
xattr must be called with sudo otherwise Hybrid would be restricted a lot by the OS,...
the
Code:
[yuv4mpegpipe @ 0x1307045a0] Header too large.
indicates that something is not working with Vapoursynth => check that the Vapoursynth Preview is working,...
Thanks, but how do I call with sudo?
Instead of calling:
Code:
xattr -rc /Applications/Hybrid.app
you use:
Code:
sudo xattr -rc /Applications/Hybrid.app
this should trigger MacOS to ask for your password, to be sure you know what you are doing.
sudo = super user do

Cu Selur
OK, I just ran:

sudo xattr -rc /Applications.Hybrid.app

I then entered my password but then nothing seems to have happened? Did it set something in the background?
This should allow the tools in Hybrid to be used at all. Smile
There should be no visual effect or output.
=> Try Vapoursynth Preview, if it doesn't work share the error message.
Still no luck on the Mac. DeBug attached.
DebugOutput of another encoding try,..
Not what I asked for,... Angel
Hybrid does call
Code:
"/opt/homebrew/bin/vspipe" "/Volumes/2TB-NTFS SSD/My Dear Killer/HybridTEMP/encodingTempSynthSkript_2026-07-08@16_52_19_9010_0.vpy" - --outputindex 0 -c y4m
and pipes that to ffmpeg.
What happens when you call:
Code:
"/opt/homebrew/bin/vspipe" "/Volumes/2TB-NTFS SSD/My Dear Killer/HybridTEMP/encodingTempSynthSkript_2026-07-08@16_52_19_9010_0.vpy" /dev/null --outputindex 0 -c y4m

Cu Selur
Calling:

"/opt/homebrew/bin/vspipe" "/Volumes/2TB-NTFS SSD/My Dear Killer/HybridTEMP/encodingTempSynthSkript_2026-07-08@16_52_19_9010_0.vpy" /dev/null --outputindex 0 -c y4m

Gives:

Warning: Explicitly instantiated a Cache. This is no longer possible and the original clip has been passed through instead.

It creates a folder in which a file ending mkv.0.bsindx appears.
Okay, that seems fine.
Then what about the Vapoursynth Preview? Does it work?

Quote: It creates a folder in which a file ending mkv.0.bsindx appears.
That happens since bestsource is used.
Pages: 1 2