JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q33424F
  • License ISC

A CLI tool to extract videos from JSON timeline files using Remotion

Package Exports

  • videoextract-cli
  • videoextract-cli/dist/src/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (videoextract-cli) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

VideoExtract 🎬

A powerful CLI tool to extract videos from JSON timeline files using Remotion.

Installation

npm install -g videoextract

Usage

videoextract extract timeline.json

Options

  • -o, --output <path> - Output directory (defaults to Downloads)
  • -n, --name <name> - Video filename (defaults to "video")

Examples

# Basic usage
videoextract extract timeline.json

# Custom output
videoextract extract timeline.json -o ./videos -n my-video

JSON Format

{
  "durationInFrames": 150,
  "overlays": [
    {
      "type": "text",
      "content": "Hello World!",
      "from": 0,
      "durationInFrames": 150,
      "styles": { "fontSize": 48, "color": "#fff" }
    }
  ]
}

Requirements

  • Node.js 16+

License

ISC