Differenze tra le versioni di "Tutorials/arduino-yun-videorecorder-101"
(16 versioni intermedie di un altro utente non mostrate) | |||
Riga 1: | Riga 1: | ||
− | + | == Arduino Yun Basics == | |
− | + | This tutorial covers a little introduction to video recording with Arduino Yun and a USB webcam. No Arduino code in this first part, only some linux embedded configuration on the awesome Arduino Yun board! | |
− | + | I assume that the reader has a pc or a mac (named Bob) and an Arduino Yun, named Arduino. Moreover, I suppose the reader is quite familiar with the computer in general and know a little bit of shell/linux commands. In particular I in my case Bob is amac os/x and, and everything is starting with an iTerm2 session where everything begin with a dollar sign ($).. | |
− | arduino | + | === Before starting === |
+ | Assure we have: | ||
+ | * Installed and working [http://arduino.cc/en/main/software#toc3 Arduino Ide version 1.5.6-r2]. | ||
+ | * Configured Arduino Yun board. See [http://arduino.cc/en/Guide/ArduinoYun Basic Arduino Yun wireless configuration]. | ||
− | + | Install some useful packages for video and webcam: | |
− | + | <pre> | |
+ | ~ opkg update | ||
+ | ~ opkg install kmod-video-uvc kmod-video-pwc kmod-input-core | ||
+ | ~ opkg install libjpeg fswebcam mjpg-streamer | ||
+ | ~ opkg install ffmpeg ffserver | ||
+ | ~ opkg install python-openssl | ||
+ | </pre> | ||
− | + | for ps3 eye (that is a gspca-ov534 type camera): | |
− | + | <pre> | |
− | + | ~ opkg update | |
+ | ~ opkg install kmod-input-core | ||
+ | ~ opkg install kmod-video-gspca-core | ||
+ | ~ opkg install kmod-video-gspca-ov534 | ||
+ | </pre> | ||
− | + | == With standard usb uvc cam == | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | To see the stream (from Arduino to Bob): | |
− | + | ~ mjpg_streamer -i "input_uvc.so -d /dev/video0 -r 640x480" -o "output_http.so -p 8080 -w /mnt/sda1" | |
− | + | Then open "http://arduino.local:8080/?action=stream" in a brower (inside Bob) | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | mjpg_streamer -i "input_uvc.so -d /dev/video0 -r 640x480" -o "output_http.so -p 8080 -w /mnt/sda1" | ||
− | |||
− | |||
− | |||
− | |||
− | + | To shoot a photo (on Arduino): | |
− | + | ~ fswebcam test.png | |
− | + | Or | |
− | + | ~ ffmpeg -f video4linux2 -i /dev/video0 -vframes 1 test.jpeg | |
− | + | and to see the photo via http request from Bob, just start a | |
− | + | ~ python -m SimpleHTTPServer | |
− | + | in the directory where the photo is saved and access it by browsing (from Bob) to "192.168.1.13/test.png" | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | == References == | |
+ | * [http://forum.arduino.cc/index.php?topic=188690.0 Arduino Forum - Guide to Setup Streaming Web Cam on the Yun] | ||
+ | * [http://neuroballs.com/2014/01/how-to-build-a-arduino-yun-powered-cat-camera/ How-to build an Arduino Yun powered Camera] | ||
+ | * [https://learn.adafruit.com/wireless-security-camera-arduino-yun?view=all Adafruit - Wireless Security Camera with Arduino Yun] | ||
+ | * [http://latanadelgurzo.blogspot.it/2012/11/webcam-in-streaming-con-openwrt.html La tana del gurzo - Webcam streaming con OpenWRT ] | ||
+ | * [http://dev.mikamai.com/post/73613525813/arduino-yun-social-photo-camera Mikamai dev-blog - Arduino Yun Social photo camera ] | ||
+ | * [http://dev.mikamai.com/post/76945627390/you-cant-touch-this-an-evil-arduino-based-alarm Mikamai dev-blog - You can't touch this, Arduino based alarm ] | ||
− | + | [[Category:AugMilano]] | |
− | + | [[Category:arduino]] | |
− | + | [[Category:tutorial]] | |
− | |||
− | |||
− | |||
− |
Versione attuale delle 14:42, 14 feb 2016
Arduino Yun Basics
This tutorial covers a little introduction to video recording with Arduino Yun and a USB webcam. No Arduino code in this first part, only some linux embedded configuration on the awesome Arduino Yun board!
I assume that the reader has a pc or a mac (named Bob) and an Arduino Yun, named Arduino. Moreover, I suppose the reader is quite familiar with the computer in general and know a little bit of shell/linux commands. In particular I in my case Bob is amac os/x and, and everything is starting with an iTerm2 session where everything begin with a dollar sign ($)..
Before starting
Assure we have:
- Installed and working Arduino Ide version 1.5.6-r2.
- Configured Arduino Yun board. See Basic Arduino Yun wireless configuration.
Install some useful packages for video and webcam:
~ opkg update ~ opkg install kmod-video-uvc kmod-video-pwc kmod-input-core ~ opkg install libjpeg fswebcam mjpg-streamer ~ opkg install ffmpeg ffserver ~ opkg install python-openssl
for ps3 eye (that is a gspca-ov534 type camera):
~ opkg update ~ opkg install kmod-input-core ~ opkg install kmod-video-gspca-core ~ opkg install kmod-video-gspca-ov534
With standard usb uvc cam
To see the stream (from Arduino to Bob):
~ mjpg_streamer -i "input_uvc.so -d /dev/video0 -r 640x480" -o "output_http.so -p 8080 -w /mnt/sda1"
Then open "http://arduino.local:8080/?action=stream" in a brower (inside Bob)
To shoot a photo (on Arduino):
~ fswebcam test.png
Or
~ ffmpeg -f video4linux2 -i /dev/video0 -vframes 1 test.jpeg
and to see the photo via http request from Bob, just start a
~ python -m SimpleHTTPServer
in the directory where the photo is saved and access it by browsing (from Bob) to "192.168.1.13/test.png"
References
- Arduino Forum - Guide to Setup Streaming Web Cam on the Yun
- How-to build an Arduino Yun powered Camera
- Adafruit - Wireless Security Camera with Arduino Yun
- La tana del gurzo - Webcam streaming con OpenWRT
- Mikamai dev-blog - Arduino Yun Social photo camera
- Mikamai dev-blog - You can't touch this, Arduino based alarm