Hi,
how can I get a cam stream in ascii (local, on the RPi)?
BR
Michael
Code: Select all
sudo apt-get install mplayer
raspivid -t 10000 -p 0,0,320,200 -w 320 -h 200 -o - |mplayer -cache 1024 -fps 30 -vo caca -

Code: Select all
raspivid -t 1000 -o - | tr -dc '[:print:]' |headAny idea?Cache not responding! [performance issue]
VO: [aa] cannot open /dev/ccsa00 for writing, so we'll use linux driver
X Error of failed request: BadName (named color or font does not exist)
Major opcode of ailed request: 45 (X_OpenFont)
Serial number of failed request: 7
Parent process disappeared, exiting cache process.
libaa want's a font it can't find. The fix would be to install that font - but it's not telling you which one ...X Error of failed request: BadName (named color or font does not exist)
Code: Select all
raspivid -t 999999 -p 0,0,320,200 -w 320 -h 200 -o - |mplayer -cache 1024 -nosub -fps 31 -vo aa:driver=curses -quiet -monitoraspect 0.5 -
Works without the monitoraspect option but the ascii outut is quite small then.Unknown option on the command line: -monitoraspect=0.5
Error parsing option on the command line: -monitoraspect=0.5
MPlayer svn r34540 (Debian), built with gcc-4.6 (C) 2000-2012 Mplayer Team
Code: Select all
raspivid -t 999999 -p 0,0,320,200 -w 320 -h 200 -o - |mplayer -cache 1024 -nosub -fps 31 -vo aa:driver=curses -quiet -monitoraspect 0.5 -