Warez on Mac not working

Discussion in 'Mac / Hackintosh' started by l92, Feb 27, 2020.

  1. l92

    l92 Noisemaker

    Joined:
    Nov 26, 2019
    Messages:
    18
    Likes Received:
    3
    So Plugins are working. FabFilter Pro Q3 isn't. It crashes my system. Every other Plugin of FabFilter works. Any idea?
     
  2. gorri

    gorri Ultrasonic

    Joined:
    May 8, 2014
    Messages:
    134
    Likes Received:
    39
    Location:
    Earth
    In terminal:

    First: sudo xattr -c [plugin path]

    Then: sudo codesign -fs - [plugin path]

    Logout or restart.

    K-))
     
    • Like Like x 1
    • Agree Agree x 1
    • List
  3. l92

    l92 Noisemaker

    Joined:
    Nov 26, 2019
    Messages:
    18
    Likes Received:
    3
    hey @gorri can you give me an example? I'm new to this.

    Like this?
    sudo xattr -c /Library/Audio/Plug-Ins/Components

    sudo codesign -fs - /Library/Audio/Plug-Ins/Components

    -----------------------------------------------------------------------

    Or like this?
    sudo xattr -c /Library/Audio/Plug-Ins/Components/FabFilter Pro-Q 3.component

    sudo codesign -fs - /Library/Audio/Plug-Ins/Components/FabFilter Pro-Q 3.component

    What is this commands doing?
     
  4. SmokerNzt

    SmokerNzt Rock Star

    Joined:
    Mar 2, 2013
    Messages:
    527
    Likes Received:
    320
    this command if the plugin is crash when you open the logic but you should type like this example
    you need to press on left mouse key and show package content of FabFilter Pro -Q. component then go to
    Contents/MacOS/ YOUR PLUGIN here one example
    HTML:
    sudo codesing -fs - /Library/Audio/Plug-Ins/Components/BazzISM2.component/Contents/MacOS/BazzISM2
     
  5. HorusAnd

    HorusAnd Member

    Joined:
    Nov 30, 2019
    Messages:
    26
    Likes Received:
    8
    Tbh, this is your best bet. It will run the process on your entire plugins folder. This will sign all .vst .vst3 .component and .bundles as well, which sometimes need to be signed for component. Copy and paste it into terminal and run it

    cd /Library/Audio/Plug-Ins && find . -name "*.bundle" -execdir sudo codesign -f -s - {} \; && find . -name "*.vst" -execdir sudo codesign -f -s - {} \; && find . -name "*.vst3" -execdir sudo codesign -f -s - {} \; && find . -name "*.component" -execdir sudo codesign -f -s - {} \;
     
Loading...
Loading...