Merge pull request #116 from Mbucari/master
Correctly write mp3 Xing header.
This commit is contained in:
commit
6b711190c3
@ -5,7 +5,7 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="AAXClean" Version="0.1.8" />
|
<PackageReference Include="AAXClean" Version="0.1.9" />
|
||||||
<PackageReference Include="Dinah.Core" Version="1.1.0.1" />
|
<PackageReference Include="Dinah.Core" Version="1.1.0.1" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|||||||
@ -144,7 +144,7 @@ namespace AaxDecrypter
|
|||||||
if (File.Exists(outputFileName))
|
if (File.Exists(outputFileName))
|
||||||
FileExt.SafeDelete(outputFileName);
|
FileExt.SafeDelete(outputFileName);
|
||||||
|
|
||||||
FileStream outFile = File.OpenWrite(outputFileName);
|
FileStream outFile = File.Open(outputFileName, FileMode.OpenOrCreate, FileAccess.ReadWrite);
|
||||||
|
|
||||||
aaxFile.SetDecryptionKey(downloadLicense.AudibleKey, downloadLicense.AudibleIV);
|
aaxFile.SetDecryptionKey(downloadLicense.AudibleKey, downloadLicense.AudibleIV);
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user