Änderungen

Zur Navigation springen Zur Suche springen
K
Zeile 74: Zeile 74:     
=== Script zur Installation ===
 
=== Script zur Installation ===
<blockquote>
+
<blockquote><syntaxhighlight lang="shell">
 +
#!/bin/sh
    +
opkg update
 +
opkg install kmod-video-uvc
 +
opkg install mjpg-streamer
 +
opkg install mjpg-streamer-input-uvc
 +
opkg install mjpg-streamer-output-http
 +
 +
mkdir -p  /www/webcam/
 +
 +
IP=$(/sbin/uci get network.lan.ipaddr)
 +
 +
cat <<EOF >/www/webcam/index.html
 +
<html>
 +
  <head>
 +
    <title>MJPG-Streamer - Stream Example</title>
 +
  </head>
 +
  <body>
 +
    <center>
 +
      <img src="http://${IP}:8080?action=stream" />
 +
    </center>
 +
  </body>
 +
</html>
 +
EOF
 +
 +
cat <<EOF >/etc/config/mjpg-streamer
 +
config mjpg-streamer 'core'
 +
option enabled '1'
 +
option input 'uvc'
 +
option output 'http'
 +
option device '/dev/video0'
 +
option resolution '1024x768'
 +
option yuv '0'
 +
option quality '80'
 +
option fps '5'
 +
option led 'auto'
 +
option www '/www/webcam'
 +
option port '8080'
 +
#option listen_ip '192.168.1.1'
 +
#option username 'openwrt'
 +
#option password 'openwrt'
 +
EOF
 +
 +
/etc/init.d/mjpg-streamer start
 +
 +
HOSTNAME=$(/sbin/uci get ffwizard.settings.hostname)
 +
 +
/sbin/uci add_list ffwizard.olsr.service='http://${IP}:80/webcam/|tcp|Webcam auf ${HOSTNAME}'
 +
</syntaxhighlight>
    
</blockquote>
 
</blockquote>
 
[[Kategorie:Howto]]
 
[[Kategorie:Howto]]
98

Bearbeitungen

Navigationsmenü