LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu
User Name
Password
Ubuntu This forum is for the discussion of Ubuntu Linux.

Notices


Reply
  Search this Thread
Old 08-05-2016, 07:22 PM   #1
Fixit7
Senior Member
 
Registered: Mar 2014
Location: El Lago, Texas
Distribution: Ubuntu_Mate 16.04
Posts: 1,374

Rep: Reputation: 169Reputation: 169
Computer does not detect camcorder


I connected a Canon HF R700 to my computer via a USB connection.

Computer is not detecting it ?

Do I need an additional program ?
 
Old 08-06-2016, 01:05 AM   #2
tofino_surfer
Member
 
Registered: Aug 2007
Posts: 483

Rep: Reputation: 153Reputation: 153
Why do you think your computer is not detecting the camcorder ?

Have you checked kernel messages with dmesg | tail when you plug it in ?

Does it show up in the listing with 'lsusb' ? lsusb shows all connected usb devices.
 
Old 08-08-2016, 11:20 PM   #3
Fixit7
Senior Member
 
Registered: Mar 2014
Location: El Lago, Texas
Distribution: Ubuntu_Mate 16.04
Posts: 1,374

Original Poster
Rep: Reputation: 169Reputation: 169
When there is no icon showing that something new is connected, I figure it is not detecting the camera.

From my manual, it does have wifi capability.

Since it also has a cable to connect camera to computer, it should be able to transfer movies and pics to the computer.

Quote:
dmesg | tail
[ 38.993318] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[ 38.999695] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[ 40.231324] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[ 40.527934] r8169 0000:01:00.0 enp1s0: link up
[ 40.527949] IPv6: ADDRCONF(NETDEV_CHANGE): enp1s0: link becomes ready
[ 41.510654] usblp1: removed
[ 41.556524] usblp 2-5:1.1: usblp1: USB Bidirectional printer dev 5 if 1 alt 0 proto 2 vid 0x04A9 pid 0x1760
[ 41.616340] usblp0: removed
[ 41.622829] usblp 2-4:1.0: usblp0: USB Bidirectional printer dev 4 if 0 alt 0 proto 2 vid 0x04F9 pid 0x0045
[ 60.640027] Non-volatile memory driver v1.3
I can take the memory card out and get movies and pics but do not want to wear that out.

Last edited by Fixit7; 08-08-2016 at 11:21 PM.
 
Old 08-09-2016, 01:25 PM   #4
tofino_surfer
Member
 
Registered: Aug 2007
Posts: 483

Rep: Reputation: 153Reputation: 153
detecting camcorder

"When there is no icon showing that something new is connected, I figure it is not detecting the camera."

There is a big difference between the kernel detecting a piece of hardware and a desktop environment such as KDE or GNOME opening up a window of some sort or creating a desktop icon. When you plug in a flash drive or an external hard drive a file manager often opens up. This action is programmed into the DE. Similar for connecting a digital camera. KDE offers options to open up a photo application or the file manager or other options. There may be no actions programmed for video cameras in the DE but that doesn't mean the kernel isn't detecting it.

When I turn on my Samsung laser printer it is detected by the kernel, shows up in the 'lsusb' output and many messages are printed in /var/log/messages. I can print to it. However no windows pop up and no icon is created.

I don't know if your camcorder is being detected or not however no icons being created does not mean anything. No icon is created for my printer and I can still print to it.

The output from dmesg tells us nothing unless the camera is being treated like a printer.

If a camcorder is detected by the kernel it should create a device file such as /dev/video*.

You can then use a command line application such as dvgrab to download video over the usb link.

$ dvgrab -V -input /dev/video0 filename

From the dvgrab manpage

-V, -v4l2

Capture from a USB Video Class (UVC) device that supports DV. This uses the uvcvideo kernel module via V4L2. The default device file is /dev/video. Use the -input option to set a different device file.

I forgot to mention this in my first message but it is best to look at the messages in /var/log/messages as they are all date and time stamped. You would look at the messages at the exact time you plug in your camera.

For example when I turn on my printer I get these messages in /var/log/messages.

