mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-01-18 20:46:43 +00:00
11dfaa6e71
Former-commit-id: 2abb2a1e6b
45 lines
1.9 KiB
XML
45 lines
1.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<NeutralLanguage>en</NeutralLanguage>
|
|
<RepositoryUrl>https://github.com/rosenbjerg/FFMpegCore</RepositoryUrl>
|
|
<PackageProjectUrl>https://github.com/rosenbjerg/FFMpegCore</PackageProjectUrl>
|
|
<Copyright></Copyright>
|
|
<Description>A .NET Standard FFMpeg/FFProbe wrapper for easily integrating media analysis and conversion into your .NET applications</Description>
|
|
<AssemblyVersion>4.0.0.0</AssemblyVersion>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<PackageReleaseNotes>- Fixes for `MetaDataArgument` (thanks @JKamsker)
|
|
- Support for Audible `aaxc` (thanks @JKamsker)
|
|
- Include errordata in `IMediaAnalysis` (thanks @JKamsker)
|
|
- Pass `FFOptions` properly when using ffprobe (thanks @Notheisz57)
|
|
- CancellationToken support for `AnalyseAsync`
|
|
- Case-insensitive dictionaries for `Tags` and `Disposition`
|
|
- Fix for `PosterWithAudio`
|
|
- Fix for `JoinImageSequence`
|
|
- Updates to dependendies
|
|
- A lot of bug fixes</PackageReleaseNotes>
|
|
<LangVersion>8</LangVersion>
|
|
<PackageVersion>4.8.0</PackageVersion>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<Authors>Malte Rosenbjerg, Vlad Jerca, Max Bagryantsev</Authors>
|
|
<PackageTags>ffmpeg ffprobe convert video audio mediafile resize analyze muxing</PackageTags>
|
|
<RepositoryType>GitHub</RepositoryType>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<IsPackable>true</IsPackable>
|
|
<Nullable>enable</Nullable>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="FFMPEG\bin\**\*">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<None Include="..\README.md" Pack="true" PackagePath="\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Instances" Version="3.0.0" />
|
|
<PackageReference Include="System.Text.Json" Version="7.0.1" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|