[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-80974":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":8,"htmlUrl":8,"language":9,"languages":8,"totalLinesOfCode":8,"stars":10,"forks":11,"watchers":10,"openIssues":12,"contributorsCount":13,"subscribersCount":13,"size":13,"stars1d":13,"stars7d":13,"stars30d":13,"stars90d":13,"forks30d":13,"starsTrendScore":13,"compositeScore":14,"rankGlobal":8,"rankLanguage":8,"license":15,"archived":16,"fork":16,"defaultBranch":17,"hasWiki":18,"hasPages":16,"topics":19,"createdAt":8,"pushedAt":8,"updatedAt":20,"readmeContent":21,"aiSummary":22,"trendingCount":13,"starSnapshotCount":13,"syncStatus":23,"lastSyncTime":24,"discoverSource":25},80974,"codex-video-short-maker-skill","Kappaemme-git\u002Fcodex-video-short-maker-skill","Kappaemme-git",null,"Python",31,3,1,0,1.81,"MIT License",false,"main",true,[],"2026-06-12 02:04:09","# Codex Video Short Maker Skill\n\nA Codex skill for turning local videos into short clips with local captions.\n\nGive Codex a local video and it can remove dead air, cut pauses, export a vertical short, generate local Whisper subtitles, and burn captions into the final MP4. No OpenAI API key required.\n\n## What It Does\n\n- Turns local videos into 30-60s shorts\n- Removes dead air and boring pauses\n- Supports `light`, `normal`, and `aggressive` cut styles\n- Exports vertical 9:16 MP4 for Shorts\u002FReels\u002FTikTok\n- Exports high quality H.264 MP4\n- Optionally generates local captions with `whisper.cpp`\n- No OpenAI API key required\n\n## Installation\n\nRecommended install with local captions:\n\n```bash\nnpx --yes codex-video-short-maker-skill@latest --with-captions\n```\n\nThis installs:\n\n- the Codex skill\n- `whisper.cpp` for local transcription, if missing\n- Pillow for burned-in captions, if missing\n- the default local Whisper model `tiny.en`\n\nBase install without captions:\n\n```bash\nnpx --yes codex-video-short-maker-skill@latest\n```\n\nThis installs the skill into:\n\n```bash\n~\u002F.codex\u002Fskills\u002Fvideo-short-maker\n```\n\nThen restart Codex so it can discover the skill.\n\n## Captions Setup\n\nEnglish captions work with the default install:\n\n```bash\nnpx --yes codex-video-short-maker-skill@latest --with-captions\n```\n\nFor Italian or other languages, install the multilingual model:\n\n```bash\nnpx --yes codex-video-short-maker-skill@latest --with-captions --caption-model base\n```\n\nThis downloads `ggml-base.bin`, which supports language codes such as `it`, `en`, and `auto`.\n\n## Usage\n\nAfter installation, restart Codex and run:\n\n```text\nUse $video-short-maker to create a 30s vertical high quality short with English captions from \u002FUsers\u002Fme\u002FDesktop\u002Fdemo.mp4 using aggressive cut style.\n```\n\nItalian captions:\n\n```text\nUse $video-short-maker to create a 30s vertical high quality short with Italian captions from \u002FUsers\u002Fme\u002FDesktop\u002Fdemo.mp4 using aggressive cut style.\n```\n\nWithout captions:\n\n```text\nUse $video-short-maker to create a 45s vertical short from \u002FUsers\u002Fme\u002FDesktop\u002Fdemo.mp4.\n```\n\nSofter cuts:\n\n```text\nUse $video-short-maker to create a 30s vertical short from \u002FUsers\u002Fme\u002FDesktop\u002Fdemo.mp4 using light cut style.\n```\n\nMore aggressive cuts:\n\n```text\nUse $video-short-maker to create a 30s vertical short from \u002FUsers\u002Fme\u002FDesktop\u002Fdemo.mp4 using aggressive cut style.\n```\n\n## Output Formats\n\nVertical 9:16 for Shorts\u002FReels\u002FTikTok:\n\n```text\nUse $video-short-maker to create a 30s vertical short from \u002FUsers\u002Fme\u002FDesktop\u002Fdemo.mp4.\n```\n\nOriginal aspect ratio:\n\n```text\nUse $video-short-maker to create a 30s short from \u002FUsers\u002Fme\u002FDesktop\u002Fdemo.mp4.\n```\n\n## Output\n\nThe skill creates files next to the input video:\n\n```text\ndemo.vertical.short.mp4\ndemo.vertical.short.srt\ndemo.vertical.short.captioned.mp4\ndemo.vertical.short.report.json\n```\n\n- `*.short.mp4`: edited short\n- `*.srt`: generated subtitles, when captions are used\n- `*.captioned.mp4`: final video with burned-in captions\n- `*.report.json`: edit report with selected segments and settings\n\n## Cut Styles\n\n- `light`: softer cuts, preserves more pauses\n- `normal`: balanced default\n- `aggressive`: removes more pauses and dead air\n\n## Manual Installation\n\nClone the repository:\n\n```bash\ngit clone https:\u002F\u002Fgithub.com\u002FKappaemme-git\u002Fcodex-video-short-maker-skill.git\n```\n\nCopy the skill into your Codex skills directory:\n\n```bash\nmkdir -p ~\u002F.codex\u002Fskills\ncp -R codex-video-short-maker-skill\u002Fvideo-short-maker ~\u002F.codex\u002Fskills\u002Fvideo-short-maker\n```\n\nRestart Codex.\n\n## Requirements\n\n- `ffmpeg` and `ffprobe` for base video cutting\n- macOS + Homebrew for automatic captions setup\n- `whisper.cpp` for local captions\n- Pillow for burned-in captions\n\nBase video cutting only requires `ffmpeg`.\n\nIf captions setup fails, install dependencies manually:\n\n```bash\nbrew install ffmpeg whisper-cpp\npython3 -m pip install --user Pillow\n```\n\nThen reinstall:\n\n```bash\nnpx --yes codex-video-short-maker-skill@latest --with-captions\n```\n\n## Troubleshooting\n\nIf Codex does not recognize `$video-short-maker`, restart Codex after installing.\n\nCheck that the skill exists:\n\n```bash\nls ~\u002F.codex\u002Fskills\u002Fvideo-short-maker\n```\n\nYou should see:\n\n```text\nSKILL.md\nagents\u002F\nscripts\u002F\n```\n\n## License\n\nMIT\n","Codex Video Short Maker Skill 是一个用于将本地视频转换为带有本地字幕的短视频片段的工具。其核心功能包括去除静默和无聊的停顿，支持多种剪辑风格（轻度、正常、激进），输出适用于短视频平台如Shorts\u002FReels\u002FTikTok的9:16垂直格式MP4文件，并且可以选择生成本地字幕。技术上，该项目基于Python开发，利用了`whisper.cpp`进行本地语音转文字处理，无需OpenAI API密钥即可运行。适合需要快速制作社交媒体内容或对已有视频素材进行精简处理的场景使用。",2,"2026-06-11 04:03:02","CREATED_QUERY"]