A simple video editor app with a few tools.
edito.mp4
- add text overlay and drag to position
- add image overlay from gallery and drag to position and resize with pinch gesture
- add video overlay from gallery and drag to position and resize with pinch gesture(backend part not done yet)
- on backend side using ffmpeg to merge all overlays into single video
- Clone the repository:
git clone https://github.com/jainex17/edito.git
cd edito- Install dependencies:
# frontend
cd frontend
npm install
# backend
cd backend
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt- Start the development server:
# android
npm run android
# ios
npm run ios
# backend
uvicorn main:app --reloadContributions are welcome! Please fork the repository and submit a pull request with your improvements.