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 +1 -1
- package/src/downloader.js +1 -1
package/package.json
CHANGED
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(
|
|
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.'));
|