Raspberry Pi に Webカメラ
ラズパイにウェブカメラを付けてみました。
こんな感じでブラウザでストリーミングされます!
(家族団らんの様子・・青いのがダイエット日記を書くお父ちゃん。)
やり方はこちらの記事を参考にさせて頂きました。
そして、外からも見られるようにしたかったので、ルータの設定でポート8081を開放しました。
設定ファイルでbasic認証がかけられます。
1 |
sudo vi /etc/motion/motion.conf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
############################################################ # Live Stream Server ############################################################ # The mini-http server listens to this port for requests (default: 0 = disabled) stream_port 8081 # Quality of the jpeg (in percent) images produced (default: 50) stream_quality 80 # Output frames at 1 fps when no motion is detected and increase to the # rate given by stream_maxrate when motion is detected (default: off) stream_motion off # Maximum framerate for stream streams (default: 1) stream_maxrate 30 # Restrict stream connections to localhost only (default: on) stream_localhost off # Limits the number of images per connection (default: 0 = unlimited) # Number can be defined by multiplying actual stream rate by desired number of seconds # Actual stream rate is the smallest of the numbers framerate and stream_maxrate stream_limit 0 # Set the authentication method (default: 0) # 0 = disabled # 1 = Basic authentication # 2 = MD5 digest (the safer authentication) stream_auth_method 1 # Authentication for the stream. Syntax username:password # Default: not defined (Disabled) stream_authentication ユーザ名:パスワード |
「stream_auth_method」 を 「1」にして、 「stream_authentication」 にユーザ名とパスワードを設定します。
(本当は、8081ポートを開放しない方法でやりたかったのですが、色々調べたけどよくわからず断念・・・)
直接 http://ipアドレス:8081 でアクセスすると表示されない場合があるとの情報をいくつか目にしました。その場合は、htmlファイルを置いて、<img srd=”http://ipアドレス:8081″> のように指定すると良いらしいです。
その方法で Home Made Garbage サイト内に、WPでページを作ってみました。(8081ポートはBasic認証がかかっているので、<img srd=”http://ユーザ名:パスワード@ipアドレス:8081″> という風に書きます。)
こんな感じで外からも家の様子が見られます!
Raspberry Pi で マインクラフトをしている長女ちゃん。
なかなかスムーズに動いています。負荷もそうでもないようです。
今度マイク付きのカメラを買って音声も拾えるようにしよう!ユーチューバーに憧れる長女ちゃん、マイクラのゲーム実況をやってみたいようです。
あと、カメラ起動と停止のボタンもつけようかとも思います。
そうそう、作業途中、外付けHDDが読み込めなくなるというトラブルに遭ったのですが、再起動したら元通りになりました・・・焦った。
長女ちゃんの小学校で桜が咲いていました!
GW初日、今日は北海道寒いです。キャラスポというイベントでふなっしーを見に行ったのですがすごい行列。会場内に居たなまはげとメロン熊に怖がって子どもたちはすぐに帰りたがる始末 😥
追記
その2:MJPG-streamer に変更
2016年6月6日 motion は結構遅延が大きいので、 MJPG-streamer に変更しました。
その1
2016年5月11日 raspi 蘇生後 の設定で何故か起動しなくなったので再設定しました。