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.
@@ -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
- 'videodiff:Plays a video with the difference of two videos'
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|videodiff|vconcat|dlaudio|dlvideo|unemoji|rmcover|curltime|gif|vcut|flattendir)
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
- - `videodiff`: Plays a video with the difference of two videos
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mediasnacks",
3
- "version": "0.10.0",
3
+ "version": "0.11.0",
4
4
  "description": "Utilities for preparing videos, images, and audio for the web",
5
5
  "license": "MIT",
6
6
  "author": "Eric Fortis",
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
- videodiff: ['videodiff.sh', 'Plays a video with the difference of two videos'],
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