* initial remote stream library support; scanning seems to work ok * flood schedule remote streams kind of works * switch remote stream definitions to yaml files * implement remote stream script playback * update changelog
13 lines
195 B
C#
13 lines
195 B
C#
namespace ErsatzTV.Core.Domain;
|
|
|
|
public enum LibraryMediaKind
|
|
{
|
|
Movies = 1,
|
|
Shows = 2,
|
|
MusicVideos = 3,
|
|
OtherVideos = 4,
|
|
Songs = 5,
|
|
Images = 6,
|
|
RemoteStreams = 7
|
|
}
|