Files
2025-08-13 09:26:42 +08:00

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();
}
}