FableCut
Zero-dependency browser video editor that AI agents can drive — JSON timeline, MCP + REST, live-reloading UI
File Explorer
- marketplace.json
- plugin.json
- bug_report.yml
- config.yml
- feature_request.yml
- ci.yml
- FUNDING.yml
- PULL_REQUEST_TEMPLATE.md
- abril-fatface.woff2
- anton.woff2
- archivo-black.woff2
- bebas-neue.woff2
- caveat.woff2
- LICENSE.txt
- oswald.woff2
- playfair-display.woff2
- README.es.md
- README.ja.md
- README.pt-BR.md
- README.zh-CN.md
- favicon.svg
- index.html
- main.js
- screenshot.png
- styles.css
- auto_captions.py
- README.md
- .gitkeep
- favicon-32.png
- .gitkeep
- bokeh-drift.svg
- light-leak-cool.svg
- light-leak-warm.svg
- vhs-scanlines.svg
- vignette-frame.svg
- .gitkeep
- Abril Fatface.woff2
- Anton.woff2
- Archivo Black.woff2
- Bangers.woff2
- Barlow.woff2
- Bebas Neue.woff2
- Bungee.woff2
- Caveat.woff2
- DM Sans.woff2
- Inter.woff2
- Lato.woff2
- LICENSES.md
- Montserrat.woff2
- Oswald.woff2
- Pacifico.woff2
- Playfair Display.woff2
- Poppins.woff2
- Righteous.woff2
- Roboto.woff2
- Rubik.woff2
- Teko.woff2
- .gitkeep
- README.md
- arrow-bounce.svg
- arrow-scribble.svg
- burst-lines.svg
- checkmark-success.svg
- confetti-burst.svg
- countdown-ring.svg
- equalizer.svg
- glow-orbs.svg
- heart-pop.svg
- loading-dots.svg
- location-pin.svg
- lower-third.svg
- new-badge.svg
- progress-bar.svg
- radial-pulse.svg
- rating-stars.svg
- rec-indicator.svg
- sparkles.svg
- speech-bubble.svg
- subscribe-bell.svg
- subscribe-pill.svg
- swipe-up.svg
- underline-swoosh.svg
- README.md
- .gitkeep
- SKILL.md
- SKILL.md
- .gitignore
- .mcp.json
- AGENTS.md
- analyze.js
- app.js
- CHANGELOG.md
- CLAUDE.md
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- favicon.svg
- glama.json
- index.html
- LICENSE
- manifest.json
- mcp-server.js
- meter-worklet.js
- package.json
- paths.js
- README.md
- ruler-worker.js
- SECURITY.md
- server.js
- server.json
- style.css
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
claude
View Details ▼
claude
An agent-based coding tool that understands your code base and helps you code faster through natural language commands.
claude prompt
Execute with prompt:
claude update
Update `claude`:
claude mcp list
Get the list of specified MCP servers:
ffmpeg
View Details ▼
ffmpeg
Video conversion tool.
See also: `gst-launch-1.0`.
ffmpeg -i {{path/to/video.mp4}} -vn {{path/to/sound.mp3}}
Extract the sound from a video and save it as MP3:
ffmpeg -i {{path/to/input_audio.flac}} -ar 44100 -sample_fmt s16 {{path/to/output_audio.wav}}
Transcode a FLAC file to Red Book CD format (44100kHz, 16bit):
ffmpeg -i {{path/to/video.mp4}} {{[-vf|-filter:v]}} 'scale=-1:1000' -r 15 {{path/to/output.gif}}
Save a video as GIF, scaling the height to 1000px and setting framerate to 15:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
node
View Details ▼
node
Server-side JavaScript platform (Node.js).
node {{path/to/file}}
Run a JavaScript file:
node
Start a REPL (interactive shell):
node --watch {{path/to/file}}
Execute the specified file restarting the process when an imported file is changed (requires Node.js version 18.11+):
