Still can't get video to work or read the video error message. Where's the best place to post about problems with that script?
Edit: i've been trying to read the video error message. I can't catch the word luminence, which I think it always starts with, and then ERROR and I think the word mode? Its really impossible to read most of it. I've tried changing around various settings like the slow/fast/test parameter, and putting the camera in different video modes first, but no changes. I'd really like to get it working... Any ideas on what else I can try?
That would be in the scripting section in the thread where you got the script. So the error comes to the bottom console, not on top of the LCD? In that case the error is one of the few ones coded in the script.
It first tells you that you are monitoring "Channel: Luminance" for motion. This is not an error, it always does that. Then it checks for rec mode and outputs
"MDFB script ERROR:"
"Not in REC mode, exiting."
if you are in play mode or if the get_mode command on your camera doesn't work correctly.
Then it checks for video button and if you have a camera that has a video button (or if CHDK is configured incorrectly for your camera, but it isn't), it says
"MDFB script ERROR:"
"Incompatible camera! Try"
"MDFB VideoButtonModels"
"version."
Try this script (put it in a text file cammed modetest.bas) in each operating mode (play, rec, video) and see what it prints out:
@title modetest
V=get_video_button
if V=0 then print "No video button."
if V=1 then print "Cam has video button."
M=get_mode
if M=0 then print "Rec mode."
if M=1 then print "Play mode."
if M=2 then print "Video mode."
sleep 5000