Skip to main content
Inspiring
June 20, 2024
Answered

Plugin loading issue

  • June 20, 2024
  • 1 reply
  • 330 views

Hello,

 

I have a PremierePro plugin (macOS arm64/x86_64) that loads/works OK in Premiere. I am now trying to use/debug it for use in AfterEffects.

 

In "Plugin Loading.log", it seems to load OK (see log excerpt below) but then it is not shown in the UI, nor in "Effect | Manage Effects..." nor in "Effect" menu.

 

If I load it from an other program, dependencies seems to be there, signature is OK. Perhaps, there is an issue with the PiPL resources (they are close to the Checkout sample ones) or a missing entry point (I have EffectMain, PluginDataEntryFunction2 and xGPUFilterEntry).

 

If I reset the preferences and launch AE under a Debugger, I hit PluginDataEntryFunction2 so it is loading.

 

Thanks in advance.

 

David

 

 

Begin PluginNameList::AddFolder /Library/Application Support/Adobe/Common/Plug-ins/7.0/MediaCore 0
PluginNameList::AddFilePath - added "/Library/Application Support/Adobe/Common/Plug-ins/7.0/MediaCore/Scatter.plugin" 0
Finished PluginNameList::AddFolder /Library/Application Support/Adobe/Common/Plug-ins/7.0/MediaCore 0
Scanning /Library/Application Support/Adobe/Common/Plug-ins/7.0/MediaCore and sub-directories

Loading /Library/Application Support/Adobe/Common/Plug-ins/7.0/MediaCore/Scatter.plugin
Loading from disk...
This plugin was recognized by loader 624e610b-0372-4082-b625-73865c15932b.

 

 

This topic has been closed for replies.
Correct answer r2d3_

So the problem was an incorrect entry in the Info.plist

I was missing

  <key>CFBundlePackageType</key>
  <string>eFKT</string>
  <key>CFBundleSignature</key>
  <string>FXTC</string>

1 reply

r2d3_AuthorCorrect answer
Inspiring
July 1, 2024

So the problem was an incorrect entry in the Info.plist

I was missing

  <key>CFBundlePackageType</key>
  <string>eFKT</string>
  <key>CFBundleSignature</key>
  <string>FXTC</string>