A simple and scalable tool to clip videos directly from YouTube.
This project is designed as a solid foundation for building a video clipping system, with future support for automation workflows and AI-assisted features.
🚧 Paused (Temporarily)
This project is currently paused while focusing on another active project. Development will resume after the current priority project is completed.
- Clip videos from YouTube quickly and efficiently
- Provide a simple and clean workflow for users
- Build a scalable backend architecture
- Prepare for automation and AI integration
- Input YouTube URL
- Download video using
yt-dlp - Clip video using timestamp (start & end)
- Export clipped video
- Multiple clip generation
- Smart clip suggestions (semi-automatic)
- Subtitle editor
- Improved user experience (preview & timeline)
- AI-powered highlight detection
- Speech-to-text (subtitle automation)
- Content repurposing (Shorts / TikTok clips)
- Workflow automation with n8n
youtube-clipper-tool/
│
├── backend/
│ ├── app/
│ │ ├── main.py
│ │ ├── routes/
│ │ ├── services/
│ │ └── utils/
│ │
│ └── requirements.txt
│
├── frontend/ # Future UI
├── n8n/ # Workflow automation (future)
│
├── README.md
├── LICENSE
└── .gitignore
- FastAPI
- yt-dlp
- ffmpeg
- n8n
- Whisper (speech-to-text)
- NLP for highlight detection
- User inputs a YouTube link
- System downloads the video
- User selects start & end timestamps
- Video is clipped using ffmpeg
- Result is ready for download
- User inputs a YouTube link
- Workflow system processes the video
- System generates suggested clips
- User selects preferred clip
- Optional subtitle editing
- Final export
git clone https://github.com/systemzerodev/youtube-clipper-tool.git
cd youtube-clipper-toolFurther setup instructions will be added when development resumes.
This project is intended for educational and personal use. Please respect YouTube’s Terms of Service when downloading and using content.
This project is licensed under the MIT License.
Built as part of a learning journey in fullstack development, automation systems, and AI integration.