Skip to content

Commit

Permalink
fix: fix image on readme
Browse files Browse the repository at this point in the history
feat: added missing string on time
  • Loading branch information
ran-j committed Feb 15, 2024
1 parent 83980c7 commit dcbf7f3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ node src/presentation/cli.js --input <input_file> [--outputPath <output_director
node src/presentation/cli.js --input mov_bbb.mp4
```

<img src="./Diff.png">
<img src="https://raw.githubusercontent.com/ran-j/frames-extraction/main/Diff.png">


4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "frames-extraction",
"version": "1.1.0",
"version": "1.1.1",
"description": "Extract frames from a video and compare them to find the most similar ones.",
"main": "src/presentation/cli.js",
"bin": {
Expand All @@ -19,6 +19,7 @@
"similar"
],
"author": "Ran-j <[email protected]>",
"repository": "https://github.com/ran-j/frames-extraction",
"license": "MIT",
"dependencies": {
"ffmpeg-static": "^5.2.0",
Expand Down
2 changes: 1 addition & 1 deletion src/core/use-case/extract-video-frame-with-compare.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ module.exports = class ExtractVideoFrameWithCompareUseCase {
await this.videoCompareRepository.compareAndRemoveDuplicates(fixedOutputPath, outputPathUnique);

const diff = Date.now() - start
log("Process finished, it took " + (diff / 1000))
log("Process finished, it took " + (diff / 1000) + " seconds")
}
}

0 comments on commit dcbf7f3

Please sign in to comment.