I want to stream a video encoded with rav1e to a browser. rav1e will package the video in ivf packets.
When I embed a video file inside html, the player does not work properly:
...
<video controls>
<source src="myvideo.ivf" type="video/mp4; codecs=av01" />
</video>
...
Controls are showing, but the video is not loaded properly:
I assume this is due to the unexpected ivf-package format. Is there a way to display the video stream without repackaging it?
