* fix validation in new form layout * pin mediatr to last oss version * update dependencies * cleanup code in core * cleanup code in ffmpeg * cleanup code in infra * cleanup code in scanner * cleanup code in application * cleanup main code * cleanup test code * solution-wide code cleanup
36 lines
1.4 KiB
C#
36 lines
1.4 KiB
C#
namespace ErsatzTV.FFmpeg.Filter;
|
|
|
|
public class SongProgressFilter(FrameSize frameSize, Option<TimeSpan> maybeStart, Option<TimeSpan> maybeDuration)
|
|
: BaseFilter
|
|
{
|
|
public override string Filter
|
|
{
|
|
get
|
|
{
|
|
foreach (TimeSpan duration in maybeDuration)
|
|
{
|
|
TimeSpan start = maybeStart.IfNone(TimeSpan.Zero);
|
|
TimeSpan finish = start + duration;
|
|
|
|
double width = frameSize.Width * 0.9;
|
|
double height = frameSize.Height * 0.025;
|
|
double seconds = duration.TotalSeconds;
|
|
double alreadyPlayed = start.TotalSeconds / finish.TotalSeconds;
|
|
double scale = 1 - alreadyPlayed;
|
|
|
|
var generateGrayBar = $"color=c=#323232:s={width}x{height},format=rgba,colorchannelmixer=aa=0.4";
|
|
var generateWhiteBar = $"color=c=white:s={width}x{height}";
|
|
var scaleToFullWidth = $"scale=iw*{alreadyPlayed}+iw*(t/{seconds})*{scale}:ih:eval=frame";
|
|
var overlayBar = "overlay=W*0.05:H-h-H*0.05:shortest=1:enable='gt(t,0.1)'";
|
|
|
|
return
|
|
$"loop=-1:1[si],{generateGrayBar}[gray];{generateWhiteBar},format=rgba,colorchannelmixer=aa=0.9,{scaleToFullWidth}[sbar];[si][gray]{overlayBar}[sgray];[sgray][sbar]{overlayBar}";
|
|
}
|
|
|
|
return string.Empty;
|
|
}
|
|
}
|
|
|
|
public override FrameState NextState(FrameState currentState) => currentState;
|
|
}
|