SDK catalog / Video Ingest

Video Ingest

preview 0.3.0-alpha.1

Preview documentation for @workforce-sdk/video-ingest@0.3.0-alpha.1. Existing legacy downloads may use a different API; this page does not announce a new release.

import { createVideoIngest } from '@workforce-sdk/video-ingest'

const video = createVideoIngest(process.argv[3] ?? './video-ingest.yaml')
try {
  console.log(await video.ingest({ url: process.argv[2] ?? 'https://www.youtube.com/watch?v=dQw4w9WgXcQ' }))
} finally {
  await video.dispose()
}