egekhter
egekhter

Reputation: 2225

Extract Video EXIF data using Node.js

There are many options for reading EXIF data using Node.js, but all the ones I could find are for JPEG's. Are there any solutions for reading metadata from videos with Node?

Upvotes: 0

Views: 4192

Answers (1)

Michael Blankenship
Michael Blankenship

Reputation: 1669

How about...?

exiftool: A node.js wrapper around exiftool, a commandline utility that can extract metadata from many different filetypes, including JPEG, PNG, PDF, WMV, MOV. For a full list see the exiftool list of supported filetypes.

Upvotes: 2

Related Questions