You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
I'm trying to convert mp4 video file to mp3 while adding metadata doing so :
var process = new ffmpeg(videoPath);
process.then(function (extractedVideo) {
// I have also tried this way : extractedVideo.addCommand('-metadata', `title="TestTitle"`)
extractedVideo.addCommand('-metadata:s:v', `title="TestTitle"`)
const songPath = path.join(this.state.store.get('songPath'), songTitle + '.mp3');
extractedVideo.fnExtractSoundToMP3("\"" + songPath + "\"", function (error, file) {
})
But looking at the output mp3 file, it does not add the metadata ...
I was also wondering the way to add multiple metadata ?
Any help would be much appreciated,
Thank you for your time !
The text was updated successfully, but these errors were encountered:
Hello,
I'm trying to convert mp4 video file to mp3 while adding metadata doing so :
But looking at the output mp3 file, it does not add the metadata ...
I was also wondering the way to add multiple metadata ?
Any help would be much appreciated,
Thank you for your time !
The text was updated successfully, but these errors were encountered: