Cammkv: Difference between revisions
Jump to navigation
Jump to search
OneArtPlease (talk | contribs) Created page with "=About= cammkv is an alternative (to camogm) camera internal harddisk video recorder that uses a Matroska container (camogm uses quicktime). Not all features from camogm ar..." |
OneArtPlease (talk | contribs) No edit summary |
||
| Line 5: | Line 5: | ||
Not all features from camogm are implemented yet. | Not all features from camogm are implemented yet. | ||
=Release= | |||
[[File:Cammkv_new.tar.gz]] | |||
==Install Instructions== | |||
First transfer the Cammkv_new.tar.gz file to your camera via FTP to an empty directory (the guide assumes you use /var/test) | |||
Then log in to the camera via ssh/telnet: | |||
cd /var/test | |||
tar -xzf Cammkv_new.tar.gz | |||
= | define variables | ||
export LD_LIBRARY_PATH=/var/test | |||
export LIBQUICKTIME_PLUGIN_DIR=/var/test | |||
start cammkv as | |||
./cammkv cammkv.pipe | |||
Login on another terminal (ssh/telnet) and do: | |||
cd /var/test | |||
echo 'debuglev=3' >cammkv.pipe | |||
You MUST set prefix: | |||
echo 'prefix=/var/hdd/' >cammkv.pipe | |||
Set output format for video | |||
echo 'format=mov' >cammkv.pipe or | |||
echo 'format=mkv' >cammkv.pipe (used by default) | |||
You can on/off audio if need | |||
echo 'audio=off' >cammkv.pipe or | |||
echo 'audio=on' >cammkv.pipe | |||
start recording | |||
echo 'start' >cammkv.pipe | |||
stop recording | |||
echo 'stop' >cammkv.pipe | |||
=Source= | =Source= | ||
[[File:Cammkv-0.9.0.tar.gz]] | [[File:Cammkv-0.9.0.tar.gz]] | ||
Latest revision as of 14:15, 17 October 2011
About
cammkv is an alternative (to camogm) camera internal harddisk video recorder that uses a Matroska container (camogm uses quicktime).
Not all features from camogm are implemented yet.
Release
Install Instructions
First transfer the Cammkv_new.tar.gz file to your camera via FTP to an empty directory (the guide assumes you use /var/test)
Then log in to the camera via ssh/telnet:
cd /var/test tar -xzf Cammkv_new.tar.gz
define variables
export LD_LIBRARY_PATH=/var/test export LIBQUICKTIME_PLUGIN_DIR=/var/test
start cammkv as
./cammkv cammkv.pipe
Login on another terminal (ssh/telnet) and do:
cd /var/test echo 'debuglev=3' >cammkv.pipe
You MUST set prefix:
echo 'prefix=/var/hdd/' >cammkv.pipe
Set output format for video
echo 'format=mov' >cammkv.pipe or echo 'format=mkv' >cammkv.pipe (used by default)
You can on/off audio if need
echo 'audio=off' >cammkv.pipe or echo 'audio=on' >cammkv.pipe
start recording
echo 'start' >cammkv.pipe
stop recording
echo 'stop' >cammkv.pipe