/* gstreamer */

This commit is contained in:
Astro 2015-11-16 01:11:18 +00:00
parent 20e6974553
commit 8e05faa01c
1 changed files with 12 additions and 2 deletions

14
TV.mw
View File

@ -40,12 +40,22 @@ Siehe: http://kodi.wiki/view/Advancedsettings.xml
== H.264-Streaming von Bildschirminhalten ==
=== Lokal ===
=== ffmpeg ===
==== Lokal ====
: <source lang=bash>(echo -ne 'HTTP/1.0 200 OK\r\nContent-type: video/mkv\r\n\r\n'; ffmpeg -f x11grab -framerate 4 -video_size 1440x900 -i :0.0 -vf format=pix_fmts=yuv420p -f matroska -vcodec libx264 -preset ultrafast -tune zerolatency -threads 2 -b:v 1000k - ) | nc -lvvp 65067</source>
=== RaspberryPI am TV ===
==== RaspberryPI am TV ====
: <source lang=bash>DISPLAY=:0 omxplayer --video_fifo 0 --video_queue 0 --threshold 0 http://172.22.99.110:65067/</source>
=== gstreamer ===
==== Lokal ====
: <source lang=bash>gst-launch-1.0 ximagesrc ! videoconvert ! x264enc speed-preset=fast subme=1 bitrate=8000 interlaced=true key-int-max=2 sync-lookahead=0 ! matroskamux ! tcpserversink port=65067</source>
==== RaspberryPI am TV ====
: <source lang=bash>DISPLAY=:0 omxplayer --video_fifo 0 --video_queue 0 --threshold 0 tcp://172.22.99.110:65067/</source>
== Odroid am TV ==
; Siehe auch