Re: [streams] Real time source and skipping (#383)

I think this can be implemented via a Transform stream that throws away frames that are behind real-time.  So you would do something like

```
  source.pipeThrough(realTimeFilterTransform).pipeTo(sink);
```

A transform could also be made to re-encode stale frames to play through them quickly instead of dropping them.  This would have to be encoding-specific, though.

---
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/streams/issues/383#issuecomment-126343716

Received on Thursday, 30 July 2015 14:17:11 UTC