18
27

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

らずぱい motionEye (Web UIベースのカメラサーバ)

Last updated at Posted at 2016-07-30

(2017-01-27追記) CSIカメラ(mmal service 16.1) と USBカメラ(USB 2.0 PC Camra)のカメラ2台にて。
image.png

image.png

概要

  • motionEyeというのをラズパイに入れてみる。

  • 機能 (Features)

    • ウェッブベースで、モバイル・タブレットフレンドリーな、ユーザインタフェース
    • らずぱいのカメラモジュール(CSI)や、多くのUSBカメラとの互換性
    • IPネットワークカメラ対応
    • スケジュール動体検出で、eメールでお知らせ。
    • JPEG静止画、AVIで動画保存。
    • 低速度撮影(timelapse)動画
    • グーグルドライブやドロップボックスへファイルのアップロード

    # だそうです。全機能は確認してません。

  • スクリーンショット

環境

  • Raspberry Pi 3

  • 2016-05-27-raspbian-jessie-lite.img

  • USB2.0 Webカメラ BUFFALOのやつ.

  • らずぱいのカメラモジュール使う場合は、bcm2835-v4l2/etc/modulesに追加しておく

grep bcm2835-v4l2 /etc/modules || echo bcm2835-v4l2 | sudo tee -a /etc/modules

- (2017-01-27更新) Raspberry Pi 2 + `2017-01-11-raspbian-jessie-lite.img` + USBカメラ + CSIカメラにて動作確認。

## 手順

1. いつもの (`sudo apt-get update; sudo apt-get upgrade; sudo raspi-config` )


2. motionEyeのインストール
    - [Install On Raspbian](https://github.com/ccrisan/motioneye/wiki/Install-On-Raspbian)にしたがって、インストール

    ```bash
    # 必要なパッケージ類のインストール 
sudo apt install -y python-pip python-dev curl libssl-dev libcurl4-openssl-dev libjpeg-dev libx264-142

    # motionのインストール
    # 2017-01-27: Raspbianのmotionいれて動くよ。
sudo apt install -y motion 

    # 2017-01-27: ↓でも動作確認済み
    # ffmpegのインストール
#wget https://github.com/ccrisan/motioneye/wiki/precompiled/ffmpeg_3.1.1-1_armhf.deb
#sudo dpkg -i ffmpeg_3.1.1-1_armhf.deb
    # motionのインストール.
#sudo wget https://github.com/ccrisan/motioneye/wiki/precompiled/motion-mrdave-raspbian -O /usr/local/bin/motion
#sudo chmod +x /usr/local/bin/motion
    
    # motioneyeのインストール
sudo pip install motioneye

    # motionの設定ファイル
sudo mkdir -p /etc/motioneye
sudo cp /usr/local/share/motioneye/extra/motioneye.conf.sample /etc/motioneye/motioneye.conf

    # motionのメディアディレクトリ
sudo mkdir -p /var/lib/motioneye
 
    # initスクリプトの追加、motionEyeサーバ起動.
sudo cp /usr/local/share/motioneye/extra/motioneye.systemd-unit-local /etc/systemd/system/motioneye.service
sudo systemctl daemon-reload
sudo systemctl enable motioneye
sudo systemctl start motioneye
systemctl status motioneye
    
    ##########################################
# motionEyeをアップグレードするとき。
#
sudo pip install motioneye --upgrade
sudo systemctl restart motioneye
  1. ブラウザからアクセス: http://<らずぱいのIP>:8765/

    • 初回ログイン
      Usename: admin
      Password: (なし)
    ポートの設定は、このへん。

pi@raspberrypi:~ $ cat /etc/motioneye/motioneye.conf | grep -i ^port
port 8765

<!--
![motionEye01.png](https://qiita-image-store.s3.amazonaws.com/0/75594/2cbd93ca-e783-af70-aefa-26af2472c5e3.png)
-->

4. `You have not configured any camera yet. Click here to add one...`
=> のメッセージをクリック => 認識されているカメラが出てくるので、選んで `[OK]`
![motionEye02.png](https://qiita-image-store.s3.amazonaws.com/0/75594/f3d13695-0624-2863-e0b0-cea3aaca7e60.png)

5. adminとuserのパスワードを設定しときましょう。
18
27
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
18
27

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?