{{o.content | formatHtml}}
{{o.author.name}}
{{o.pubDate | formatDate}}
{{parseInt(o.viewCount) | bigNumberTransform}}
libmtag 是一个 C 语言库用来获取 MP3、OGG 和 Flac 文件的元信息。同时也提供 Python 和 Ruby 语言绑定的版本。 示例代码: C mtag_file_t *file; mtag_tag_t *tag; file = mtag_file_new("song.mp3"); tag = mtag_file_tag(file); printf(”%s - %s\n”, mtag_tag_get(tag, “artist”), mtag_tag_get(tag, “title”)); mtag_tag_set(tag, "artist", "foo"); mtag_file_save(file); mtag_file_free(file); Ruby file = MTag:...