https://github.com/wasabina67/moviepy-example
MoviePy example
https://github.com/wasabina67/moviepy-example
moviepy uv
Last synced: 29 days ago
JSON representation
MoviePy example
- Host: GitHub
- URL: https://github.com/wasabina67/moviepy-example
- Owner: wasabina67
- License: mit
- Created: 2025-07-29T23:36:40.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2025-08-17T10:04:03.000Z (about 2 months ago)
- Last Synced: 2025-08-17T11:33:29.131Z (about 2 months ago)
- Topics: moviepy, uv
- Language: Python
- Homepage:
- Size: 30.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# moviepy-example
MoviePy example## Initialize
### Setup
```bash
uv init --app --python 3.12
```### Create venv
```bash
uv venv
```### Add MoviePy dependency
```bash
uv add moviepy
```### Add ruff, black dev dependency
```bash
uv add --dev ruff black
``````bash
uv run ruff check .
``````bash
uv run black .
```### Install dependencies
```bash
uv sync
```### Activate venv (if not using `uv run`)
```bash
source .venv/bin/activate
``````bash
python main.py
``````bash
deactivate
```## Run
```bash
uv run python main.py
```