@mediaproc/audio 1.3.3 → 1.3.4

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.
Files changed (2) hide show
  1. package/dist/register.js +1 -1
  2. package/package.json +1 -1
package/dist/register.js CHANGED
@@ -30,7 +30,7 @@ export function register(program) {
30
30
  const audioCmd = program
31
31
  .command('audio')
32
32
  .description('Audio processing commands (powered by FFmpeg)')
33
- .version(currentVersion, '-v, --version', 'Output the audio plugin version')
33
+ .version(currentVersion, '-V, --version', 'Output the audio plugin version')
34
34
  .helpOption('-h, --help', 'Display help for audio plugin');
35
35
  // Register each command on the audio subcommand
36
36
  convertCommand(audioCmd);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mediaproc/audio",
3
- "version": "1.3.3",
3
+ "version": "1.3.4",
4
4
  "description": "Audio processing plugin for mediaproc - powered by FFmpeg",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",