mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-21 08:15:28 +03:00
13 lines
206 B
C#
13 lines
206 B
C#
|
|
namespace MediaBrowser.Model.MediaInfo
|
||
|
|
{
|
||
|
|
public enum MediaProtocol
|
||
|
|
{
|
||
|
|
File = 0,
|
||
|
|
Http = 1,
|
||
|
|
Rtmp = 2,
|
||
|
|
Rtsp = 3,
|
||
|
|
Udp = 4,
|
||
|
|
Rtp = 5,
|
||
|
|
Ftp = 6
|
||
|
|
}
|
||
|
|
}
|