update
Browse files- README.md +15 -0
- requirements.txt +2 -2
README.md
CHANGED
|
@@ -1,9 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |

|
| 2 |
|
| 3 |
FrameVis is a Python script for generating video frame visualizations, also known as "movie barcodes". These visualizations are composed of frames taken from a video file at a regular interval, resized, and then stacked together to show the compressed color palette of the video and how it changes over time.
|
| 4 |
|
| 5 |
For more information, see [the blog post on PartsNotIncluded.com](http://www.partsnotincluded.com/programming/framevis/).
|
| 6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
## Basic Usage
|
| 8 |
|
| 9 |
```bash
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: FrameVis
|
| 3 |
+
emoji: 🎬
|
| 4 |
+
colorFrom: indigo
|
| 5 |
+
colorTo: purple
|
| 6 |
+
sdk: gradio
|
| 7 |
+
sdk_version: 4.19.2
|
| 8 |
+
app_file: app.py
|
| 9 |
+
pinned: false
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |

|
| 13 |
|
| 14 |
FrameVis is a Python script for generating video frame visualizations, also known as "movie barcodes". These visualizations are composed of frames taken from a video file at a regular interval, resized, and then stacked together to show the compressed color palette of the video and how it changes over time.
|
| 15 |
|
| 16 |
For more information, see [the blog post on PartsNotIncluded.com](http://www.partsnotincluded.com/programming/framevis/).
|
| 17 |
|
| 18 |
+
## Online Demo
|
| 19 |
+
|
| 20 |
+
Try the interactive demo on [Hugging Face Spaces](https://huggingface.co/spaces/jakerains/framevis)!
|
| 21 |
+
|
| 22 |
## Basic Usage
|
| 23 |
|
| 24 |
```bash
|
requirements.txt
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
-
gradio>=
|
| 2 |
-
opencv-python>=4.8.0
|
| 3 |
numpy>=1.24.0
|
| 4 |
fastapi>=0.115.0
|
| 5 |
python-multipart>=0.0.6
|
|
|
|
| 1 |
+
gradio>=4.19.2
|
| 2 |
+
opencv-python-headless>=4.8.0
|
| 3 |
numpy>=1.24.0
|
| 4 |
fastapi>=0.115.0
|
| 5 |
python-multipart>=0.0.6
|