Upload 8 files
Browse files- HF_Substrate_Video_Atomization_Runtime_v0_1_PATCHED.zip.sha256 +1 -0
- README.md +5 -1
- requirements.txt +3 -2
- runtime.txt +1 -0
HF_Substrate_Video_Atomization_Runtime_v0_1_PATCHED.zip.sha256
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
f651a28a6285ea7cc3363b2c6cd456d0cf6bb3909ee5b96f8845a295623b1b7d /mnt/data/HF_Substrate_Video_Atomization_Runtime_v0_1_PATCHED.zip
|
README.md
CHANGED
|
@@ -5,6 +5,7 @@ colorFrom: blue
|
|
| 5 |
colorTo: indigo
|
| 6 |
sdk: gradio
|
| 7 |
sdk_version: 4.44.0
|
|
|
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
license: cc-by-nc-sa-4.0
|
|
@@ -46,4 +47,7 @@ This is not video compression, not a replacement for codecs, and not a physical
|
|
| 46 |
|
| 47 |
## Core claim
|
| 48 |
|
| 49 |
-
Video does not have to be handled only as a compressed monolithic file. It can be atomized into source-bound trace units, stacked into a data hologram, pressure-read, and rehydrated into a reviewable route surface.
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
colorTo: indigo
|
| 6 |
sdk: gradio
|
| 7 |
sdk_version: 4.44.0
|
| 8 |
+
python_version: 3.11
|
| 9 |
app_file: app.py
|
| 10 |
pinned: false
|
| 11 |
license: cc-by-nc-sa-4.0
|
|
|
|
| 47 |
|
| 48 |
## Core claim
|
| 49 |
|
| 50 |
+
Video does not have to be handled only as a compressed monolithic file. It can be atomized into source-bound trace units, stacked into a data hologram, pressure-read, and rehydrated into a reviewable route surface.
|
| 51 |
+
## Runtime compatibility patch
|
| 52 |
+
|
| 53 |
+
This Space pins the Python runtime to 3.11 because Python 3.13 removed the stdlib `audioop` module used indirectly by Gradio's audio/video processing path through `pydub`. The requirements also include `audioop-lts` as a fallback compatibility shim.
|
requirements.txt
CHANGED
|
@@ -1,5 +1,6 @@
|
|
| 1 |
-
gradio
|
| 2 |
opencv-python-headless
|
| 3 |
numpy
|
| 4 |
pandas
|
| 5 |
-
pillow
|
|
|
|
|
|
| 1 |
+
gradio==4.44.0
|
| 2 |
opencv-python-headless
|
| 3 |
numpy
|
| 4 |
pandas
|
| 5 |
+
pillow
|
| 6 |
+
audioop-lts
|
runtime.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
python-3.11
|