nathanpeck / exiftool

A Node.js wrapper around exiftool, providing metadata extraction from numerous audio, video, document, and binary filetypes
MIT License
81 stars 26 forks source link

Pls develop pure javascript version without child_process #22

Open odebroqueville opened 5 years ago

odebroqueville commented 5 years ago

Hi Nathan, I'd very much like to use your code in my firefox extension. Unfortunately, I don't know how to convert your node.js version to a pure js (not for node.js) version. I'm guessing the use of child_process would have to be omitted. Would you care to help? Thanks in advance.

mniehe commented 5 years ago

Hi @odebroqueville, this library is only a wrapper around an already existing tool called exiftool. Unfortunately, it's not very likely that this library would be moved away from wrapping that tool. Check out this for a possible alternative to what you want.

thany commented 4 years ago

Exiftool is opensource: https://github.com/exiftool/exiftool It might be doable to compile it to WebAssembly.