mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-10 17:29:08 +00:00
17 lines
299 B
C#
17 lines
299 B
C#
using MediaInfoLib;
|
|
using System.ComponentModel.Composition;
|
|
|
|
namespace QuickLook.Plugin.MediaInfoViewer;
|
|
|
|
[Export]
|
|
public static class Exporter
|
|
{
|
|
public static MediaInfo Open(string path)
|
|
{
|
|
MediaInfo lib = new MediaInfo()
|
|
.WithOpen(path);
|
|
|
|
return lib;
|
|
}
|
|
}
|