On Wed, Jul 22, 2009 at 4:17 AM, aviad rozenhek <[email protected]> wrote:
> I'm using libav* in my application, and would like to print all the > metadata > in a file. > however I noticed that in order to get all the individual AVMetadataTag, I > would need to #include metadata.h > which is currently an "internal" header. > > is there a better way to do this? > Yes, use the av_metadata_* methods in avcodec.h, and pass ¨¨ for the option name, and tell it to match partial strings. That will start returning every meta data element. - Art -- http://www.xuggle.com/ xu‧ggle (zŭ' gl) v. To freely encode, decode, and experience audio and video. Use Xuggle to get the power of FFmpeg in Java. _______________________________________________ libav-user mailing list [email protected] https://lists.mplayerhq.hu/mailman/listinfo/libav-user
