You are not logged in.
Pages: 1
Hello.
I got recently a Canon MV700 camcorder. But, I read on linux1394.org that this model couldn't be used with libavc :
http://www.linux1394.org/view_device.php?id=898
As I am using gnome, I wanted to use Kino, but the packaged version don't find my camcorder ?!
Any idea to help me ?
Thanks !
Last edited by jolinfire (2008-02-13 17:03:21)
Offline
i don't know if it will be any help but what does dmesg say
Offline
When I launch Kino :
>> Left Editor
>> Starting Capture
>> AV/C Activée
>>> Using iec61883 capture
>>> iec61883Reader::StartThread on port 0
Offline
sorry i mean in a terminal try the command dmesg
$ dmesg
you can also do
$ sudo tail -f /var/log/kernel.log
and unplug+plug in your camera. It will show you what the kernel really thinks about your camera.
Your camera is firewire right?
do you have these modules loaded
$lsmod |grep 1394
raw1394 23932 0
dv1394 16988 0
ohci1394 28848 1 dv1394
ieee1394 80568 3 raw1394,dv1394,ohci139
sudo modprobe [module_name] if you don't see it.
if thats all good, check to see if you have /dev/raw1394
$ ls -l /dev/raw1394
crw-rw---- 1 root video 171, 0 2008-02-06 22:50 /dev/raw1394
if you've got that, check to see if you're in the video group.
$ groups
sudo gpasswd -a username video to add yourself to the group. You'll need to sing out and back in.
[ says here your camera works great: http://www.linux1394.org/hcl.php?class_id=3 ]
Offline
Try to unload all modules "firewire-*" and "*1394". Then reload raw1394 and ohci1394. This is what I had to do to make it work.
Offline
sorry i mean in a terminal try the command dmesg
$ dmesg
you can also do
$ sudo tail -f /var/log/kernel.log
and unplug+plug in your camera. It will show you what the kernel really thinks about your camera.
As I bought a new fw cable
Here is kernel output :
Feb 13 17:51:24 fredo-arch ieee1394: Host added: ID:BUS[0-00:1023] GUID[00308d00220d265f]
Your camera is firewire right?
do you have these modules loaded$lsmod |grep 1394 raw1394 23932 0 dv1394 16988 0 ohci1394 28848 1 dv1394 ieee1394 80568 3 raw1394,dv1394,ohci139
sudo modprobe [module_name] if you don't see it.
$ lsmod | grep 1394
video1394 18536 0
raw1394 26248 0
ohci1394 31412 1 video1394
ieee1394 91352 3 video1394,raw1394,ohci1394
if thats all good, check to see if you have /dev/raw1394
$ ls -l /dev/raw1394 crw-rw---- 1 root video 171, 0 2008-02-06 22:50 /dev/raw1394
if you've got that, check to see if you're in the video group.
$ groups
sudo gpasswd -a username video to add yourself to the group. You'll need to sing out and back in.
[ says here your camera works great: http://www.linux1394.org/hcl.php?class_id=3 ]
ls -l /dev/raw1394
crw-rw---- 1 root video 171, 0 fév 13 2008 /dev/raw1394
My account has access to video account.
$ groups
sys adm disk lp wheel network video audio optical storage scanner camera users stb-admin
I tried also :
sudo chmod a+rw /dev/raw1394
But no luck !
$ dvgrab
Error: no camera exists
/me is disappointed !
Offline
Pages: 1