npmytd 1.0.3 → 1.0.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "npmytd",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "A CLI tool to download YouTube videos or audio.",
5
5
  "main": "src/cli.js",
6
6
  "type": "module",
package/src/downloader.js CHANGED
@@ -136,7 +136,7 @@ Download of audio stream completed. Starting conversion to MP3...`));
136
136
  // Check if ffmpeg is available
137
137
  ffmpeg.getFfmpegVersion((err) => {
138
138
  if (err) {
139
- console.error(chalk.red('ffmpeg is not installed or not found in your system's PATH.'));
139
+ console.error(chalk.red(`ffmpeg is not installed or not found in your system's PATH.`));
140
140
  console.error(chalk.red('Please install ffmpeg to convert to MP3.'));
141
141
  console.error(chalk.red('You can download it from https://ffmpeg.org/download.html and ensure it's accessible in your PATH.'));
142
142
  reject(new Error('ffmpeg not found.'));