소스 정보
- 저장소
- grandamenium/short-form-video-transcriber
- 최근 소스 활동
- 2026년 1월 30일 00:39
- 감지된 SKILL.md 언어
- 영어
- 스타
- 28
- 포크
- 4
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/grandamenium/short-form-video-transcriber --skill start명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | start |
| description | Set up the project and learn how to use it. Run this first when opening the project. |
| user_invocable | true |
When the user runs /start, follow this workflow:
Display this welcome message:
Welcome to the Short-Form Video Transcriber!
This project helps you:
Let me check if your environment is set up...
Run these checks:
# Check Python
python3 --version
# Check ffmpeg
which ffmpeg || where ffmpeg
# Check if venv exists
ls -la .venv/bin/activate 2>/dev/null || echo "NO_VENV"
Create and set up the environment (this also installs yt-dlp automatically):
python3 -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
pip install -e ".[dev]"
pip install yt-dlp # Install yt-dlp in the venv
Activate and ensure yt-dlp is installed:
source .venv/bin/activate # On Windows: .venv\Scripts\activate
pip install yt-dlp # Ensure yt-dlp is available
pytest tests/unit/ -v --tb=short 2>&1 | tail -5
ffmpeg is required for audio extraction. Provide platform-specific instructions:
macOS:
brew install ffmpeg
Linux (Debian/Ubuntu):
sudo apt update && sudo apt install ffmpeg
Linux (Fedora/RHEL):
sudo dnf install ffmpeg
Windows:
winget install ffmpeg
Or download from https://ffmpeg.org/download.html and add to PATH.
After installing ffmpeg, re-run /start to continue setup.
After setup is verified, explain the commands:
Setup complete! Here's how to use this project:
| Command | What it does |
|---|---|
/start | You're here! Set up the project and see available commands |
/bulk | Transcribe ALL videos from a TikTok profile |
/transcribe | Transcribe specific video URL(s) you paste |
/accounts | Switch profiles, add multiple accounts, process several at once |
/skillify | Turn a summary into a reusable Claude skill |
/bulk - Process Entire ProfileUse this when you want to transcribe all videos from someone's TikTok.
Just run /bulk and I'll ask you for:
https://www.tiktok.com/@example_creator)I'll then download, transcribe, and summarize each video automatically.
/transcribe - Process Specific VideosUse this when you have specific video URLs you want to transcribe.
Just run /transcribe and paste the URLs:
https://www.tiktok.com/@username/video/123456789
https://www.tiktok.com/@username/video/987654321
You can paste one URL or multiple URLs at once.
/accounts - Manage Multiple ProfilesWant to scrape from different TikTok accounts? Use /accounts to:
Your saved profiles are stored in accounts.json.
/skillify - Create Claude Skills from SummariesTurn any summary into a reusable Claude skill! This command:
Great for building a knowledge base from video content!
All commands create:
transcripts/ - Raw transcripts with metadatasummaries/ - Organized summaries grouped by topicsummaries/INDEX.md - Master index of all content/skillify go to your chosen directoryWhat would you like to do?
/bulk to process an entire TikTok profile/transcribe to process specific video URLs/skillify to turn a summary into a Claude skillAfter explaining, wait for the user to either:
/bulk or /transcribe/transcribe)If they paste URLs directly without a command, process them as if they ran /transcribe.
If setup fails:
If tests fail:
pip install -e ".[dev]"