├── LICENSE ├── README.md ├── WEMCompiler ├── FFmpegHook │ └── FFmpegWrapper.cs ├── Properties │ └── AssemblyInfo.cs ├── WEMCompiler.csproj ├── WEMConverter.cs ├── WWWem │ ├── DataChunks │ │ ├── WEMDataChunk.cs │ │ ├── WEMFormatChunk.cs │ │ └── WEMHeader.cs │ └── WEMFile.cs ├── bin │ └── Release │ │ ├── TEMP │ │ └── export.wav │ │ ├── WEMCompiler.dll │ │ └── WEMCompiler.pdb └── obj │ └── Release │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── WEMCompiler.csproj.CoreCompileInputs.cache │ ├── WEMCompiler.csproj.FileListAbsolute.txt │ ├── WEMCompiler.csprojAssemblyReference.cache │ ├── WEMCompiler.dll │ └── WEMCompiler.pdb └── WEMCompilerTool ├── App.config ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── WEMCompilerTool.csproj ├── bin └── Release │ ├── WEMCompiler.dll │ ├── WEMCompiler.pdb │ ├── WEMCompilerTool.exe │ ├── WEMCompilerTool.exe.config │ └── WEMCompilerTool.pdb └── obj └── Release ├── DesignTimeResolveAssemblyReferencesInput.cache ├── WEMCompilerTool.csproj.CoreCompileInputs.cache ├── WEMCompilerTool.csproj.FileListAbsolute.txt ├── WEMCompilerTool.csprojAssemblyReference.cache ├── WEMCompilerTool.exe └── WEMCompilerTool.pdb /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/README.md -------------------------------------------------------------------------------- /WEMCompiler/FFmpegHook/FFmpegWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/WEMCompiler/FFmpegHook/FFmpegWrapper.cs -------------------------------------------------------------------------------- /WEMCompiler/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/WEMCompiler/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WEMCompiler/WEMCompiler.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/WEMCompiler/WEMCompiler.csproj -------------------------------------------------------------------------------- /WEMCompiler/WEMConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/WEMCompiler/WEMConverter.cs -------------------------------------------------------------------------------- /WEMCompiler/WWWem/DataChunks/WEMDataChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/WEMCompiler/WWWem/DataChunks/WEMDataChunk.cs -------------------------------------------------------------------------------- /WEMCompiler/WWWem/DataChunks/WEMFormatChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/WEMCompiler/WWWem/DataChunks/WEMFormatChunk.cs -------------------------------------------------------------------------------- /WEMCompiler/WWWem/DataChunks/WEMHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/WEMCompiler/WWWem/DataChunks/WEMHeader.cs -------------------------------------------------------------------------------- /WEMCompiler/WWWem/WEMFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/WEMCompiler/WWWem/WEMFile.cs -------------------------------------------------------------------------------- /WEMCompiler/bin/Release/TEMP/export.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/WEMCompiler/bin/Release/TEMP/export.wav -------------------------------------------------------------------------------- /WEMCompiler/bin/Release/WEMCompiler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/WEMCompiler/bin/Release/WEMCompiler.dll -------------------------------------------------------------------------------- /WEMCompiler/bin/Release/WEMCompiler.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/WEMCompiler/bin/Release/WEMCompiler.pdb -------------------------------------------------------------------------------- /WEMCompiler/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/WEMCompiler/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /WEMCompiler/obj/Release/WEMCompiler.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | cc6a0b957be4909d51b1ff772a5326ee0ca5409a 2 | -------------------------------------------------------------------------------- /WEMCompiler/obj/Release/WEMCompiler.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/WEMCompiler/obj/Release/WEMCompiler.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /WEMCompiler/obj/Release/WEMCompiler.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/WEMCompiler/obj/Release/WEMCompiler.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /WEMCompiler/obj/Release/WEMCompiler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/WEMCompiler/obj/Release/WEMCompiler.dll -------------------------------------------------------------------------------- /WEMCompiler/obj/Release/WEMCompiler.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/WEMCompiler/obj/Release/WEMCompiler.pdb -------------------------------------------------------------------------------- /WEMCompilerTool/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/WEMCompilerTool/App.config -------------------------------------------------------------------------------- /WEMCompilerTool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/WEMCompilerTool/Program.cs -------------------------------------------------------------------------------- /WEMCompilerTool/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/WEMCompilerTool/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WEMCompilerTool/WEMCompilerTool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/WEMCompilerTool/WEMCompilerTool.csproj -------------------------------------------------------------------------------- /WEMCompilerTool/bin/Release/WEMCompiler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/WEMCompilerTool/bin/Release/WEMCompiler.dll -------------------------------------------------------------------------------- /WEMCompilerTool/bin/Release/WEMCompiler.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/WEMCompilerTool/bin/Release/WEMCompiler.pdb -------------------------------------------------------------------------------- /WEMCompilerTool/bin/Release/WEMCompilerTool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/WEMCompilerTool/bin/Release/WEMCompilerTool.exe -------------------------------------------------------------------------------- /WEMCompilerTool/bin/Release/WEMCompilerTool.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/WEMCompilerTool/bin/Release/WEMCompilerTool.exe.config -------------------------------------------------------------------------------- /WEMCompilerTool/bin/Release/WEMCompilerTool.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/WEMCompilerTool/bin/Release/WEMCompilerTool.pdb -------------------------------------------------------------------------------- /WEMCompilerTool/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/WEMCompilerTool/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /WEMCompilerTool/obj/Release/WEMCompilerTool.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 16ab5c19f42afacb64e85c0c0a1b265642dc0e47 2 | -------------------------------------------------------------------------------- /WEMCompilerTool/obj/Release/WEMCompilerTool.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/WEMCompilerTool/obj/Release/WEMCompilerTool.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /WEMCompilerTool/obj/Release/WEMCompilerTool.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/WEMCompilerTool/obj/Release/WEMCompilerTool.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /WEMCompilerTool/obj/Release/WEMCompilerTool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/WEMCompilerTool/obj/Release/WEMCompilerTool.exe -------------------------------------------------------------------------------- /WEMCompilerTool/obj/Release/WEMCompilerTool.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtiTheSpirit/WEMConverter/HEAD/WEMCompilerTool/obj/Release/WEMCompilerTool.pdb --------------------------------------------------------------------------------