Commit6f5f1e72Recorded20 Mar 2026Repositorymontage

Add README

Changed
 README.md | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)
Diff
README.mdadded
@@ -0,0 +1,35 @@
+1
# montage
+2
+3
Video production automation using the MLT Framework, built with [Sigil](https://codeberg.org/sigil/sigil).
+4
+5
Describe video timelines in Sigil code and render them with `melt`.
+6
+7
## Usage
+8
+9
```
+10
montage generate <script.sgl> # Generate MLT XML
+11
montage render <script.sgl> # Generate and render with melt
+12
montage preview <script.sgl> # Generate and preview with melt
+13
montage serve <script.sgl> # Render and serve for HTTP preview
+14
montage transcribe <media-file> # Transcribe audio/video to SRT
+15
montage model list # List available whisper models
+16
montage model download <name> # Download a whisper model
+17
```
+18
+19
## Features
+20
+21
- Declarative video timeline descriptions in Sigil
+22
- MLT XML generation for rendering with `melt`
+23
- Speech-to-text transcription via whisper.cpp
+24
- Voice activity detection (VAD) for gap analysis
+25
- HTTP preview server for rendered video
+26
+27
## Building
+28
+29
```bash
+30
sigil build --redirects dev-redirects.sgl
+31
```
+32
+33
## License
+34
+35
BSD-3-Clause