Demo: AI transitions: https://www.youtube.com/watch?v=hbM_-eR1GX4 Multicam editing with Codex: https://www.youtube.com/watch?v=SjS2q2LT1q8 Cutting long form clips into shorts: https://www.youtube.com/watch?v=PR66eN2ouuQ
Repo: https://github.com/palmier-io/palmier-pro
We built Palmier Pro as an internal tool when we were making AI launch videos for other YC startups (some work: https://www.palmier.io/work) back in February 2026. The main problem it solved in the beginning was the back-and-forth between AI generation platform and video editor, where we'd iterate the AI videos → download → import to editor → edit → realize we need to change the AI video → repeat. So we built a minimal video editor where we can let Claude generate AI videos inside the editor.
As we gave more and more tools to the agent, we wanted to push to see what else agents can do in the video editing space. So today, your Claude/Codex can:
Manage projects inside Palmier Pro Import media from a public URL or filesystem to the project, and organize them in folders Search media (by embedding footages using SigLIP2 running locally) Edit the timeline (tracks/clips/keyframes operations) Generate image/video/audio Export videos
There are two ways for LLM to interact with the editor: by connecting to the local MCP server, or using the in-app chat. Both use the same tools and APIs exposed by the video editor.
We have seen people using MCP server to connect to their own workflow to automate massive-scale video editing (e.g. given this same podcast style, replicate it with other footages that I have). We have also seen people using the in-app chat where it lives closer to the editor UI, with lower latency for faster iteration.
We believe AI is not going to replace human creativity, but automate the manual work in video editing. Most work in the editing workflow is more technical rather than creative. Our vision is to build a video editor where AI can enable more individuals to create.
Throughout our experiments, AI is not very good at creative editing, but given a pattern (transcription-based, beat-based), it can do a decent job at rough cut.
We built Palmier Pro in Swift as an MVP because we wanted better performance and minimal dependencies (no nodejs/webview), with some native macOS APIs like SpeechAnalyzer and CoreML for us to run some models locally. We use SpeechAnalyzer for local transcriber, SigLip2 to embed video frames, beat_this for beat detection, Silero VAD for silence detection, all running locally. The tradeoff is that we don't support Linux or Windows at the moment.
Palmier Pro is open source and free to try out (macOS 26 only at the moment). No login required except for the AI generation features, which route request to our backend. We are offering free credits on sign up so you can try out the AI generation as well. We'd love to hear your feedback!