Reputation: 1202
Any tool in ruby or Command line interface to get all the metadata associated with a video file.
I need to store the metadata in the table for indexing purposes.
I tried using ffmpeg and but the metadata is not formatted.
Upvotes: 0
Views: 2536
Reputation: 45634
ffmpeg -i
normally gets the job done, however, there's a Ruby tool that manipulates metadata; It will even output the data as xml, which can be useful
See here
Upvotes: 1