mediasnacks 0.16.4 → 0.16.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -122,7 +122,7 @@ For example, for `dropdups -n2 file.mov`
122
122
  - Workflow receives current: `movie files` in `Finder.app`
123
123
  - Action: `Run Shell Script`
124
124
  ```shell
125
- export PATH="/opt/homebrew/bin"
125
+ export PATH="/opt/homebrew/bin:/opt/homebrew/opt/node@24/bin"
126
126
  for f in "$@"; do
127
127
  $HOME/bin/mediasnacks dropdups -n2 "$f"
128
128
  done
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mediasnacks",
3
- "version": "0.16.4",
3
+ "version": "0.16.5",
4
4
  "description": "Utilities for optimizing and preparing videos and images for the web",
5
5
  "license": "MIT",
6
6
  "author": "Eric Fortis",
package/src/framediff.sh CHANGED
@@ -4,10 +4,7 @@
4
4
  # I use this for finding repeated frames. For example, you’ll see
5
5
  # a black frame if two consecutive frames are almost similar.
6
6
 
7
- # The frame number is rendered at the top-left.
8
-
9
7
  ffplay -v error "$1" -vf "
10
8
  tblend=all_mode=difference,
11
- format=gray,
12
- drawtext=text='%{n}':x=20:y=20:fontcolor=white:fontsize=48
9
+ format=gray
13
10
  "