
http://www.andrewkendall.com/pages/lear ... /index.php
I tried that and it created some files called video0 through video16, but when I rebooted and run camsource again it still reported the same error.Devices Configuration
Video4linux use the /dev/video* files, and the driver need one per camera.
ls -lad /dev/video* # produce a list of the video devices
If the video devices do not exist, you can create them with this shell script:
su
cd /dev
for ii in 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 ; do
mknod video$ii c 81 $ii # char-major-81-[0-16]
chown root.root video$ii # owned by root
chmod 600 video$ii # read/writable by root only
done
The important part is to make the proper special character files with the right major and minor numbers.
Users browsing this forum: No registered users and 1 guest