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 +1 -1
- package/package.json +1 -1
- package/src/framediff.sh +1 -4
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
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
|
"
|