forked from baSSiLL/SharpAvi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SharpAvi.nuspec
30 lines (28 loc) · 2.08 KB
/
SharpAvi.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>SharpAvi</id>
<version>2.1.0</version>
<authors>Vasili Maslov</authors>
<licenseUrl>https://sharpavi.codeplex.com/license</licenseUrl>
<projectUrl>https://sharpavi.codeplex.com/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>If you want to render some video sequence, and do not want to touch DirectShow or depend on command-line utilities - SharpAvi may be what you need.
Writing uncompressed AVI does not require any external dependencies, it's pure .NET code. Files are produced in compliance with the OpenDML extensions which allow (nearly) unlimited file size (no 2GB limit).
Video is created by supplying individual in-memory bitmaps (byte arrays) and audio samples. Included are implementations of encoders for Motion JPEG (requires WPF), MPEG-4 (requires external VfW codecs) and MP3 (requires LAME binaries). Asynchronous writing/encoding is supported.</description>
<summary>A simple library for creating video files in AVI format.</summary>
<releaseNotes>Added support for 8-bit grayscale video.</releaseNotes>
<tags>AVI video authoring encoding OpenDML</tags>
<references>
<reference file="SharpAvi.dll" />
</references>
</metadata>
<files>
<file src="SharpAvi\bin\35\Release\CodeContracts\SharpAvi.Contracts.dll" target="lib\net35-client\CodeContracts\SharpAvi.Contracts.dll" />
<file src="SharpAvi\bin\35\Release\SharpAvi.dll" target="lib\net35-client\SharpAvi.dll" />
<file src="SharpAvi\bin\35\Release\SharpAvi.XML" target="lib\net35-client\SharpAvi.XML" />
<file src="SharpAvi\bin\Release\CodeContracts\SharpAvi.Contracts.dll" target="lib\net45\CodeContracts\SharpAvi.Contracts.dll" />
<file src="SharpAvi\bin\Release\SharpAvi.dll" target="lib\net45\SharpAvi.dll" />
<file src="SharpAvi\bin\Release\SharpAvi.XML" target="lib\net45\SharpAvi.XML" />
</files>
</package>