* refactor template processing * use template for song xmltv entries * use template for other video xmltv entries * update changelog
14 lines
432 B
C#
14 lines
432 B
C#
namespace ErsatzTV.Infrastructure.Metadata;
|
|
|
|
public static class MetadataSongTag
|
|
{
|
|
public const string Album = "album";
|
|
public const string Artist = "artist";
|
|
public const string AlbumArtist = "albumartist";
|
|
public const string Date = "date";
|
|
public const string Genre = "genre";
|
|
public const string Title = "title";
|
|
public const string Track = "track";
|
|
public const string Comment = "comment";
|
|
}
|