├── .gitattributes ├── .gitignore ├── README.md ├── ReadMeImg ├── key.jpg └── node.jpg ├── Resources └── Icon128.png ├── Source ├── RuntimeAudioImporter │ ├── Private │ │ ├── Codecs │ │ │ ├── BINK_RuntimeCodec.cpp │ │ │ ├── CodecIncludes.h │ │ │ ├── FLAC_RuntimeCodec.cpp │ │ │ ├── MP3_RuntimeCodec.cpp │ │ │ ├── RuntimeCodecFactory.cpp │ │ │ ├── VORBIS_RuntimeCodec.cpp │ │ │ └── WAV_RuntimeCodec.cpp │ │ ├── MetaSound │ │ │ ├── MetasoundImportedWave.cpp │ │ │ └── MetasoundImportedWaveToWaveAssetNode.cpp │ │ ├── PreImportedSoundAsset.cpp │ │ ├── RuntimeAudioImporter.cpp │ │ ├── RuntimeAudioImporterLibrary.cpp │ │ └── Sound │ │ │ ├── CapturableSoundWave.cpp │ │ │ ├── ImportedSoundWave.cpp │ │ │ └── StreamingSoundWave.cpp │ ├── Public │ │ ├── Codecs │ │ │ ├── BINK_RuntimeCodec.h │ │ │ ├── BaseRuntimeCodec.h │ │ │ ├── FLAC_RuntimeCodec.h │ │ │ ├── MP3_RuntimeCodec.h │ │ │ ├── RAW_RuntimeCodec.h │ │ │ ├── RuntimeCodecFactory.h │ │ │ ├── VORBIS_RuntimeCodec.h │ │ │ └── WAV_RuntimeCodec.h │ │ ├── MetaSound │ │ │ └── MetasoundImportedWave.h │ │ ├── PreImportedSoundAsset.h │ │ ├── RuntimeAudioImporter.h │ │ ├── RuntimeAudioImporterDefines.h │ │ ├── RuntimeAudioImporterLibrary.h │ │ ├── RuntimeAudioImporterTypes.h │ │ └── Sound │ │ │ ├── CapturableSoundWave.h │ │ │ ├── ImportedSoundWave.h │ │ │ └── StreamingSoundWave.h │ └── RuntimeAudioImporter.Build.cs ├── ThirdParty │ ├── dr_flac.h │ ├── dr_mp3.h │ └── dr_wav.h └── XunFeiTTS │ ├── Private │ ├── Helper │ │ ├── HashingSha256Library.cpp │ │ └── Helper.cpp │ ├── WebSocket.cpp │ ├── XunFeiLibrary.cpp │ ├── XunFeiTTS.cpp │ └── XunFeiTtsProxy.cpp │ ├── Public │ ├── Helper │ │ ├── HashingSha256Library.h │ │ └── Helper.h │ ├── WebSocket.h │ ├── XunFeiLibrary.h │ ├── XunFeiTTS.h │ └── XunFeiTtsProxy.h │ └── XunFeiTTS.Build.cs └── XunFeiTTS.uplugin /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Binaries/ 2 | Intermediate/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/README.md -------------------------------------------------------------------------------- /ReadMeImg/key.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/ReadMeImg/key.jpg -------------------------------------------------------------------------------- /ReadMeImg/node.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/ReadMeImg/node.jpg -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Private/Codecs/BINK_RuntimeCodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Private/Codecs/BINK_RuntimeCodec.cpp -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Private/Codecs/CodecIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Private/Codecs/CodecIncludes.h -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Private/Codecs/FLAC_RuntimeCodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Private/Codecs/FLAC_RuntimeCodec.cpp -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Private/Codecs/MP3_RuntimeCodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Private/Codecs/MP3_RuntimeCodec.cpp -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Private/Codecs/RuntimeCodecFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Private/Codecs/RuntimeCodecFactory.cpp -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Private/Codecs/VORBIS_RuntimeCodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Private/Codecs/VORBIS_RuntimeCodec.cpp -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Private/Codecs/WAV_RuntimeCodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Private/Codecs/WAV_RuntimeCodec.cpp -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Private/MetaSound/MetasoundImportedWave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Private/MetaSound/MetasoundImportedWave.cpp -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Private/MetaSound/MetasoundImportedWaveToWaveAssetNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Private/MetaSound/MetasoundImportedWaveToWaveAssetNode.cpp -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Private/PreImportedSoundAsset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Private/PreImportedSoundAsset.cpp -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Private/RuntimeAudioImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Private/RuntimeAudioImporter.cpp -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Private/RuntimeAudioImporterLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Private/RuntimeAudioImporterLibrary.cpp -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Private/Sound/CapturableSoundWave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Private/Sound/CapturableSoundWave.cpp -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Private/Sound/ImportedSoundWave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Private/Sound/ImportedSoundWave.cpp -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Private/Sound/StreamingSoundWave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Private/Sound/StreamingSoundWave.cpp -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Public/Codecs/BINK_RuntimeCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Public/Codecs/BINK_RuntimeCodec.h -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Public/Codecs/BaseRuntimeCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Public/Codecs/BaseRuntimeCodec.h -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Public/Codecs/FLAC_RuntimeCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Public/Codecs/FLAC_RuntimeCodec.h -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Public/Codecs/MP3_RuntimeCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Public/Codecs/MP3_RuntimeCodec.h -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Public/Codecs/RAW_RuntimeCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Public/Codecs/RAW_RuntimeCodec.h -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Public/Codecs/RuntimeCodecFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Public/Codecs/RuntimeCodecFactory.h -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Public/Codecs/VORBIS_RuntimeCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Public/Codecs/VORBIS_RuntimeCodec.h -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Public/Codecs/WAV_RuntimeCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Public/Codecs/WAV_RuntimeCodec.h -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Public/MetaSound/MetasoundImportedWave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Public/MetaSound/MetasoundImportedWave.h -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Public/PreImportedSoundAsset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Public/PreImportedSoundAsset.h -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Public/RuntimeAudioImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Public/RuntimeAudioImporter.h -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Public/RuntimeAudioImporterDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Public/RuntimeAudioImporterDefines.h -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Public/RuntimeAudioImporterLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Public/RuntimeAudioImporterLibrary.h -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Public/RuntimeAudioImporterTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Public/RuntimeAudioImporterTypes.h -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Public/Sound/CapturableSoundWave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Public/Sound/CapturableSoundWave.h -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Public/Sound/ImportedSoundWave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Public/Sound/ImportedSoundWave.h -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/Public/Sound/StreamingSoundWave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/Public/Sound/StreamingSoundWave.h -------------------------------------------------------------------------------- /Source/RuntimeAudioImporter/RuntimeAudioImporter.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/RuntimeAudioImporter/RuntimeAudioImporter.Build.cs -------------------------------------------------------------------------------- /Source/ThirdParty/dr_flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/ThirdParty/dr_flac.h -------------------------------------------------------------------------------- /Source/ThirdParty/dr_mp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/ThirdParty/dr_mp3.h -------------------------------------------------------------------------------- /Source/ThirdParty/dr_wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/ThirdParty/dr_wav.h -------------------------------------------------------------------------------- /Source/XunFeiTTS/Private/Helper/HashingSha256Library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/XunFeiTTS/Private/Helper/HashingSha256Library.cpp -------------------------------------------------------------------------------- /Source/XunFeiTTS/Private/Helper/Helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/XunFeiTTS/Private/Helper/Helper.cpp -------------------------------------------------------------------------------- /Source/XunFeiTTS/Private/WebSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/XunFeiTTS/Private/WebSocket.cpp -------------------------------------------------------------------------------- /Source/XunFeiTTS/Private/XunFeiLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/XunFeiTTS/Private/XunFeiLibrary.cpp -------------------------------------------------------------------------------- /Source/XunFeiTTS/Private/XunFeiTTS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/XunFeiTTS/Private/XunFeiTTS.cpp -------------------------------------------------------------------------------- /Source/XunFeiTTS/Private/XunFeiTtsProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/XunFeiTTS/Private/XunFeiTtsProxy.cpp -------------------------------------------------------------------------------- /Source/XunFeiTTS/Public/Helper/HashingSha256Library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/XunFeiTTS/Public/Helper/HashingSha256Library.h -------------------------------------------------------------------------------- /Source/XunFeiTTS/Public/Helper/Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/XunFeiTTS/Public/Helper/Helper.h -------------------------------------------------------------------------------- /Source/XunFeiTTS/Public/WebSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/XunFeiTTS/Public/WebSocket.h -------------------------------------------------------------------------------- /Source/XunFeiTTS/Public/XunFeiLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/XunFeiTTS/Public/XunFeiLibrary.h -------------------------------------------------------------------------------- /Source/XunFeiTTS/Public/XunFeiTTS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/XunFeiTTS/Public/XunFeiTTS.h -------------------------------------------------------------------------------- /Source/XunFeiTTS/Public/XunFeiTtsProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/XunFeiTTS/Public/XunFeiTtsProxy.h -------------------------------------------------------------------------------- /Source/XunFeiTTS/XunFeiTTS.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/Source/XunFeiTTS/XunFeiTTS.Build.cs -------------------------------------------------------------------------------- /XunFeiTTS.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Circle1688/XunFeiTTS/HEAD/XunFeiTTS.uplugin --------------------------------------------------------------------------------