AI 原生
与 Claude Code、Cursor、Bolt.new 深度集成,一句话生成视频
可编程
代码控制每一帧,批量生成无限可能,React 技术栈无缝衔接
开源免费
基于 Remotion 开源框架,34K+ GitHub Stars,社区活跃
最新文章
查看全部 →暂无文章,敬请期待...
用代码创造视频
// Create a video with Remotion
import { useCurrentFrame, interpolate } from 'remotion';
export const MyVideo = () => {
const frame = useCurrentFrame();
const opacity = interpolate(frame, [0, 30], [0, 1]);
return (
<div style={{ opacity }}>
Hello, Video as Code!
</div>
);
};React 组件 = 视频内容,就这么简单。