@effectnode/media 0.4.0 → 0.6.0
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/dist/backend/movie-backend/agent/agent-backend.d.ts +1 -1
- package/dist/backend/movie-backend/agent/agent-backend.js +169 -83
- package/dist/backend/movie-backend/agent/tools/index.js +0 -2
- package/dist/backend/movie-backend/core.js +1 -1
- package/dist/backend/movie-backend/generation-queue.js +107 -44
- package/dist/backend/movie-backend/render-media.js +28 -254
- package/frontend/index.html +6 -1
- package/frontend/public/lambobo.png +0 -0
- package/frontend/src/movie-app/MediaStudio.tsx +6 -2
- package/frontend/src/movie-app/SetupPage.tsx +98 -63
- package/frontend/src/movie-app/components/Aurora.tsx +13 -0
- package/frontend/src/movie-app/components/EditorTabs/GenerateVideoTab.tsx +5 -8
- package/frontend/src/movie-app/components/EditorTabs/MovieStudioTab.tsx +417 -205
- package/frontend/src/movie-app/components/EditorTabs/SetupAiModelTab.tsx +350 -0
- package/frontend/src/movie-app/components/ProjectEditorPage.tsx +40 -67
- package/frontend/src/movie-app/components/ProjectManager.tsx +80 -52
- package/frontend/src/movie-app/index.css +275 -8
- package/frontend/src/movie-app/index.html +1 -1
- package/frontend/src/movie-app/stores/aiModelStore.ts +172 -0
- package/frontend/src/movie-app/stores/generationStore.ts +2 -3
- package/frontend/src/movie-app/stores/movieStudioStore.ts +72 -3
- package/package.json +2 -2
- package/frontend/src/movie-app/components/EditorTabs/CharactersTab.tsx +0 -664
- package/frontend/src/movie-app/components/EditorTabs/ReferencesToVideoTab.tsx +0 -881
|
@@ -297,9 +297,7 @@ export default function GenerateVideoTab({ projectId }: Props) {
|
|
|
297
297
|
<tr
|
|
298
298
|
key={rowIdx}
|
|
299
299
|
className={`border-b border-ink-200 transition-colors ${
|
|
300
|
-
isSelected
|
|
301
|
-
? "bg-white"
|
|
302
|
-
: "bg-ink-100/50 opacity-60"
|
|
300
|
+
isSelected ? "bg-white" : "bg-ink-100/50 opacity-60"
|
|
303
301
|
}`}
|
|
304
302
|
>
|
|
305
303
|
<td className="px-3 py-1.5">
|
|
@@ -335,9 +333,7 @@ export default function GenerateVideoTab({ projectId }: Props) {
|
|
|
335
333
|
{!store.csvFilename && (
|
|
336
334
|
<p className="text-xs text-ink-600/50 mt-1.5">
|
|
337
335
|
Upload a CSV with a{" "}
|
|
338
|
-
<code className="text-[11px] bg-ink-100 px-1 rounded">
|
|
339
|
-
name
|
|
340
|
-
</code>{" "}
|
|
336
|
+
<code className="text-[11px] bg-ink-100 px-1 rounded">name</code>{" "}
|
|
341
337
|
column to batch-generate many videos. Use{" "}
|
|
342
338
|
<code className="text-[11px] bg-ink-100 px-1 rounded">{`{{column}}`}</code>{" "}
|
|
343
339
|
in your prompt as a template.
|
|
@@ -362,8 +358,9 @@ export default function GenerateVideoTab({ projectId }: Props) {
|
|
|
362
358
|
</p>
|
|
363
359
|
|
|
364
360
|
<a
|
|
365
|
-
href={`/lambobo.png
|
|
366
|
-
download="lambobo.
|
|
361
|
+
href={`/lambobo.png`}
|
|
362
|
+
download="lambobo.png"
|
|
363
|
+
target="_blank"
|
|
367
364
|
className="inline-flex items-center gap-1.5 mt-2 text-xs font-medium text-ink-600 hover:text-ink-900 transition-colors"
|
|
368
365
|
>
|
|
369
366
|
{DownloadIcon}
|