mirror of https://github.com/ErsatzTV/ErsatzTV.git
11 changed files with 47 additions and 16 deletions
@ -0,0 +1,8 @@
@@ -0,0 +1,8 @@
|
||||
namespace ErsatzTV.FFmpeg.Filter; |
||||
|
||||
public class AudioSetPtsFilter : BaseFilter |
||||
{ |
||||
public override string Filter => "asetpts=PTS-STARTPTS"; |
||||
|
||||
public override FrameState NextState(FrameState currentState) => currentState; |
||||
} |
@ -0,0 +1,8 @@
@@ -0,0 +1,8 @@
|
||||
namespace ErsatzTV.FFmpeg.Filter; |
||||
|
||||
public class VideoSetPtsFilter : BaseFilter |
||||
{ |
||||
public override string Filter => "setpts=PTS-STARTPTS"; |
||||
|
||||
public override FrameState NextState(FrameState currentState) => currentState; |
||||
} |
Loading…
Reference in new issue