<div dir="auto">The RTC in WebRTC stands for "real time communication". The protocol and browser APIs are not designed for VOD playback. You can use it as a transport protocol, but then you'll need to use custom signalling for playback controls and do them on the server.<div dir="auto"><br></div><div dir="auto">If you want to do what youtube does, you should use the HTML5 APIs: <a href="https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Client-side_web_APIs/Video_and_audio_APIs">https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Client-side_web_APIs/Video_and_audio_APIs</a></div><div dir="auto"><br></div><div dir="auto">There's nothing gstreamer-related here except maybe while generating the media files.<br><div dir="auto"><div dir="auto"><br></div><div dir="auto">Cheers,</div><div dir="auto">Nirbheek</div></div></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, 11 Nov, 2021, 11:20 marc lievens, <<a href="mailto:mark.lievens@gmail.com">mark.lievens@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi, <div><br><div>I still have to take a deeper look at webrtc,</div><div>But is this protocol not more  used for live steaming?</div><div>I want user interaction like jumping around and rate changes and stepping through and offcouse transcoding on the VOD.</div><div><br></div><div>cheers marc</div><div><br></div></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Op zo 7 nov. 2021 om 14:49 schreef Nirbheek Chauhan <<a href="mailto:nirbheek.chauhan@gmail.com" target="_blank" rel="noreferrer">nirbheek.chauhan@gmail.com</a>>:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On Sun, Nov 7, 2021 at 2:15 PM marc lievens via gstreamer-devel<br>
<<a href="mailto:gstreamer-devel@lists.freedesktop.org" target="_blank" rel="noreferrer">gstreamer-devel@lists.freedesktop.org</a>> wrote:<br>
> What is the best video and communication protocol that I can use to playback and send video to a  browser<br>
><br>
<br>
Since this is VOD, i.e., the video is already stored on a server<br>
somewhere, the best way is likely to use standard <video> tags. The<br>
browser's media controls support playback at varying rates, seeking,<br>
pause, play, etc.<br>
<br>
If the video is not statically available (as a single mp4 or webm<br>
file, or split chunks), then you will need to do all media control<br>
server-side and send a continuous stream to the browser over webrtc<br>
(sounds like you are already doing this for playback). This is a lot<br>
more expensive w.r.t. hardware requirements since you need to<br>
transcode the stream.<br>
<br>
Cheers,<br>
Nirbheek<br>
</blockquote></div>
</blockquote></div>