Files
VDownload/VDownload.Core/Interfaces/IVStream.cs

21 lines
393 B
C#

using System;
using VDownload.Core.Enums;
namespace VDownload.Core.Interfaces
{
public interface IVStream
{
#region PROPERTIES
Uri Url { get; }
bool IsChunked { get; }
StreamType StreamType { get; }
int Width { get; }
int Height { get; }
int FrameRate { get; }
string VideoCodec { get; }
#endregion
}
}