blob: 00525e0eedd9433bee6ee58361e0318da3d6081a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<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>
|