Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 ffmpeg 读取 mp3 ID3 标签,简短示例:
AVDictionaryEntry* tag = av_dict_get(fc->metadata, "title", NULL, 0) std::string title(tag->value);
我可以通过什么方式获取有关读取值编码的信息?我想不通。
谢谢
似乎应该是UTF-8:
与 FFmpeg 中的所有字符串一样,元数据被假定为 UTF-8 编码的 Unicode。
报价来自这里。