FableCut
Zero-dependency browser video editor that AI agents can drive — JSON timeline, MCP + REST, live-reloading UI
파일 탐색기
- 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
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
claude
설명 보기 ▼
claude
코드베이스를 이해하고 자연어 명령을 통해 더 빠르게 코딩할 수 있도록 도와주는 에이전트 기반 코딩 도구.
더 많은 정보: <https://code.claude.com/docs/en/cli-reference>.
claude prompt
프롬프트로 실행:
claude update
`claude`를 업데이트:
claude mcp list
지정된 MCP 서버 목록을 표시:
ffmpeg
설명 보기 ▼
ffmpeg
비디오 변환 도구.
관련 항목: `gst-launch-1.0`.
더 많은 정보: <https://ffmpeg.org/ffmpeg.html#Options>.
ffmpeg -i {{path/to/video.mp4}} -vn {{path/to/sound.mp3}}
비디오에서 사운드를 추출하여 MP3로 저장:
ffmpeg -i {{path/to/input_audio.flac}} -ar 44100 -sample_fmt s16 {{path/to/output_audio.wav}}
FLAC 파일을 Red Book CD 형식 (44100kHz, 16bit)으로 트랜스코딩:
ffmpeg -i {{path/to/video.mp4}} {{[-vf|-filter:v]}} 'scale=-1:1000' -r 15 {{path/to/output.gif}}
비디오를 GIF로 저장하고, 높이를 1000px로 조정하고 프레임 속도를 15로 설정:
git clone
설명 보기 ▼
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
설명 보기 ▼
node
서버 측 JavaScript 플랫폼 (Node.js).
더 많은 정보: <https://nodejs.org/docs/latest/api/cli.html#options>.
node {{path/to/file}}
JavaScript 파일 실행:
node
REPL(대화형 셸) 시작:
node --watch {{path/to/file}}
지정된 파일을 실행하고 가져온 파일이 변경될 때 프로세스를 재시작 (Node.js 버전 18.11+ 필요):
