diff --git a/apps/playground/src/video-pipeline-demo.ts b/apps/playground/src/video-pipeline-demo.ts index b48c584..0209649 100644 --- a/apps/playground/src/video-pipeline-demo.ts +++ b/apps/playground/src/video-pipeline-demo.ts @@ -205,8 +205,8 @@ export class VideoPipelineDemo extends LitElement { EbmlCluster | undefined, ] ), - filter((c) => c[1]?.timestamp! >= seekTime), - map((c) => c[1]!) + filter((c) => c[1]?.timestamp! > seekTime), + map((c) => c[0] ?? c[1]!) ); };