├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── ccjson.h ├── ccjson_convert.cpp ├── ccjson_convert.h ├── ccjson_downloader.cpp ├── ccjson_downloader.h ├── common.cpp ├── common.h ├── curl_helper.cpp ├── curl_helper.h └── main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gougou12138/BiliBiliCCSubtitle/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gougou12138/BiliBiliCCSubtitle/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gougou12138/BiliBiliCCSubtitle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gougou12138/BiliBiliCCSubtitle/HEAD/README.md -------------------------------------------------------------------------------- /ccjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gougou12138/BiliBiliCCSubtitle/HEAD/ccjson.h -------------------------------------------------------------------------------- /ccjson_convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gougou12138/BiliBiliCCSubtitle/HEAD/ccjson_convert.cpp -------------------------------------------------------------------------------- /ccjson_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gougou12138/BiliBiliCCSubtitle/HEAD/ccjson_convert.h -------------------------------------------------------------------------------- /ccjson_downloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gougou12138/BiliBiliCCSubtitle/HEAD/ccjson_downloader.cpp -------------------------------------------------------------------------------- /ccjson_downloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gougou12138/BiliBiliCCSubtitle/HEAD/ccjson_downloader.h -------------------------------------------------------------------------------- /common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gougou12138/BiliBiliCCSubtitle/HEAD/common.cpp -------------------------------------------------------------------------------- /common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gougou12138/BiliBiliCCSubtitle/HEAD/common.h -------------------------------------------------------------------------------- /curl_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gougou12138/BiliBiliCCSubtitle/HEAD/curl_helper.cpp -------------------------------------------------------------------------------- /curl_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gougou12138/BiliBiliCCSubtitle/HEAD/curl_helper.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gougou12138/BiliBiliCCSubtitle/HEAD/main.cpp --------------------------------------------------------------------------------