* optionally include progress bar in generated song video * update progress bar size/location * move everything up 10% when song progress is enabled * add watermark border to song progress bar * always show accurate progress bar * lower progress bar to 90% alpha * update changelog
8 lines
108 B
C#
8 lines
108 B
C#
namespace ErsatzTV.Core.Domain;
|
|
|
|
public enum ChannelSongVideoMode
|
|
{
|
|
Default = 0,
|
|
WithProgress = 1
|
|
}
|