mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-16 19:15:44 +00:00
13 lines
No EOL
358 B
C#
13 lines
No EOL
358 B
C#
using System;
|
|
|
|
namespace FFMpegCore.FFMPEG
|
|
{
|
|
public class MediaStream
|
|
{
|
|
public int Index { get; internal set; }
|
|
public string CodecName { get; internal set; }
|
|
public string CodecLongName { get; internal set; }
|
|
public int BitRate { get; internal set; }
|
|
public TimeSpan Duration { get; internal set; }
|
|
}
|
|
} |