@kitsra/kavio-ffmpeg 0.1.0 → 0.1.1

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/README.md +26 -0
  2. package/package.json +6 -2
package/README.md ADDED
@@ -0,0 +1,26 @@
1
+ # @kitsra/kavio-ffmpeg
2
+
3
+ Inspectable FFmpeg planning primitives for Kavio rendering.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ corepack pnpm add @kitsra/kavio-ffmpeg
9
+ ```
10
+
11
+ ## What It Does
12
+
13
+ - Models FFmpeg plan steps.
14
+ - Renders FFmpeg argument arrays from plan objects.
15
+ - Plans base video input, trim, fit, and sequencing.
16
+ - Plans overlay frame-sequence compositing.
17
+ - Plans audio mixing and loudness normalization.
18
+
19
+ This package builds command plans. It does not execute FFmpeg by itself.
20
+
21
+ ## Links
22
+
23
+ - Repository: https://github.com/kitsra/kavio
24
+ - Render pipeline docs: https://github.com/kitsra/kavio/blob/main/docs/render-pipeline.md
25
+ - Package overview: https://github.com/kitsra/kavio/blob/main/docs/packages.md
26
+ - License: Elastic-2.0
package/package.json CHANGED
@@ -1,15 +1,19 @@
1
1
  {
2
2
  "name": "@kitsra/kavio-ffmpeg",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "FFmpeg planning primitives for Kavio rendering.",
5
5
  "license": "Elastic-2.0",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/kitsra/kavio.git"
9
+ },
6
10
  "type": "module",
7
11
  "sideEffects": false,
8
12
  "publishConfig": {
9
13
  "access": "public"
10
14
  },
11
15
  "dependencies": {
12
- "@kitsra/kavio-schema": "0.1.0"
16
+ "@kitsra/kavio-schema": "0.1.1"
13
17
  },
14
18
  "exports": {
15
19
  ".": {