node-ffmetadata
node-ffmetadata copied to clipboard
Read and write media metadata using ffmpeg
read is returning an empty object when used on Windows. ffmpeg was installed using chocolatey, so this should have taken care of dependencies. I am able to use read on...
@parshap in response to the final comment on https://github.com/parshap/node-ffmetadata/issues/17 hope this was what you had in mind, or similar. Thanks!
Is it possible to change the detected type of an MP4 from "home movie" to "music video?" This property is shown within iTunes. Not sure if it's using a standard...
The documentation says one can access the year of release via e.g. `data.date`. I now got some mp3s where this information is not stored under the `date` key, but under...
Hi, I would really love this plugin if I could get it to work. I'm able to write and successfully read the metadata of an mp3 but the changes don't...
Is there a way to remove the artwork entirely? I only see instructions on how to set a new image. **Update** After playing with this a bit more, I realize...
The result dosen't have a property like picture(my song really has a cover picture). ``` ffmetadata.read("song.mp3", function(err, data) { if (err) console.error("Error reading metadata, err"); else console.log(data); }); ```
Do you think it would be possible to parse the output directly from stdout rather than parsing the ffmetadata ini so that multiple input files could be processed with a...