Skip to content

Commit

Permalink
Set up video-image-extractor package
Browse files Browse the repository at this point in the history
The video-image-extractor appliance will take a video stream and split
it into individual pngs.

Issue #64
  • Loading branch information
slifty committed Oct 21, 2020
1 parent 6846e85 commit 9ffbd82
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
17 changes: 17 additions & 0 deletions packages/video-image-extractor/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# TV Kitchen Video Image Extractor Appliance

---
inputTypes: STREAM.CONTAINER
outputTypes: IMAGE.PNG
---

The Video Image Extractor appliance is configured to ingest a video stream and convert frames into `IMAGE.PNG` payloads.

## Dependencies

In order to use this appliance, you must have [ffmpeg](https://www.ffmpeg.org/) installed on your system, and the `ffmpeg` command must work.

## About the TV Kitchen

TV Kitchen is a project of [Bad Idea Factory](https://biffud.com). Learn more at [the TV Kitchen project site](https://tv.kitchen).

20 changes: 20 additions & 0 deletions packages/video-image-extractor/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "@tvkitchen/appliance-video-image-extractor",
"description": "Converts a video stream into png images.",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/tvkitchen/appliances.git",
"directory": "packages/video-image-extractor"
},
"license": "LGPL-3.0",
"main": "lib/index.js",
"module": "src/index.js",
"dependencies": {
"@tvkitchen/appliance-core": "0.5.0",
"command-exists": "^1.2.9"
},
"publishConfig": {
"access": "public"
}
}

0 comments on commit 9ffbd82

Please sign in to comment.