mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
Add IMediaAnalysis interface
This commit is contained in:
parent
e6139805a8
commit
8c77ce0cdf
1 changed files with 18 additions and 0 deletions
18
FFMpegCore/FFProbe/IMediaAnalysis.cs
Normal file
18
FFMpegCore/FFProbe/IMediaAnalysis.cs
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
|
namespace FFMpegCore
|
||||||
|
{
|
||||||
|
public interface IMediaAnalysis
|
||||||
|
{
|
||||||
|
string Path { get; }
|
||||||
|
string Extension { get; }
|
||||||
|
TimeSpan Duration { get; }
|
||||||
|
MediaFormat Format { get; }
|
||||||
|
AudioStream PrimaryAudioStream { get; }
|
||||||
|
VideoStream PrimaryVideoStream { get; }
|
||||||
|
List<VideoStream> VideoStreams { get; }
|
||||||
|
List<AudioStream> AudioStreams { get; }
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue