mirror of
https://github.com/servo/servo
synced 2026-05-09 08:32:31 +02:00
18 lines
452 B
HTML
18 lines
452 B
HTML
<video controls>
|
|
<source src="http://localhost:8080/" type="video/ogg">
|
|
</video>
|
|
|
|
<p>Start the video stream with:</p>
|
|
|
|
<pre>
|
|
gst-launch-1.0 servosrc url=https://mrdoob.neocities.org/018/ \
|
|
! videorate \
|
|
! video/x-raw\(memory:GLMemory\),framerate=50/1,width=512,height=256 \
|
|
! glcolorconvert \
|
|
! gldownload \
|
|
! videoflip video-direction=vert \
|
|
! theoraenc \
|
|
! oggmux \
|
|
! tcpserversink host=127.0.0.1 port=8080
|
|
</pre>
|