@twick/cloud-export-video 0.15.25 → 0.15.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +8 -8
- package/platform/aws/Dockerfile +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twick/cloud-export-video",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.27",
|
|
4
4
|
"description": "Twick cloud function for exporting video with platform-specific templates (AWS Lambda container)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "core/renderer.js",
|
|
@@ -46,13 +46,13 @@
|
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"@sparticuz/chromium": "^129.0.0",
|
|
49
|
-
"@twick/2d": "^0.15.
|
|
50
|
-
"@twick/core": "^0.15.
|
|
51
|
-
"@twick/ffmpeg": "^0.15.
|
|
52
|
-
"@twick/renderer": "^0.15.
|
|
53
|
-
"@twick/ui": "^0.15.
|
|
54
|
-
"@twick/vite-plugin": "^0.15.
|
|
55
|
-
"@twick/visualizer": "0.15.
|
|
49
|
+
"@twick/2d": "^0.15.27",
|
|
50
|
+
"@twick/core": "^0.15.27",
|
|
51
|
+
"@twick/ffmpeg": "^0.15.27",
|
|
52
|
+
"@twick/renderer": "^0.15.27",
|
|
53
|
+
"@twick/ui": "^0.15.27",
|
|
54
|
+
"@twick/vite-plugin": "^0.15.27",
|
|
55
|
+
"@twick/visualizer": "^0.15.27",
|
|
56
56
|
"@aws-sdk/client-s3": "^3.620.0",
|
|
57
57
|
"ffmpeg-static": "^5.2.0",
|
|
58
58
|
"fluent-ffmpeg": "^2.1.3"
|
package/platform/aws/Dockerfile
CHANGED
|
@@ -21,6 +21,9 @@ RUN npx puppeteer browsers install chrome
|
|
|
21
21
|
# Copy source code
|
|
22
22
|
COPY . ./
|
|
23
23
|
|
|
24
|
+
# Ensure local font directory exists and copy everything from visualizer's fonts
|
|
25
|
+
RUN mkdir -p fonts && \
|
|
26
|
+
cp -r node_modules/@twick/visualizer/dist/fonts/. fonts/
|
|
24
27
|
|
|
25
28
|
# Install Puppeteer (if needed)
|
|
26
29
|
RUN node node_modules/puppeteer/install.mjs
|