mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 10:05:44 +00:00
14 lines
251 B
C#
14 lines
251 B
C#
namespace FFMpegCore.Enums;
|
|
|
|
/// <summary>
|
|
/// <see href="https://ffmpeg.org/ffmpeg-protocols.html#rtsp" />
|
|
/// RTSP transport protocols
|
|
/// </summary>
|
|
public enum RtspTransportProtocol
|
|
{
|
|
udp,
|
|
tcp,
|
|
udp_multicast,
|
|
http,
|
|
https,
|
|
}
|