Page 1 of 1

PV-143

Posted: Tue Apr 06, 2010 2:24 am
by JungleGeorge
My system recognizes the PV-143 card correctly:

find /dev -name video*

Code: Select all

/dev/video0
/dev/.udev/db/video4linux:video0
/dev/.udev/db/video4linux:vbi0
lspci -v | grep Multimedia

Code: Select all

01:07.0 Multimedia video controller: Brooktree Corporation Bt878 Video Capture (rev 11)
01:07.1 Multimedia controller: Brooktree Corporation Bt878 Audio Capture (rev 11)
lsmod | grep bt

Code: Select all

bttv                  111669  0 
v4l2_common            15431  1 bttv
videodev               34361  2 bttv,v4l2_common
ir_common              38875  1 bttv
i2c_algo_bit            5028  1 bttv
videobuf_dma_sg        10782  1 bttv
videobuf_core          16356  2 bttv,videobuf_dma_sg
btcx_risc               3720  1 bttv
tveeprom               11102  1 bttv
The camera:
* Q-See QSB550SR CCTV camera
* Works, when connected to a NTSC TV via the RCA Video input.
* Currently connected to the first port on the PV-143

In ZoneMinder:
Source Type = Local
Function = Record
Device Path = /dev/video
Capture Method = Video for Linux version 2
Device Channel = 0
Device format = NTSC
Capture Palette = RGB24
Capture Width (pixels) = 640
Capture Height (pixels) = 480
On the ZoneMinder Console:
Source /dev/video(0) is red in color.

What am I doing wrong?

Posted: Thu Apr 08, 2010 6:23 pm
by JungleGeorge
I did restart ZoneMinder.
I reboot the system.
Still have the same problem.

Posted: Thu Apr 08, 2010 9:49 pm
by kwire
Did you try Device Path = /dev/video0 ?

(but don't put the question mark on the line... :) )

Keith

Posted: Thu Apr 08, 2010 9:51 pm
by whatboy

Code: Select all

Source /dev/video(0)
Should be

Code: Select all

Source /dev/video0

Posted: Thu Apr 08, 2010 10:38 pm
by JungleGeorge
Yes, thank you.

It should be "Source /dev/video0"
and the user "www-data" should be added to the "video" group

Code: Select all

usermod  -a  -G    video    www-data
This will ensure that the user "www-data" can read/write the "/dev/video0"

Also, thanks to Curtis at Bluecherry for these suggestions.