@ascegu/teamily 1.0.30 → 1.0.31

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/upload.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ascegu/teamily",
3
- "version": "1.0.30",
3
+ "version": "1.0.31",
4
4
  "description": "OpenClaw Teamily channel plugin - Team instant messaging server integration",
5
5
  "keywords": [
6
6
  "channel",
package/src/upload.ts CHANGED
@@ -145,7 +145,7 @@ export async function extractVideoSnapshot(
145
145
  await execFileAsync("ffmpeg", [
146
146
  "-i", inPath,
147
147
  "-vframes", "1",
148
- "-vf", `scale='min(${maxDim},iw)':'-1'`,
148
+ "-vf", `scale=min(${maxDim}\\,iw):-1`,
149
149
  "-q:v", "6",
150
150
  "-y", outPath,
151
151
  ], { timeout: 10_000 });