mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
parent
3f9e6c0d18
commit
9ff34b250f
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