The MediaInfoLib .NET Wrapper.


Keywords
mediainfo, mediainfodll, mediainfolib
License
BSD-2-Clause
Install
Install-Package MediaInfoDLL -Version 24.6.0

Documentation

NuGet Actions Platform

MediaInfoNet

Minimal MediaInfo .NET APIs wrapped from MediaArea.net.

Support for Windows Vista, 7, 8, 10, 11 with x86, x64.

Usage

  1. 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());
  1. Check audio track exists.
using MediaInfoLib;

using MediaInfo lib = new();
bool hasAudio = lib.WithOpen(fileName).Count_Get(StreamKind.Audio) > 0;
Console.WriteLine(hasAudio);
  1. 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

  1. ConsoleDemo for Console Application.

  2. WinFormsDemo for WinForms Application.

  3. VSEnc for WPF Application.

  4. LyricStudio for Avalonia Application.

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