# LrcDecoder **Repository Path**: MenPenS/LrcDecoder ## Basic Information - **Project Name**: LrcDecoder - **Description**: 使用C++11实现的LRC格式(歌词)解码器 - **Primary Language**: C++ - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-09-22 - **Last Updated**: 2021-09-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # LrcDecoder 使用c++11简单实现的LRC(歌词)解码器 ------ ### 使用LrcDecoder: ```c++ #include "lrcdecoder.h" int main(int argc, char *argv[]) { LrcDecoder decoder; decoder.decode(string(argv[1])); decoder.dumpMetadata(stdout); decoder.dumpLyrics(stdout); } ``` ### 然后: ```sh .\lrcdecoder test.lrc ``` ------ ### 开发环境 Windows 10, C++11 ------