After trying the instructions from the camera board documentation http://www.raspberrypi.org/archives/tag/camera-board I can't view the stream of my camera RPi.
Bellow is the description of all my tests
- I installed netcat on my Raspberry Pi
Code: Select all
sudo apt-get install mplayer netcat
- On my PC I opened the command line interpreter cmd.exe and start to reading the stream with
Code: Select all
c:\netcat\nc.exe -L -p 5001 | c:\mplayer\mplayer.exe -fps 31 -cache 1024 -
- I tried Netcat alone with the command
Code: Select all
c:\netcat\nc.exe -L -p 5001
The safety windows appear to ask autorisation for nc.exe. I validated. Next I open a second command line interpreter cmd.exe and type telnet 192.168.0.5 5001. Bi-directional connection work fine
- Start again to read the stream and the response is:
Seem to be work fineMPlayer sherpya-r35968+39eaacf-4.6 (C) 2000-2013 MPlayer Team
Playing
Reading from stdin
Cachefill: 0.00% (0 bytes)
- I tried MPlayer alone with the command
Code: Select all
c:\mplayer.exe -fps 31 video.h264 (previously recorder with the command: raspivid -o video.h264 -t 10000)
- I started the camera board with
Code: Select all
raspivid -t 10000 -o – | nc 192.168.0.5 5001
I suspected that my softwares Netcat and/or MPlayer is not suitable with my Windows 7 - 64 bits
I found this topic http://www.recantha.co.uk/blog/?p=4128 but my CPU is inter Core(TM) i7
I dowloaded MPlayer MPUI 1.2.38 (march 18th 2013) http://www.x64bitdownload.com/downloads ... edxpn.html and netcat 1.12 http://eternallybored.org/misc/netcat/
I started again to read the stream with the command
Code: Select all
c:\netcat\nc64.exe -L -p 5001 | c:\mplayer\mplayer.exe -vo direct3d -fps 31 -cache 1024 -
I am stuck
Can you have a idea why these basics command don't work ?
Thanks for your help