CINEVERSITY

    Maxon Logo
    • Login
    • Search
    • Recent
    • Popular
    • Users
    • Groups

    c4d thumbnail doesn't show on MacOS on a MBP

    Question & Answers
    11
    74
    12561
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • W
      whereas-stuff @whereas-stuff last edited by

      But unfortunately no C4D Thumbs are showing. Cleared cache already etc. What could be the problem?

      This is showing when I click now on the installed app:
      8cd0abed-d101-4f45-aca1-2a3bc85df35d-Screenshot-000143 3.png

      E 1 Reply Last reply Reply Quote
      • E
        edge-island @whereas-stuff last edited by

        @whereas-stuff From Claude.ai :


        Quick clarification up front: this is not a regular app — it's a modern macOS Quick Look extension (an .appex of type com.apple.quicklook.thumbnail) bundled inside the .app. That means it registers itself automatically as soon as the containing app is on disk and has been launched once. Note that the old ~/Library/QuickLook folder does not apply here — that's for the legacy .qlgenerator mechanism. Here's how to set it up (run these in Terminal):

        1. Move the app into Applications so LaunchServices keeps it registered:
        mv ~/Downloads/C4DThumbnail.app /Applications/
        
        1. Clear the Gatekeeper block. Heads up: this build is signed with a personal Apple Development certificate, not a Developer ID, and it isn't notarized — so macOS will flag it as coming from an unidentified developer. Strip the quarantine attribute:
        xattr -dr com.apple.quarantine /Applications/C4DThumbnail.app
        

        If macOS still refuses: System Settings → Privacy & Security → "Open Anyway".

        1. Launch the app once to trigger the extension registration:
        open /Applications/C4DThumbnail.app
        
        1. Confirm the system sees the extension, and enable it if needed:
        pluginkit -m -p com.apple.quicklook.thumbnail | grep -i tisi
        pluginkit -e use -i io.tisi.C4DThumbnail.Extension
        

        (The first command should list io.tisi.C4DThumbnail.Extension; a leading + means it's already active.)

        1. Flush the thumbnail cache and restart Finder:
        qlmanage -r
        qlmanage -r cache
        killall Finder
        
        1. Test it on an actual file (swap in a path to one of your own .c4d files):
        qlmanage -t -s 512 -o ~/Desktop "/path/to/a_file.c4d"
        

        That drops a test thumbnail on your Desktop. Otherwise, just open a folder of .c4d files in Finder using Gallery or Icon view.

        Two honest caveats: thumbnails will only show up for .c4d files that actually contain an embedded JPEG preview (this depends on your Cinema 4D save settings), and since the app isn't notarized, a future major macOS update could re-trigger a Gatekeeper block. If registration gets stuck, killall -KILL pkd (the PluginKit daemon) forces it to re-scan.


        W 1 Reply Last reply Reply Quote
        • W
          whereas-stuff @edge-island last edited by whereas-stuff

          Unfortunately I think either the Mac or the OS is not supported
          This I get on restart:

          5256b46d-0fa6-410b-8c48-c9e3e1cb8b9f-Screenshot-000145 3.png

          On what Mac / OS did you got it to work?
          It's installed and I see it in the extensions. But no thumbnail no matter what I do.

          E 1 Reply Last reply Reply Quote
          • E
            edge-island @whereas-stuff last edited by

            @whereas-stuff M3 max - Tahoe

            W 1 Reply Last reply Reply Quote
            • W
              whereas-stuff @edge-island last edited by whereas-stuff

              I did a lot of Claude/Gemini things also everything listed above, nothing worked and on startup it still shows my Mac is unsupported. If you find time @Tisi, maybe you can adjust the code to include all Mac models 🙂

              56a9aae0-2637-426c-9259-4ea36f15397a-Screenshot-000146 3.png

              1 Reply Last reply Reply Quote
              • B
                bike-disaster @Tisi last edited by

                @Tisi OMG works fine on MBP m5 max Tahoe 26.5 .

                I AM CRYING !!!!!!!!!!!!! I can't believe it.

                Thank you so much for this. you did what MAXON didn't almost 3 years now. really I am speechless.

                A big shame for Maxon who takes our good money and doesn't care about us.

                You are the man for the decade for me.

                I owe you a tone.

                BIG THANKS!!!!!!!!!!!!!!!!!

                here is an image on my Mac
                https://app.box.com/s/lppitwr0aujuycp1n5vtw4onb2gdgwf7

                1 Reply Last reply Reply Quote
                • Tisi
                  Tisi last edited by

                  hey, thanks everybody - happy to help 👍
                  @whereas-stuff hm not sure what's wrong, I did not include any model restrictions... maybe something got mixed up, can you try with this again:
                  https://www.dropbox.com/scl/fi/u9l5h0mt32t4zmjcj89ta/C4DThumbnail-1.0-build2-devsigned.zip?rlkey=fvwjsh9bba456463wssxxtot7&dl=0

                  codex recommends:
                  removing the current one with:
                  rm -rf /Applications/C4DThumbnail.app

                  then copying the new .app to /Applications and after that:
                  qlmanage -r
                  qlmanage -r cache
                  killall Finder

                  Should work, your 16,9 is a mac studio so not an old machine... here I have an macbookpro m3 max, any other studio owners tried and got it working? Codex says your dialogue might be wrongly diagnosed by gatekeeper or another tool, honestly I have never even seen that kind of dialogue before in macos. are you using any thirdparty security tools or similar that might interfere?

                  W 1 Reply Last reply Reply Quote
                  • E
                    edge-island last edited by

                    From Claude.ai :

                    ① Réponse forum pour whereas-stuf

                    Hey @whereas-stuf — that "unsupported Mac" message is misleading; it's almost certainly not a real hardware incompatibility. I had the actual app binary analyzed: it's a universal build (Apple Silicon + Intel) with a minimum of macOS 13, and there is no model/architecture/OS check anywhere in the code. So your M1 and M4 are fine in principle — what you're hitting is a code-signature/Gatekeeper rejection that macOS is reporting with a confusing dialog.

                    Important: the chmod +x on the inner binary that got passed around earlier in this thread is the likely culprit. Modifying that file breaks the app's code signature, and on Apple Silicon a binary with a broken signature literally can't launch (the kernel kills it) — which surfaces as exactly these "can't be opened" errors. So don't do that step.

                    Try this from a fresh download (don't touch anything inside the bundle):

                    rm -rf /Applications/C4DThumbnail.app
                    # copy the freshly downloaded .app into /Applications, then:
                    xattr -dr com.apple.quarantine /Applications/C4DThumbnail.app
                    codesign --force --deep --sign - /Applications/C4DThumbnail.app
                    open /Applications/C4DThumbnail.app
                    qlmanage -r && qlmanage -r cache && killall Finder
                    

                    The codesign --sign - line re-seals it with an ad-hoc signature, which is what Apple Silicon needs to run it locally after the original seal was disturbed.

                    One more thing to check: are you running any third-party security software (CleanMyMac, Intego, Malwarebytes, an MDM profile from work, etc.)? Those can intercept the launch and throw their own odd dialog. Worth temporarily disabling to test.

                    Let us know which Mac/OS it finally works on — works here on M3 Max / Tahoe.


                    ② Note technique pour Tisi (Matthias Lein)

                    @Tisi — quick heads-up on why it works for some of us and throws "can't be opened / unsupported" for others. It's not your code (no hardware check in there, it's a clean universal binary). It's the signing.

                    The build is signed with an Apple Development certificate, it carries the get-task-allow entitlement, and there's no provisioning profile in the bundle. That's a debug build: it runs reliably on your own machine, and on other Macs only if the user does the "Open Anyway" dance and nothing disturbs the signature. Any post-download tweak (like the chmod +x advice floating around) invalidates the seal, and on Apple Silicon an invalid signature = won't launch at all. Hence the "works on some Macs, not others" pattern.

                    The durable fix is to ship it as a proper distribution build:

                    1. Enroll in the Apple Developer Program ($99/yr) if you haven't — you need a Developer ID Application certificate (not the Apple Development one).
                    2. Build for Release with Hardened Runtime enabled, and remove get-task-allow (Xcode does this automatically for Release/Developer ID).
                    3. Sign with Developer ID, e.g.
                      codesign --force --options runtime --deep --sign "Developer ID Application: Your Name (TEAMID)" C4DThumbnail.app
                    4. Notarize: zip it, submit with
                      xcrun notarytool submit C4DThumbnail.zip --apple-id … --team-id … --password … --wait
                    5. Staple the ticket so it works offline:
                      xcrun stapler staple C4DThumbnail.app

                    After that, Gatekeeper accepts it everywhere with a normal double-click — no Terminal, no quarantine stripping, no broken-seal issues. Easiest path is to let Xcode's Archive → Distribute App → Developer ID flow do all of steps 3–5 for you.

                    (For what it's worth: huge thanks for actually solving this — two hours of vibecoding beat three years of Maxon tickets.)

                    1 Reply Last reply Reply Quote
                    • W
                      whereas-stuff @Tisi last edited by

                      @Tisi GREAT! THANKS! It has worked flawlessly with your updated version and steps you have described!

                      ❤️ ❤️ ❤️

                      1 Reply Last reply Reply Quote
                      • W
                        whereas-stuff last edited by whereas-stuff

                        What a relief to see the thumbnails again ..... Jesus

                        Honestly... @noseman you should at least share these experiences with someone in charge at Maxon. As @Tisi already pointed out the whole idea of the subscription was to be quicker. Of course we all understand it's a big program. But now we had a "little" bug which affects daily work fixed by a user in under 1 day of work. Under 1 day what Maxon couldn't fix in over multiple years!

                        1 Reply Last reply Reply Quote
                        • A
                          army-purpose last edited by

                          Congrats ! Had few try before it works but it did in the end. Thaaaaanks!

                          1 Reply Last reply Reply Quote
                          • First post
                            Last post