速報APP / 通訊 / RaspberryPi Camera Viewer

RaspberryPi Camera Viewer

價格:免費

更新日期:2016-07-27

檔案大小:13M

目前版本:4.2

版本需求:Android 4.1 以上版本

官方網站:http://bigdotsoftware.pl

Email:bigdotsoftware@bigdotsoftware.pl

聯絡地址:ul. Strzelcow 42/7, 81-586 Gdynia, Poland

RaspberryPi Camera Viewer(圖1)-速報App

Application has been originally designed to view camera stream from hardware Raspberry Pi cameras. To build the stream, gstreamer has been chosen as the best open source multimedia framework. During the time number of desired features and configuration options grow, so application is morphing into gstreamer viewer. In current version you are able to build any pipeline (in gstreamer format) and view it on any Android device

Starting from version 4.0 you can create your own plugins. More details on github: https://github.com/pzuk/raspberry-pi-camera-viewer-plugins/

RaspberryPi Camera Viewer(圖2)-速報App

You can also easily embed RaspberryPi Camera Viewer to your Android application

More details on github: https://github.com/pzuk/raspberry-pi-camera-viewer-embedded-example

RaspberryPi Camera Viewer(圖3)-速報App

Current version is backward compatible with previous versions, so if you still want to watch stream from your RaspberryPi only, please follow points below:

1. Connect RaspberryPi Camera board

RaspberryPi Camera Viewer(圖4)-速報App

2. ssh to your Raspberry Pi and launch:

raspivid -n -t 0 -h 200 -w 320 -fps 25 -hf -b 2000000 -o - | gst-launch-1.0 -v fdsrc ! h264parse ! rtph264pay config-interval=1 pt=96 ! gdppay ! tcpserversink host=192.168.0.20 port=5000

RaspberryPi Camera Viewer(圖5)-速報App

where host=192.168.0.20 should be replaced by your RaspberryPI IP address.

Low latency version:

RaspberryPi Camera Viewer(圖6)-速報App

1. Connect RaspberryPi Camera board

2. ssh to your Raspberry Pi and launch:

RaspberryPi Camera Viewer(圖7)-速報App

raspivid -t 0 -hf -n -h 480 -w 640 -fps 15 -o - | nc -l -p 5001

3. Open RaspberryPi Camera Viewer and launch pipeline:

RaspberryPi Camera Viewer(圖8)-速報App

tcpclientsrc host=192.168.0.20 port=5001 ! queue2 max-size-buffers=1 ! decodebin ! autovideosink sync=false

More information about low latency experiment with Android, Raspberry Pi and Gstreamer: https://pzuk.wordpress.com/2015/12/29/android-raspberry-pi-camera-low-latency-via-gstreamer/