mediasnacks 0.10.0 → 0.11.0
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/.zsh/completions/_mediasnacks +2 -2
- package/README.md +1 -1
- package/package.json +1 -1
- package/src/cli.js +1 -1
- /package/src/{videodiff.sh → vdiff.sh} +0 -0
|
@@ -10,7 +10,7 @@ _mediasnacks_commands=(
|
|
|
10
10
|
'qdir:Sequentially runs all *.sh files in a folder'
|
|
11
11
|
'hev1tohvc1:Fixes video thumbnails not rendering in macOS Finder'
|
|
12
12
|
'framediff:ffplay with a filter for diffing adjacent frames'
|
|
13
|
-
'
|
|
13
|
+
'vdiff:Plays a video with the difference of two videos'
|
|
14
14
|
'vconcat:Concatenates videos',
|
|
15
15
|
'dlaudio: yt-dlp best audio',
|
|
16
16
|
'dlvideo: yt-dlp best video',
|
|
@@ -30,7 +30,7 @@ _mediasnacks() {
|
|
|
30
30
|
|
|
31
31
|
local cmd="$words[2]"
|
|
32
32
|
case "$cmd" in
|
|
33
|
-
avif|resize|sqcrop|moov2front|dropdups|seqcheck|hev1tohvc1|framediff|
|
|
33
|
+
avif|resize|sqcrop|moov2front|dropdups|seqcheck|hev1tohvc1|framediff|vdiff|vconcat|dlaudio|dlvideo|unemoji|rmcover|curltime|gif|vcut|flattendir)
|
|
34
34
|
_files
|
|
35
35
|
;;
|
|
36
36
|
qdir)
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ Commands:
|
|
|
21
21
|
- `hev1tohvc1`: Fixes video thumbnails not rendering in macOS Finder
|
|
22
22
|
|
|
23
23
|
- `framediff`: Plays a video of adjacent frames diff
|
|
24
|
-
- `
|
|
24
|
+
- `vdiff`: Plays a video with the difference of two videos
|
|
25
25
|
- `vconcat`: Concatenates videos
|
|
26
26
|
|
|
27
27
|
- `dlaudio`: yt-dlp best audio
|
package/package.json
CHANGED
package/src/cli.js
CHANGED
|
@@ -17,7 +17,7 @@ const COMMANDS = {
|
|
|
17
17
|
hev1tohvc1: ['hev1tohvc1.js', 'Fixes video thumbnails not rendering in macOS Finder '],
|
|
18
18
|
|
|
19
19
|
framediff: ['framediff.sh', 'Plays a video of adjacent frames diff'],
|
|
20
|
-
|
|
20
|
+
vdiff: ['vdiff.sh', 'Plays a video with the difference of two videos'],
|
|
21
21
|
|
|
22
22
|
vconcat: ['vconcat.sh', 'Concatenates videos'],
|
|
23
23
|
|
|
File without changes
|