Differenze tra le versioni di "Tutorials/arduino-yun-videorecorder-101"

Da WeMake Wiki.
Jump to navigation Jump to search
 
(14 versioni intermedie di un altro utente non mostrate)
Riga 1: Riga 1:
[[Category:internal]]
 
 
{{Arduino Yun Videorecorder 101}}
 
 
{{TOC limit}}
 
 
 
== Arduino Yun Basics ==
 
== Arduino Yun Basics ==
  
before starting, assure we have:
+
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!
 
 
installed and working arduino ide version 1.5.6-r2: http://arduino.cc/en/main/software#toc3
 
 
 
configuration: http://arduino.cc/en/Guide/ArduinoYun
 
 
 
let's become confident with the board
 
 
 
arduino.local does not always revole, safely to use  the ip number (192.168.240.1, for initial configuration).
 
  
see what is already mounted:
+
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 ($)..
    mount
 
  
see which distribution:
+
=== Before starting ===
    root@Arduino:~# cat /proc/version
+
Assure we have:  
    Linux version 3.8.3 (federico@smilzo) (gcc version 4.6.4 20121210 (prerelease) (Linaro GCC 4.6-2012.12) ) #8 Mon Aug 19 16:22:39 CEST 2013
+
* 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:
  
to log into the yun via ssh (from mac-osx shell):
+
<pre>
ssh root@192.168.1.13
+
    ~ 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):
    # install the video stuff on the yun
 
    opkg update
 
    opkg install kmod-video-uvc
 
    opkg install kmod-video-pwc
 
    opkg install kmod-input-core
 
    opkg install libjpeg
 
    opkg install fswebcam
 
    wget http://www.custommobileapps.com.au/downloads/mjpg-streamer.ipk
 
    opkg install mjpg-streamer.ipk
 
    opkg install ffmpeg
 
    opkg install ffserver
 
    opkg install python-openssl
 
    #---------------------------------------------------------------------
 
  
after each installation step, to see free space remained on the hard disk:
+
<pre>
 +
    ~ opkg update
 +
    ~ opkg install kmod-input-core
 +
    ~ opkg install kmod-video-gspca-core
 +
    ~ opkg install kmod-video-gspca-ov534
 +
</pre>
  
    root@Arduino:~# df -h
+
== With standard usb uvc cam ==
    Filesystem                Size      Used Available Use% Mounted on
 
    rootfs                    7.5M      4.9M      2.6M  66% /
 
    /dev/root                7.0M      7.0M        0 100% /rom
 
    tmpfs                    29.9M    372.0K    29.5M  1% /tmp
 
    tmpfs                  512.0K        0    512.0K  0% /dev
 
    /dev/mtdblock3            7.5M      4.9M      2.6M  66% /overlay
 
    overlayfs:/overlay        7.5M      4.9M      2.6M  66% /
 
    /dev/sda1                7.4G    848.0K      7.4G  0% /mnt/sda1
 
  
see if python server is running (from the os/x),
+
To see the stream (from Arduino to Bob):
after running "python -m SimpleHTTPServer" (on the yun via ssh):
+
    ~ mjpg_streamer -i "input_uvc.so -d /dev/video0 -r 640x480" -o "output_http.so -p 8080 -w /mnt/sda1"
    nmap 192.168.1.13
+
Then open "http://arduino.local:8080/?action=stream" in a brower (inside Bob)
 
      
 
      
    Starting Nmap 6.40 ( http://nmap.org ) at 2014-04-30 13:03 CEST
+
To shoot a photo (on Arduino):
     Nmap scan report for 192.168.1.13
+
     ~ fswebcam test.png
    Host is up (0.19s latency).
+
Or
     Not shown: 995 closed ports
+
     ~ ffmpeg -f video4linux2 -i /dev/video0 -vframes 1 test.jpeg
    PORT    STATE SERVICE
+
and to see the photo via http request from Bob, just start a
    22/tcp  open  ssh
+
     ~ python -m SimpleHTTPServer
    53/tcp  open  domain
+
in the directory where the photo is saved and access it by browsing (from Bob) to "192.168.1.13/test.png"
    80/tcp  open  http
 
     443/tcp  open  https
 
    8000/tcp open  http-alt
 
   
 
    Nmap done: 1 IP address (1 host up) scanned in 39.77 seconds
 
 
 
== con la logitech ==
 
 
 
to see the stream (from the os/x):
 
open "http://arduino.local:8080/?action=stream" in a browser
 
after running (on the yun via ssh):
 
    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 the yun via ssh):
 
    fswebcam test.png
 
 
 
  
== references ==
+
== 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 ]
  
http://forum.arduino.cc/index.php?topic=188690.0
+
[[Category:AugMilano]]
http://dev.mikamai.com/post/73613525813/arduino-yun-social-photo-camera
+
[[Category:arduino]]
http://dev.mikamai.com/post/76945627390/you-cant-touch-this-an-evil-arduino-based-alarm
+
[[Category:tutorial]]
https://github.com/amicojeko/YouCantTouchThis
 
http://neuroballs.com/2014/01/how-to-build-a-arduino-yun-powered-cat-camera/
 
https://learn.adafruit.com/wireless-security-camera-arduino-yun?view=all
 
http://latanadelgurzo.blogspot.it/2012/11/webcam-in-streaming-con-openwrt.html
 

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:

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