Spaces:
Paused
Paused
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
| 2 |
colorTo: yellow
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |
|
| 5 |
# Avocado On Toast (AVoCaDO video analysis)
|
|
@@ -8,16 +15,16 @@ Upload videos β standardize with **ffmpeg** β run **AVoCaDO** audio-visual a
|
|
| 8 |
|
| 9 |
## What you get
|
| 10 |
Each run produces:
|
| 11 |
-
- `annotations.jsonl` (one record per processed video)
|
| 12 |
-
- `manifest.json` (run summary)
|
| 13 |
- per-video AVoCaDO outputs (e.g. `*_avocado.json`)
|
| 14 |
- optionally a `.zip` bundle (if enabled in the UI)
|
| 15 |
|
| 16 |
## Notes
|
| 17 |
-
- The **Files** tab shows the git repo contents only. Runtime outputs
|
| 18 |
- AVoCaDO is required: if AVoCaDO fails, the run should fail.
|
| 19 |
|
| 20 |
-
##
|
| 21 |
```bash
|
| 22 |
pip install -r requirements.txt
|
| 23 |
-
python app.py
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Avocado On Toast
|
| 3 |
+
emoji: π₯π
|
| 4 |
+
colorFrom: green
|
| 5 |
colorTo: yellow
|
| 6 |
+
sdk: gradio
|
| 7 |
+
sdk_version: 6.2.0
|
| 8 |
+
app_file: app.py
|
| 9 |
+
pinned: false
|
| 10 |
---
|
| 11 |
|
| 12 |
# Avocado On Toast (AVoCaDO video analysis)
|
|
|
|
| 15 |
|
| 16 |
## What you get
|
| 17 |
Each run produces:
|
| 18 |
+
- `annotations.jsonl` (one record per processed video, including AVoCaDO stdout/stderr and output path)
|
| 19 |
+
- `manifest.json` (run summary + pointers to outputs)
|
| 20 |
- per-video AVoCaDO outputs (e.g. `*_avocado.json`)
|
| 21 |
- optionally a `.zip` bundle (if enabled in the UI)
|
| 22 |
|
| 23 |
## Notes
|
| 24 |
+
- The **Files** tab shows the git repo contents only. Runtime outputs live under `/data/...` (persistent if enabled) or `/tmp/...` and are exposed via the **Downloads** component in the app UI.
|
| 25 |
- AVoCaDO is required: if AVoCaDO fails, the run should fail.
|
| 26 |
|
| 27 |
+
## Run locally (optional)
|
| 28 |
```bash
|
| 29 |
pip install -r requirements.txt
|
| 30 |
+
python app.py
|