MediaInfoDLL 25.7.0
dotnet add package MediaInfoDLL --version 25.7.0
NuGet\Install-Package MediaInfoDLL -Version 25.7.0
<PackageReference Include="MediaInfoDLL" Version="25.7.0" />
<PackageVersion Include="MediaInfoDLL" Version="25.7.0" />
<PackageReference Include="MediaInfoDLL" />
paket add MediaInfoDLL --version 25.7.0
#r "nuget: MediaInfoDLL, 25.7.0"
#:package MediaInfoDLL@25.7.0
#addin nuget:?package=MediaInfoDLL&version=25.7.0
#tool nuget:?package=MediaInfoDLL&version=25.7.0
MediaInfoNet
Minimal MediaInfo .NET APIs wrapped from MediaArea.net.
Support for Windows Vista, 7, 8, 10, 11 with x86, x64, ARM64.
Usage
- Provide the Media Inform.
using MediaInfoLib;
using MediaInfo lib = new();
lib.Open(@"C:\media.mp4");
Console.WriteLine(lib.Inform());
Useful options.
using MediaInfoLib;
using MediaInfo lib = new();
lib.Open(@"C:\media.mp4");
lib.Option("Complete", "1"); // Set complete output.
lib.Option("Inform", Inform_Format.HTML.ToString()); // Set format to HTML.
lib.Option("Language", Language_ISO639.ChineseSimplified.ToIso639()); // Set language to Chinese.
Console.WriteLine(lib.Inform());
- Check audio track exists.
using MediaInfoLib;
using MediaInfo lib = new();
bool hasAudio = lib.WithOpen(fileName).Count_Get(StreamKind.Audio) > 0;
Console.WriteLine(hasAudio);
- Get audio track parameter.
using MediaInfoLib;
using MediaInfo lib = new();
lib.Open(fileName);
_ = double.TryParse(lib.Get(StreamKind.Audio, 0, "BitRate"), out double bitRate);
Console.WriteLine(bitRate);
Examples
- ConsoleDemo for Console Application.
- WinFormsDemo for WinForms Application.
- VSEnc for WPF Application.
- QuickLook for WPF Application.
- LyricStudio for Avalonia Application.
Runtimes
How to include the all MediaInfo.dll
runtime native libraries in .csproj
:
<ItemGroup>
<Content Include="$(NuGetPackageRoot)\MediaInfoDLL\25.7.0\lib\netstandard2.0\x64\MediaInfo.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<DestinationFolder>$(OutDir)MediaInfo-x64\</DestinationFolder>
<Link>runtime-x64\MediaInfo.dll</Link>
</Content>
<Content Include="$(NuGetPackageRoot)\MediaInfoDLL\25.7.0\lib\netstandard2.0\x86\MediaInfo.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<DestinationFolder>$(OutDir)MediaInfo-x86\</DestinationFolder>
<Link>runtime-x86\MediaInfo.dll</Link>
</Content>
<Content Include="$(NuGetPackageRoot)\MediaInfoDLL\25.7.0\lib\netstandard2.0\arm64\MediaInfo.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<DestinationFolder>$(OutDir)MediaInfo-ARM64\</DestinationFolder>
<Link>runtime-arm64\MediaInfo.dll</Link>
</Content>
</ItemGroup>
References
https://github.com/MediaArea/MediaInfoLib/blob/master/Source/MediaInfo/MediaInfo_Config.h
https://github.com/MediaArea/MediaInfoLib/blob/master/Source/MediaInfo/File__Analyse_Automatic.h
https://github.com/MediaArea/MediaInfo/tree/master/Source/Resource/Plugin/Language
https://github.com/MediaArea/MediaInfo/blob/master/Source/Resource/Language.csv
License
MediaInfoLib - https://github.com/MediaArea/MediaInfoLib
Copyright (c) MediaArea.net SARL. All Rights Reserved.
This program is freeware under BSD-2-Clause license conditions.
See License.html for more information
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net461 was computed. net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 is compatible. net48 is compatible. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.6.2
- No dependencies.
-
.NETFramework 4.7.2
- No dependencies.
-
.NETFramework 4.8
- No dependencies.
-
.NETStandard 2.0
- No dependencies.
-
.NETStandard 2.1
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on MediaInfoDLL:
Repository | Stars |
---|---|
QL-Win/QuickLook
Bring macOS “Quick Look” feature to Windows
|
Version | Downloads | Last Updated |
---|---|---|
25.7.0 | 13 | 8/4/2025 |
25.4.0 | 1,130 | 5/20/2025 |
24.12.0 | 4,267 | 12/28/2024 |
24.11.0 | 651 | 11/8/2024 |
24.6.2 | 243 | 9/5/2024 |
24.6.1 | 137 | 9/5/2024 |
24.6.0 | 178 | 7/24/2024 |
24.5.0 | 237 | 6/1/2024 |
24.4.1-rc1 | 107 | 5/31/2024 |
24.4.0 | 205 | 4/29/2024 |
24.3.0 | 178 | 4/15/2024 |
23.10.0 | 1,560 | 11/15/2023 |
22.12.0 | 873 | 1/6/2023 |
22.9.1 | 669 | 10/24/2022 |
22.9.0 | 481 | 10/24/2022 |