Spaces:
Configuration error
Configuration error
Dee Ferdinand commited on
Commit ·
1b305e8
1
Parent(s): b41b9bd
feat: init Dee Video Studio — HyperFrames cloud render for testimonial/teaser/trailer videos
Browse files- 4 workflows: testimonial (75s), teaser (30s), trailer (60s), community (60s)
- 6 royalty-free Pixabay music tracks auto-selected by workflow
- WebSocket real-time render progress
- Dark-mode Studio UI with drag-drop upload
- HuggingFace Docker Space ready (port 7860)
- package.json +23 -0
package.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "dee-video-studio",
|
| 3 |
+
"version": "1.0.0",
|
| 4 |
+
"description": "HyperFrames video production studio — testimonial, teaser & trailer generator",
|
| 5 |
+
"type": "module",
|
| 6 |
+
"main": "server.js",
|
| 7 |
+
"scripts": {
|
| 8 |
+
"start": "node server.js",
|
| 9 |
+
"dev": "node --watch server.js"
|
| 10 |
+
},
|
| 11 |
+
"dependencies": {
|
| 12 |
+
"express": "^4.18.2",
|
| 13 |
+
"express-fileupload": "^1.4.3",
|
| 14 |
+
"cors": "^2.8.5",
|
| 15 |
+
"uuid": "^9.0.0",
|
| 16 |
+
"hyperframes": "latest",
|
| 17 |
+
"fluent-ffmpeg": "^2.1.3",
|
| 18 |
+
"archiver": "^6.0.1",
|
| 19 |
+
"dotenv": "^16.3.1",
|
| 20 |
+
"ws": "^8.16.0"
|
| 21 |
+
},
|
| 22 |
+
"engines": { "node": ">=20" }
|
| 23 |
+
}
|