mirror of
https://github.com/aaru-dps/Aaru.VideoNow.git
synced 2025-12-16 19:24:36 +00:00
Update dependencies.
This commit is contained in:
@@ -10,7 +10,7 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="SharpAvi" Version="2.1.1" />
|
<PackageReference Include="SharpAvi" Version="3.0.1" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@@ -76,7 +76,7 @@ namespace Aaru.VideoNow
|
|||||||
};
|
};
|
||||||
|
|
||||||
IAviVideoStream videoStream = aviWriter.AddVideoStream(144, 80, BitsPerPixel.Bpp24);
|
IAviVideoStream videoStream = aviWriter.AddVideoStream(144, 80, BitsPerPixel.Bpp24);
|
||||||
videoStream.Codec = KnownFourCCs.Codecs.Uncompressed;
|
videoStream.Codec = CodecIds.Uncompressed;
|
||||||
IAviAudioStream audioStream = aviWriter.AddAudioStream(2, 17640, 8);
|
IAviAudioStream audioStream = aviWriter.AddAudioStream(2, 17640, 8);
|
||||||
|
|
||||||
fs.Position = framePosition;
|
fs.Position = framePosition;
|
||||||
|
|||||||
@@ -162,7 +162,7 @@ namespace Aaru.VideoNow
|
|||||||
};
|
};
|
||||||
|
|
||||||
IAviVideoStream videoStream = aviWriter.AddVideoStream(144, 80, BitsPerPixel.Bpp24);
|
IAviVideoStream videoStream = aviWriter.AddVideoStream(144, 80, BitsPerPixel.Bpp24);
|
||||||
videoStream.Codec = KnownFourCCs.Codecs.Uncompressed;
|
videoStream.Codec = CodecIds.Uncompressed;
|
||||||
IAviAudioStream audioStream = aviWriter.AddAudioStream(2, 17784, 8);
|
IAviAudioStream audioStream = aviWriter.AddAudioStream(2, 17784, 8);
|
||||||
|
|
||||||
fs.Position = framePosition;
|
fs.Position = framePosition;
|
||||||
|
|||||||
Reference in New Issue
Block a user