Displaying 1 result from an estimated 1 matches for "infosik".
Did you mean:
infos
2006 Mar 08
2
libflac++ reading vorbis metadata
I'm trying to use libFLAC++ v1.1.2, to read Song information (like artist,
trackname etc..). So..
I read metadata from file
FLAC::Metadata::get_streaminfo("somefile.flac", infosik);
and It's ok - no error, then I read vorbis info:
FLAC::Metadata::VorbisComment vorbis_kom(infosik);
int number_of_comments = vorbis_kom.get_num_comments();
and after that I have number_of_comments=14
when I try to read entry using get_comment method I got segfault
vorbis_kom.get_comment(nu...