On 24-01-2019 08:18 PM, Paweł Wegner wrote:
>
> This fixes seeking when I have video playback sped up in ffplay like this:
> ffplay -vf "setpts=0.5 * PTS" -af "atempo=2" input
The better way to run this is
ffplay -vf "setpts=0.5 * (PTS - STARTPTS)" -af "atempo=2" input
Gyan