Aug 9 13:27:51 server47 kernel: usb 5-1.4: new full-speed USB device number 10 using ehci-pci
Aug 9 13:27:51 server47 kernel: usb 5-1.4: New USB device found, idVendor=04e8, idProduct=324c
Aug 9 13:27:51 server47 kernel: usb 5-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Aug 9 13:27:51 server47 kernel: usb 5-1.4: Product: Samsung ML-1740 Series
Aug 9 13:27:51 server47 kernel: usb 5-1.4: Manufacturer: Samsung Electronics Co., Ltd.
Aug 9 13:27:51 server47 kernel: usb 5-1.4: SerialNumber: 2W61BKCX915167X0

$ sudo less /var/log/messages

You should also check whether a dev/video* device file is created.

& ls -l /dev/video*

And as I mnetioned in my first message check the output of lsusb, which shows the output of all connected usb devices.

$ lsusb

example
$ lsusb | grep Samsung
Bus 005 Device 010: ID 04e8:324c Samsung Electronics Co., Ltd ML-1740 Printer

Last edited by tofino_surfer; 08-09-2016 at 02:24 PM. Reason: message sent accidentally
 
Old 08-09-2016, 02:19 PM   #5
Fixit7
Senior Member
 
Registered: Mar 2014
Location: El Lago, Texas
Distribution: Ubuntu_Mate 16.04
Posts: 1,374

Original Poster
Rep: Reputation: 169Reputation: 169
You are just chalk full of good info. :-)
 
Old 08-09-2016, 03:44 PM   #6
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,675

Rep: Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892Reputation: 5892
Many devices use MTP which is different then a USB mass storage device which would create an icon on the desktop. If that dmesg output was after you plugged in the camera then it was not detected. There could be a configuration setting that pops up on the camera monitor when you plug it into the PC.
 
Old 08-09-2016, 06:57 PM   #7
Fixit7
Senior Member
 
Registered: Mar 2014
Location: El Lago, Texas
Distribution: Ubuntu_Mate 16.04
Posts: 1,374

Original Poster
Rep: Reputation: 169Reputation: 169
I did not see any type of configuration that showed up when camcorder was connected.

Guess it is not Linux friendly.

I will stick with using memory card to transfer pics and movies.
 
Old 08-09-2016, 10:21 PM   #8
tofino_surfer
Member
 
Registered: Aug 2007
Posts: 483

Rep: Reputation: 153Reputation: 153
I found this on another Ubuntu forum about someone with an older Canon Vixia camera successfully downloading video using USB. This post is from 2012 so Canon video cameras can download over USB. The camera needs to be set into a certain mode.

https://ubuntuforums.org/showthread.php?t=1934612

The following is from post #5

Re: Canon Vixia HF M31

The camera does not automount when you plug it in. You need to press the little button called DISP (onscreen display), shown on Page 11 of my manual. When the DISP is pressed, the camera recognizes that it is connected to the computer and the camera display requests that you select how it is to be connected. When you select "Computer/Printer", the camera should automatically mount as a USB device and you should see a folder named "PRIVATE". From there, select AVCHD, BDMV, and STREAM. Under STREAM, you should see a bunch of .mts files. Let me know if this works OK for you.

For me, this works the same way with Mint 12 (Ubuntu 11.10), and Windows 7.
 
Old 08-10-2016, 03:34 AM   #9
Fixit7
Senior Member
 
Registered: Mar 2014
Location: El Lago, Texas
Distribution: Ubuntu_Mate 16.04
Posts: 1,374

Original Poster
Rep: Reputation: 169Reputation: 169
My camcorder does not have that DISP button.

As michaelk mentioned, I think mine uses MTP which is a better system for storing pics and movies.

https://sites.google.com/site/learne...b-mass-storage

I am sure there is a Linux programmer working on a fix for it.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
my computer does not detect sound drivers for redhat 4.0 installed on my computer. i kunalp Linux - Desktop 2 06-17-2008 03:13 AM
my computer does not detect sound drivers for redhat 4.0 installed on my computer. i kunalp Linux - General 1 06-17-2008 03:11 AM
my computer does not detect sound drivers for redhat 4.0 installed on my computer. i kunalp Linux - Software 1 06-17-2008 03:11 AM
my computer does not detect sound drivers for redhat 4.0 installed on my computer. i kunalp Linux - Hardware 1 06-17-2008 03:11 AM
detect computer architecture diamonds Linux - Newbie 5 07-30-2005 05:08 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu

All times are GMT -5. The time now is 11:00 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration