mirror of https://github.com/ErsatzTV/ErsatzTV.git
8 changed files with 65 additions and 6 deletions
@ -0,0 +1,14 @@
@@ -0,0 +1,14 @@
|
||||
using ErsatzTV.FFmpeg.State; |
||||
|
||||
namespace ErsatzTV.FFmpeg.Filter.Qsv; |
||||
|
||||
public class OverlayQsvFilter : OverlayFilter |
||||
{ |
||||
public OverlayQsvFilter(WatermarkState watermarkState, FrameSize resolution) : base(watermarkState, resolution) |
||||
{ |
||||
} |
||||
|
||||
public override FrameState NextState(FrameState currentState) => currentState; |
||||
|
||||
public override string Filter => $"overlay_qsv={Position}"; |
||||
} |
||||
Loading…
Reference in new issue