frames-extraction
Advanced tools
Comparing version 1.0.0 to 1.1.0
{ | ||
"name": "frames-extraction", | ||
"version": "1.0.0", | ||
"version": "1.1.0", | ||
"description": "Extract frames from a video and compare them to find the most similar ones.", | ||
"main": "src/presentation/cli.js", | ||
"bin": "src/presentation/cli.js", | ||
"bin": { | ||
"frames-extraction": "src/presentation/cli.js" | ||
}, | ||
"scripts": { | ||
@@ -15,3 +17,5 @@ "start": "node src/presentation/cli.js" | ||
"image", | ||
"comparison" | ||
"comparison", | ||
"diff", | ||
"similar" | ||
], | ||
@@ -18,0 +22,0 @@ "author": "Ran-j <ran-junior@hotmail.com>", |
@@ -5,5 +5,22 @@ # Video Frame Extractor With Frame Comparison (V-FEC) | ||
## Installation | ||
## Features | ||
- Extract frames from video file. | ||
- Compare frames and generate diff image. | ||
## Installation Global | ||
```bash | ||
npm install -g frames-extraction | ||
``` | ||
## Usage | ||
```bash | ||
vfec --input <input_file> [--outputPath <output_directory>] [--threshold <threshold>] [--ffmpegParameters <ffmpeg_parameters>] | ||
``` | ||
## Installation Local | ||
```bash | ||
npm install | ||
@@ -10,0 +27,0 @@ ``` |
@@ -0,1 +1,3 @@ | ||
#!/usr/bin/env node | ||
const yargs = require('yargs'); | ||
@@ -2,0 +4,0 @@ const Container = require('../container'); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1928312
245
51