mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-19 18:04:36 +01:00
22 lines
283 B
C#
22 lines
283 B
C#
namespace RenderHeads.Media.AVProVideo
|
|
{
|
|
public interface IMediaInfo
|
|
{
|
|
float GetDurationMs();
|
|
|
|
int GetVideoWidth();
|
|
|
|
int GetVideoHeight();
|
|
|
|
float GetVideoFrameRate();
|
|
|
|
float GetVideoDisplayRate();
|
|
|
|
bool HasVideo();
|
|
|
|
bool HasAudio();
|
|
|
|
int GetAudioTrackCount();
|
|
}
|
|
}
|