A TikTok-style AI video editor MVP for creating and editing short-form video content with AI-powered features.
/echoedit
├── /client # React + Vite + TypeScript frontend
├── /server # Python Flask backend
├── /ops # Scripts and documentation
└── README.md # This file
- Node.js 18+ and npm
- Python 3.11+
- Git
cd client
npm install
npm run devThe client will be available at http://localhost:5173
cd server
python3 -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install -r requirements.txt
python app.pyThe server will be available at http://localhost:5001
- 📹 Upload video clips
- 🎤 Record audio/video
- 🎵 Add background music
- 🎚️ Pitch shifting (planned)
- 📝 AI transcription (stub)
- 🌊 Waveform visualization (placeholder)
See /ops/DEV_NOTES.md for detailed development information and /ops/CHECKS.md for testing checklist.
MIT License - see LICENSE file for details