<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-3242</id>
	<title>Nabble - gphoto-user</title>
	<updated>2009-12-18T09:15:43Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/gphoto-user-f3242.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/gphoto-user-f3242.html" />
	<subtitle type="html">Mailing list archive for gphoto-user</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26846623</id>
	<title>Re: changed behaviour for &quot;camera_wait_for_event&quot;</title>
	<published>2009-12-18T09:15:43Z</published>
	<updated>2009-12-18T09:15:43Z</updated>
	<author>
		<name>Sergey Kruk</name>
	</author>
	<content type="html">Hello, Marcus!
&lt;br&gt;&lt;br&gt;I digged even deeper into this problem by some hacking. Here is what I
&lt;br&gt;found out so far:
&lt;br&gt;&lt;br&gt;1. The difference in behaviour appeared in libgphoto2 2.4.5, when
&lt;br&gt;large NIKON-oriented section appeared in camera_wait_for_event
&lt;br&gt;function:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (	(params-&amp;gt;deviceinfo.VendorExtensionID == PTP_VENDOR_NIKON) &amp;&amp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ptp_operation_issupported(params, PTP_OC_NIKON_CheckEvent)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ) {.....}
&lt;br&gt;&lt;br&gt;So D80 is processed as NIKON with supported operation and D3000 is
&lt;br&gt;processed as default camera. Condition above is evaluated as false for
&lt;br&gt;it so the old behavoiur with two events per capture (FileAdded and
&lt;br&gt;Unknown) is in place.
&lt;br&gt;&lt;br&gt;2. This section seems to perceive all events at a time in a strange
&lt;br&gt;manner. I looked into PTPContainer on each call.
&lt;br&gt;&lt;br&gt;When I press capture button on camera one time before calling this
&lt;br&gt;function, container has 3 items:
&lt;br&gt;code 0x4006 (object added)
&lt;br&gt;PTP_HANDLER_SPECIAL
&lt;br&gt;code 0x400c (storage info changed)
&lt;br&gt;&lt;br&gt;When I press capture button on camera two times before calling this
&lt;br&gt;function, container has 5 items:
&lt;br&gt;code 0x4006 (object added)
&lt;br&gt;PTP_HANDLER_SPECIAL
&lt;br&gt;code 0x400c (storage info changed)
&lt;br&gt;PTP_HANDLER_SPECIAL
&lt;br&gt;code 0x400c (storage info changed)
&lt;br&gt;&lt;br&gt;For three shots there is 7 items:
&lt;br&gt;code 0x4006 (object added)
&lt;br&gt;PTP_HANDLER_SPECIAL
&lt;br&gt;code 0x400c (storage info changed)
&lt;br&gt;PTP_HANDLER_SPECIAL
&lt;br&gt;code 0x400c (storage info changed)
&lt;br&gt;PTP_HANDLER_SPECIAL
&lt;br&gt;code 0x400c (storage info changed)
&lt;br&gt;&lt;br&gt;And so on. Each press adds a special handler and 0x400c event in
&lt;br&gt;container. Since only 0x4006 code event is considered a file adding,
&lt;br&gt;container of any size is always interpreted as one file and the rest
&lt;br&gt;is ignored and not stored anywhere. The second wait command always
&lt;br&gt;brings empty PTPContainer no matter how long the timeout is. So there
&lt;br&gt;is no more queue of events and added files.
&lt;br&gt;&lt;br&gt;Sincerely,
&lt;br&gt;Sergey Kruk
&lt;br&gt;==================================
&lt;br&gt;On Thu, Dec 10, 2009 at 12:18 PM, Marcus Meissner &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26846623&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;marcus@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Mon, Dec 07, 2009 at 08:39:39PM +0300, Sergey Kruk wrote:
&lt;br&gt;&amp;gt;&amp;gt; I use libgphoto2 to manage Nikon D80, D90 and D3000 cameras. Recently
&lt;br&gt;&amp;gt;&amp;gt; I tried to move my project from libgphoto2-2.4.2 to 2.4.6 or 2.4.7 and
&lt;br&gt;&amp;gt;&amp;gt; I noticed behaviour change, that was not mentioned in changelogs.
&lt;br&gt;&amp;gt;&amp;gt; Since everything happens to one camera instace inside C program this
&lt;br&gt;&amp;gt;&amp;gt; is better demostrated inside gphoto2 --shell (this cannot be seen in
&lt;br&gt;&amp;gt;&amp;gt; command line version, only inside shell):
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; 1. In 2.4.7 when I run inside shell &amp;quot;capture-image&amp;quot; followed by
&lt;br&gt;&amp;gt;&amp;gt; &amp;quot;wait-event&amp;quot;, the second one reports that a file was added -- the
&lt;br&gt;&amp;gt;&amp;gt; captured one. And sometimes it gives error saying that file already
&lt;br&gt;&amp;gt;&amp;gt; exists. That is not the case with 2.4.2, where capture command
&lt;br&gt;&amp;gt;&amp;gt; followed by wait command could only give timeout.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; capture-image already reads until it gets 1 object added event
&lt;br&gt;&amp;gt; itself.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Only if you are shooting NEF+JPEG dual mode, wait-event should
&lt;br&gt;&amp;gt; return new images.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; That it returned the image that capture-image already reported
&lt;br&gt;&amp;gt; would have been a bug in 2.4.2.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; 2. In 2.4.2 I could manually press camera's release button several
&lt;br&gt;&amp;gt;&amp;gt; times while in the shell, and than run same number of times
&lt;br&gt;&amp;gt;&amp;gt; &amp;quot;wait-event&amp;quot;. Each time I would get next file name in FILEADDED event.
&lt;br&gt;&amp;gt;&amp;gt; Now with 2.4.7 after i press camera's release button several times I
&lt;br&gt;&amp;gt;&amp;gt; only get one &amp;quot;FILEADDED&amp;quot; event followed by timeouts. And files list is
&lt;br&gt;&amp;gt;&amp;gt; never updated until I do somethig like &amp;quot;capture-image&amp;quot;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If you are the gphoto2 shell prompt, gphoto is not polling the
&lt;br&gt;&amp;gt; interrupt queue... So interrupts might get lost.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The reliable way is to do:
&lt;br&gt;&amp;gt;        gphoto2 --wait-event 100s               # 100 seconds
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;        (just 100 without s would be 100 events)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; and then do the shutter pressing actions.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Or if you want to download FILEADDED files immediately, do
&lt;br&gt;&amp;gt;        gphoto2 --wait-event-and-download 100s
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; While first case is arguably a bug, the second one in my opinion clearly is.
&lt;br&gt;&amp;gt;&amp;gt; Is &amp;quot;wait&amp;quot;-functionality supported or is it more of experimental
&lt;br&gt;&amp;gt;&amp;gt; feature aside from main functionality? Should it be reported?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Well, you have reported it by your mail. :)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; It is functionality that is developing, so it might have flaws. But for above
&lt;br&gt;&amp;gt; purposes it should work, with the corner condition that wait-event runs for
&lt;br&gt;&amp;gt; polling.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Ciao, Marcus
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;
&lt;br&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26846623&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/changed-behaviour-for-%22camera_wait_for_event%22-tp26680952p26846623.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26807759</id>
	<title>Re: Canon A1100 Capture problem</title>
	<published>2009-12-16T00:24:04Z</published>
	<updated>2009-12-16T00:24:04Z</updated>
	<author>
		<name>Marcus Meissner</name>
	</author>
	<content type="html">On Tue, Dec 15, 2009 at 05:41:11PM -0800, Juan Martinez Osuna wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Hi to all.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;I have a Canon PowerShot A1100 IS camera. Gphoto detects the camera and
&lt;br&gt;&amp;gt; I can download the files from the camera also, but I can't capture
&lt;br&gt;&amp;gt; image or movie.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; The Error:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; lp-svsmith05@lp-svsmith05-laptop:~$ gphoto2 --capture-image
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; *** Error ***
&lt;br&gt;&amp;gt; An error occurred in the io-library ('Bad parameters'): No error
&lt;br&gt;&amp;gt; description available
&lt;br&gt;&amp;gt; ERROR: Could not capture.
&lt;br&gt;&amp;gt; *** Error (-2: 'Bad parameters') ***
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;I have search for information and I have found that certain Canon cameras
&lt;br&gt;&amp;gt; have this problem due to SDK. But this camera model is listed in the
&lt;br&gt;&amp;gt; gphoto2 list of compatible digital cameras also.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; Have any one solved this problem? is there a way to configure a mode in
&lt;br&gt;&amp;gt; the camera to be controlled to remote capture?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; I have libgphoto and Gphoto2 both v2.4.7 and I am using Ubuntu.
&lt;br&gt;&amp;gt; &amp;nbsp; Thank you in advance for your help.
&lt;br&gt;&amp;gt; &amp;nbsp; Best Regards.
&lt;/div&gt;&lt;br&gt;No, the PowerShot A1100 IS itself does not support remote capture.
&lt;br&gt;&lt;a href=&quot;http://www.usa.canon.com/consumer/controller?act=SDKHomePageAct&amp;keycode=Sdk_Lic&amp;fcategoryid=314&amp;modelid=7474&amp;id=3464&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.usa.canon.com/consumer/controller?act=SDKHomePageAct&amp;keycode=Sdk_Lic&amp;fcategoryid=314&amp;modelid=7474&amp;id=3464&lt;/a&gt;&lt;br&gt;&lt;br&gt;Has &amp;quot;NC NC NC&amp;quot; (non conforming) to any SDK version.
&lt;br&gt;&lt;br&gt;(The error is probably something else, it should report &amp;quot;capture not supported&amp;quot;.)
&lt;br&gt;&lt;br&gt;Ciao, Marcus
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;
&lt;br&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26807759&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Canon-A1100-Capture-problem-tp26805138p26807759.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26805138</id>
	<title>Canon A1100 Capture problem</title>
	<published>2009-12-15T17:41:11Z</published>
	<updated>2009-12-15T17:41:11Z</updated>
	<author>
		<name>Juan Osuna</name>
	</author>
	<content type="html">&lt;br&gt;&amp;nbsp; &amp;nbsp; Hi to all.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;I have a Canon PowerShot A1100 IS camera. Gphoto detects the camera and
&lt;br&gt;I can download the files from the camera also, but I can't capture
&lt;br&gt;image or movie.
&lt;br&gt;&lt;br&gt;&amp;nbsp; The Error:
&lt;br&gt;&lt;br&gt;lp-svsmith05@lp-svsmith05-laptop:~$ gphoto2 --capture-image
&lt;br&gt;&lt;br&gt;*** Error ***
&lt;br&gt;An error occurred in the io-library ('Bad parameters'): No error
&lt;br&gt;description available
&lt;br&gt;ERROR: Could not capture.
&lt;br&gt;*** Error (-2: 'Bad parameters') ***
&lt;br&gt;&lt;br&gt;&amp;nbsp;I have search for information and I have found that certain Canon cameras
&lt;br&gt;have this problem due to SDK. But this camera model is listed in the
&lt;br&gt;gphoto2 list of compatible digital cameras also.
&lt;br&gt;&lt;br&gt;&amp;nbsp; Have any one solved this problem? is there a way to configure a mode in
&lt;br&gt;the camera to be controlled to remote capture?
&lt;br&gt;&lt;br&gt;&amp;nbsp; I have libgphoto and Gphoto2 both v2.4.7 and I am using Ubuntu.
&lt;br&gt;&amp;nbsp; Thank you in advance for your help.
&lt;br&gt;&amp;nbsp; Best Regards.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Juan F. Martinez Osuna
&lt;br&gt;Electronic Design Engineer.
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;
&lt;br&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26805138&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Canon-A1100-Capture-problem-tp26805138p26805138.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26782262</id>
	<title>Re: D300s</title>
	<published>2009-12-14T10:13:31Z</published>
	<updated>2009-12-14T10:13:31Z</updated>
	<author>
		<name>Andreas Dielacher</name>
	</author>
	<content type="html">Hi again,
&lt;br&gt;&lt;br&gt;Sorry for the delay, was a bit in a hurry. It does not seem for me that 
&lt;br&gt;nautilus is grabbing it:
&lt;br&gt;andi@windlepoons:~$ gvfs-mount -l
&lt;br&gt;Drive(0): 320 GB Hard Disk
&lt;br&gt;&amp;nbsp; &amp;nbsp;Type: GProxyDrive (GProxyVolumeMonitorGdu)
&lt;br&gt;&amp;nbsp; &amp;nbsp;Volume(0): Volume
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Type: GProxyVolume (GProxyVolumeMonitorGdu)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Mount(0): Volume -&amp;gt; file:///media/Volume
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Type: GProxyMount (GProxyVolumeMonitorGdu)
&lt;br&gt;Drive(1): CD/DVD Drive
&lt;br&gt;&amp;nbsp; &amp;nbsp;Type: GProxyDrive (GProxyVolumeMonitorGdu)
&lt;br&gt;Drive(2): 251 GB Hard Disk
&lt;br&gt;&amp;nbsp; &amp;nbsp;Type: GProxyDrive (GProxyVolumeMonitorGdu)
&lt;br&gt;&amp;nbsp; &amp;nbsp;Volume(0): 74 MB Filesystem
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Type: GProxyVolume (GProxyVolumeMonitorGdu)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Mount(0): 74 MB Filesystem -&amp;gt; file:///media/disk
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Type: GProxyMount (GProxyVolumeMonitorGdu)
&lt;br&gt;&amp;nbsp; &amp;nbsp;Volume(1): 20 GB Filesystem
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Type: GProxyVolume (GProxyVolumeMonitorGdu)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Mount(0): 20 GB Filesystem -&amp;gt; file:///media/disk-2
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Type: GProxyMount (GProxyVolumeMonitorGdu)
&lt;br&gt;&amp;nbsp; &amp;nbsp;Volume(2): data_1
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Type: GProxyVolume (GProxyVolumeMonitorGdu)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Mount(0): data_1 -&amp;gt; file:///media/data_1
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Type: GProxyMount (GProxyVolumeMonitorGdu)
&lt;br&gt;Mount(1): Music -&amp;gt; file:///home/andi/Music
&lt;br&gt;&amp;nbsp; &amp;nbsp;Type: GProxyMount (GProxyVolumeMonitorGdu)
&lt;br&gt;Mount(2): Pictures -&amp;gt; file:///home/andi/Pictures
&lt;br&gt;&amp;nbsp; &amp;nbsp;Type: GProxyMount (GProxyVolumeMonitorGdu)
&lt;br&gt;Mount(3): nas -&amp;gt; file:///home/andi/nas
&lt;br&gt;&amp;nbsp; &amp;nbsp;Type: GProxyMount (GProxyVolumeMonitorGdu)
&lt;br&gt;Mount(4): Stuff -&amp;gt; file:///home/andi/Stuff
&lt;br&gt;&amp;nbsp; &amp;nbsp;Type: GProxyMount (GProxyVolumeMonitorGdu)
&lt;br&gt;Mount(8): Movies -&amp;gt; file:///home/andi/Movies
&lt;br&gt;&amp;nbsp; &amp;nbsp;Type: GProxyMount (GProxyVolumeMonitorGdu)
&lt;br&gt;&lt;br&gt;&amp;nbsp; I saw that you added the D300s into the svn. The actual tarball didn't 
&lt;br&gt;compile for me, so i added the two lines to my library.c and compiled 
&lt;br&gt;them (this should be the output of libgphoto 2.4.7 now with D300s). It 
&lt;br&gt;worked once to get the listing of the camera with gphoto2 -L, but after 
&lt;br&gt;it never did again. I have attached a log file for the gphoto2 -L 
&lt;br&gt;command. Seems gphoto detects the camera, but still has a sequence 
&lt;br&gt;number mismatch.
&lt;br&gt;&lt;br&gt;Best Regards,
&lt;br&gt;Andi
&lt;br&gt;&lt;br /&gt;0.000009 main(2): ALWAYS INCLUDE THE FOLLOWING LINES WHEN SENDING DEBUG MESSAGES TO THE MAILING LIST:
&lt;br&gt;0.000162 main(2): gphoto2 2.4.7
&lt;br&gt;0.000212 main(2): gphoto2 has been compiled with the following options:
&lt;br&gt;0.000257 main(2): &amp;nbsp;+ gcc (C compiler used)
&lt;br&gt;0.000307 main(2): &amp;nbsp;+ popt (mandatory, for handling command-line parameters)
&lt;br&gt;0.000362 main(2): &amp;nbsp;+ exif (for displaying EXIF information)
&lt;br&gt;0.000414 main(2): &amp;nbsp;+ no cdk (for accessing configuration options)
&lt;br&gt;0.000460 main(2): &amp;nbsp;+ no aa (for displaying live previews)
&lt;br&gt;0.000511 main(2): &amp;nbsp;+ jpeg (for displaying live previews in JPEG format)
&lt;br&gt;0.000562 main(2): &amp;nbsp;+ no readline (for easy navigation in the shell)
&lt;br&gt;0.000618 main(2): libgphoto2 2.4.7
&lt;br&gt;0.000675 main(2): libgphoto2 has been compiled with the following options:
&lt;br&gt;0.000726 main(2): &amp;nbsp;+ gcc (C compiler used)
&lt;br&gt;0.000775 main(2): &amp;nbsp;+ ltdl (for portable loading of camlibs)
&lt;br&gt;0.000826 main(2): &amp;nbsp;+ EXIF (for special handling of EXIF files)
&lt;br&gt;0.000877 main(2): libgphoto2_port 0.8.0
&lt;br&gt;0.000929 main(2): libgphoto2_port has been compiled with the following options:
&lt;br&gt;0.000982 main(2): &amp;nbsp;+ gcc (C compiler used)
&lt;br&gt;0.001032 main(2): &amp;nbsp;+ ltdl (for portable loading of camlibs)
&lt;br&gt;0.001082 main(2): &amp;nbsp;+ USB (libusb, for USB cameras)
&lt;br&gt;0.001128 main(2): &amp;nbsp;+ serial (for serial cameras)
&lt;br&gt;0.001184 main(2): &amp;nbsp;+ no resmgr (serial port access and locking)
&lt;br&gt;0.001234 main(2): &amp;nbsp;+ no baudboy (serial port locking)
&lt;br&gt;0.001284 main(2): &amp;nbsp;+ no ttylock (serial port locking)
&lt;br&gt;0.001343 main(2): &amp;nbsp;+ no lockdev (serial port locking)
&lt;br&gt;0.001398 main(2): CAMLIBS env var not set, using compile-time default instead
&lt;br&gt;0.001452 main(2): IOLIBS env var not set, using compile-time default instead
&lt;br&gt;0.001551 setting/gphoto2-setting.c(2): Creating $HOME/.gphoto
&lt;br&gt;0.001705 setting/gphoto2-setting.c(2): Loading settings from file &amp;quot;/home/andi/.gphoto/settings&amp;quot;
&lt;br&gt;0.002106 main(2): The user has not specified both a model and a port. Try to figure them out.
&lt;br&gt;0.002187 gphoto2-port-info-list(2): Using ltdl to load io-drivers from '/usr/local/lib/libgphoto2_port/0.8.0'...
&lt;br&gt;0.002402 gphoto2-port-info-list(2): Called for filename '/usr/local/lib/libgphoto2_port/0.8.0/disk'.
&lt;br&gt;0.009810 gphoto2-port/disk(2): found 7 volumes
&lt;br&gt;0.016604 gphoto2-port-info-list(2): Loaded 'Media 'Volume'' ('disk:/media/Volume') from '/usr/local/lib/libgphoto2_port/0.8.0/disk'.
&lt;br&gt;0.016635 gphoto2-port-info-list(2): Loaded 'Media 'data_1'' ('disk:/media/data_1') from '/usr/local/lib/libgphoto2_port/0.8.0/disk'.
&lt;br&gt;0.016648 gphoto2-port-info-list(2): Loaded 'Media 'Volume (ntfs)'' ('disk:/media/disk-2') from '/usr/local/lib/libgphoto2_port/0.8.0/disk'.
&lt;br&gt;0.016660 gphoto2-port-info-list(2): Loaded 'Media 'Volume (ext3)'' ('disk:/') from '/usr/local/lib/libgphoto2_port/0.8.0/disk'.
&lt;br&gt;0.016672 gphoto2-port-info-list(2): Loaded 'Media 'Volume (ext2)'' ('disk:/media/disk') from '/usr/local/lib/libgphoto2_port/0.8.0/disk'.
&lt;br&gt;0.016687 gphoto2-port-info-list(2): Loaded '' ('^disk:') from '/usr/local/lib/libgphoto2_port/0.8.0/disk'.
&lt;br&gt;0.016701 gphoto2-port-info-list(2): Called for filename '/usr/local/lib/libgphoto2_port/0.8.0/ptpip'.
&lt;br&gt;0.016809 gphoto2-port-info-list(2): Loaded 'PTP/IP Connection' ('ptpip:') from '/usr/local/lib/libgphoto2_port/0.8.0/ptpip'.
&lt;br&gt;0.016827 gphoto2-port-info-list(2): Loaded '' ('^ptpip') from '/usr/local/lib/libgphoto2_port/0.8.0/ptpip'.
&lt;br&gt;0.016843 gphoto2-port-info-list(2): Called for filename '/usr/local/lib/libgphoto2_port/0.8.0/serial'.
&lt;br&gt;0.016979 gphoto2-port-info-list(2): Loaded 'Serial Port 0' ('serial:/dev/ttyS0') from '/usr/local/lib/libgphoto2_port/0.8.0/serial'.
&lt;br&gt;0.016998 gphoto2-port-info-list(2): Loaded 'Serial Port 1' ('serial:/dev/ttyS1') from '/usr/local/lib/libgphoto2_port/0.8.0/serial'.
&lt;br&gt;0.017012 gphoto2-port-info-list(2): Loaded 'Serial Port 2' ('serial:/dev/ttyS2') from '/usr/local/lib/libgphoto2_port/0.8.0/serial'.
&lt;br&gt;0.017026 gphoto2-port-info-list(2): Loaded 'Serial Port 3' ('serial:/dev/ttyS3') from '/usr/local/lib/libgphoto2_port/0.8.0/serial'.
&lt;br&gt;0.017039 gphoto2-port-info-list(2): Loaded '' ('^serial') from '/usr/local/lib/libgphoto2_port/0.8.0/serial'.
&lt;br&gt;0.017052 gphoto2-port-info-list(2): Called for filename '/usr/local/lib/libgphoto2_port/0.8.0/usb'.
&lt;br&gt;0.492558 gphoto2-port-info-list(2): Loaded 'Universal Serial Bus' ('usb:') from '/usr/local/lib/libgphoto2_port/0.8.0/usb'.
&lt;br&gt;0.492661 gphoto2-port-info-list(2): Loaded '' ('^usb:') from '/usr/local/lib/libgphoto2_port/0.8.0/usb'.
&lt;br&gt;0.492727 gphoto2-port-info-list(2): Counting entries (15 available)...
&lt;br&gt;0.492776 gphoto2-port-info-list(2): 11 regular entries available.
&lt;br&gt;0.493338 gphoto2-abilities-list(2): Using ltdl to load camera libraries from '/usr/local/lib/libgphoto2/2.4.7'...
&lt;br&gt;0.494918 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/adc65'.
&lt;br&gt;0.494985 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/agfa_cl20'.
&lt;br&gt;0.495032 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/aox'.
&lt;br&gt;0.495077 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/barbie'.
&lt;br&gt;0.495190 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/canon'.
&lt;br&gt;0.495237 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/casio_qv'.
&lt;br&gt;0.495283 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/clicksmart310'.
&lt;br&gt;0.495329 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/digigr8'.
&lt;br&gt;0.495375 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/digita'.
&lt;br&gt;0.495421 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/dimagev'.
&lt;br&gt;0.495466 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/dimera3500'.
&lt;br&gt;0.495512 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/directory'.
&lt;br&gt;0.495558 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/enigma13'.
&lt;br&gt;0.495604 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/fuji'.
&lt;br&gt;0.495650 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/gsmart300'.
&lt;br&gt;0.495696 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/hp215'.
&lt;br&gt;0.495742 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/iclick'.
&lt;br&gt;0.495788 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/jamcam'.
&lt;br&gt;0.495834 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/jd11'.
&lt;br&gt;0.495879 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/jl2005a'.
&lt;br&gt;0.495925 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/kodak_dc120'.
&lt;br&gt;0.495971 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/kodak_dc210'.
&lt;br&gt;0.496016 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/kodak_dc240'.
&lt;br&gt;0.496062 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/kodak_dc3200'.
&lt;br&gt;0.496107 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/kodak_ez200'.
&lt;br&gt;0.496153 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/konica'.
&lt;br&gt;0.496202 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/konica_qm150'.
&lt;br&gt;0.496249 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/largan'.
&lt;br&gt;0.496295 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/lg_gsm'.
&lt;br&gt;0.496340 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/mars'.
&lt;br&gt;0.496386 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/mustek'.
&lt;br&gt;0.496432 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/panasonic_coolshot'.
&lt;br&gt;0.496477 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/panasonic_dc1000'.
&lt;br&gt;0.496523 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/panasonic_dc1580'.
&lt;br&gt;0.496569 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/panasonic_l859'.
&lt;br&gt;0.496615 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/pccam300'.
&lt;br&gt;0.496660 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/pccam600'.
&lt;br&gt;0.496706 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/polaroid_pdc320'.
&lt;br&gt;0.496752 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/polaroid_pdc640'.
&lt;br&gt;0.496797 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/polaroid_pdc700'.
&lt;br&gt;0.496843 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/ptp2'.
&lt;br&gt;0.496888 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/ricoh'.
&lt;br&gt;0.496962 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/ricoh_g3'.
&lt;br&gt;0.497008 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/samsung'.
&lt;br&gt;0.497054 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/sierra'.
&lt;br&gt;0.497100 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/sipix_blink2'.
&lt;br&gt;0.497146 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/sipix_web2'.
&lt;br&gt;0.497192 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/smal'.
&lt;br&gt;0.497238 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/sonix'.
&lt;br&gt;0.497284 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/sony_dscf1'.
&lt;br&gt;0.497330 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/sony_dscf55'.
&lt;br&gt;0.497376 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/soundvision'.
&lt;br&gt;0.497421 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/spca50x'.
&lt;br&gt;0.497467 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/sq905'.
&lt;br&gt;0.497513 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/stv0674'.
&lt;br&gt;0.497558 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/stv0680'.
&lt;br&gt;0.497604 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/sx330z'.
&lt;br&gt;0.497650 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/topfield'.
&lt;br&gt;0.497695 gphoto2-abilities-list(2): Found '/usr/local/lib/libgphoto2/2.4.7/toshiba_pdrm11'.
&lt;br&gt;0.497753 gp-abilities-list(2): Found 59 camera drivers.
&lt;br&gt;0.519023 gphoto2-port-info-list(2): Counting entries (15 available)...
&lt;br&gt;0.519063 gphoto2-port-info-list(2): 11 regular entries available.
&lt;br&gt;0.519075 gphoto2-port(2): Creating new device...
&lt;br&gt;0.519089 gphoto2-port-info-list(2): Getting info of entry 0 (15 available)...
&lt;br&gt;0.519286 gphoto2-port(2): Setting settings...
&lt;br&gt;0.519304 gphoto2-port(0): The operation 'update' is not supported by this device
&lt;br&gt;0.519385 gphoto2-port-info-list(2): Getting info of entry 1 (15 available)...
&lt;br&gt;0.519551 gphoto2-port(2): Setting settings...
&lt;br&gt;0.519567 gphoto2-port(0): The operation 'update' is not supported by this device
&lt;br&gt;0.519627 gphoto2-port-info-list(2): Getting info of entry 2 (15 available)...
&lt;br&gt;0.519784 gphoto2-port(2): Setting settings...
&lt;br&gt;0.519799 gphoto2-port(0): The operation 'update' is not supported by this device
&lt;br&gt;0.519855 gphoto2-port-info-list(2): Getting info of entry 3 (15 available)...
&lt;br&gt;0.520009 gphoto2-port(2): Setting settings...
&lt;br&gt;0.520024 gphoto2-port(0): The operation 'update' is not supported by this device
&lt;br&gt;0.520039 gphoto2-port-info-list(2): Getting info of entry 4 (15 available)...
&lt;br&gt;0.520184 gphoto2-port(2): Setting settings...
&lt;br&gt;0.520199 gphoto2-port(0): The operation 'update' is not supported by this device
&lt;br&gt;0.520216 gphoto2-port-info-list(2): Getting info of entry 5 (15 available)...
&lt;br&gt;0.520296 gphoto2-port(2): Setting settings...
&lt;br&gt;0.520311 gphoto2-port-info-list(2): Getting info of entry 6 (15 available)...
&lt;br&gt;0.520384 gphoto2-port(2): Setting timeout to 500 millisecond(s)...
&lt;br&gt;0.520398 gphoto2-port(2): Setting settings...
&lt;br&gt;0.520411 gphoto2-port-info-list(2): Getting info of entry 7 (15 available)...
&lt;br&gt;0.520478 gphoto2-port(2): Setting timeout to 500 millisecond(s)...
&lt;br&gt;0.520492 gphoto2-port(2): Setting settings...
&lt;br&gt;0.520504 gphoto2-port-info-list(2): Getting info of entry 8 (15 available)...
&lt;br&gt;0.520569 gphoto2-port(2): Setting timeout to 500 millisecond(s)...
&lt;br&gt;0.520583 gphoto2-port(2): Setting settings...
&lt;br&gt;0.520595 gphoto2-port-info-list(2): Getting info of entry 9 (15 available)...
&lt;br&gt;0.520659 gphoto2-port(2): Setting timeout to 500 millisecond(s)...
&lt;br&gt;0.520674 gphoto2-port(2): Setting settings...
&lt;br&gt;0.520686 gphoto2-port-info-list(2): Getting info of entry 10 (15 available)...
&lt;br&gt;0.520937 gphoto2-port(2): Setting timeout to 5000 millisecond(s)...
&lt;br&gt;0.520957 gphoto2-port(2): Setting settings...
&lt;br&gt;0.520970 libusb(2): gp_port_usb_update(old int=0, conf=-1, alt=-1), (new int=0, conf=-1, alt=-1)
&lt;br&gt;0.520983 gphoto2-abilities-list.c(1): Auto-detecting USB cameras...
&lt;br&gt;0.521474 gphoto2-port-usb(1): Looking for USB device (vendor 0x4b0, product 0x425)... found.
&lt;br&gt;0.521617 gphoto2-port-usb(2): inep to look for is 81
&lt;br&gt;0.521670 gphoto2-port-usb(1): Detected defaults: config 1, interface 0, altsetting 0, inep 81, outep 02, intep 83, class 06, subclass 01
&lt;br&gt;0.521724 gphoto2-abilities-list.c(2): Found 'Nikon DSC D300s (PTP mode)' (0x4b0,0x425)
&lt;br&gt;0.521788 gphoto2-port(2): Freeing port...
&lt;br&gt;0.521851 gphoto2-port(2): Closing port...
&lt;br&gt;0.522069 gphoto2-camera(2): Setting abilities ('Nikon DSC D300s (PTP mode)')...
&lt;br&gt;0.522143 gphoto2-setting(2): Setting key 'model' to value 'Nikon DSC D300s (PTP mode)' (gphoto2)
&lt;br&gt;0.522205 gphoto2-setting(2): Saving 2 setting(s) to file &amp;quot;/home/andi/.gphoto/settings&amp;quot;
&lt;br&gt;0.522468 gphoto2-port-info-list(2): Looking for path 'usb:' (15 entries available)...
&lt;br&gt;0.522578 gphoto2-port-info-list(2): Getting info of entry 10 (15 available)...
&lt;br&gt;0.522639 gphoto2-camera(2): Setting port info for port 'Universal Serial Bus' at 'usb:'...
&lt;br&gt;0.523503 gphoto2-port(2): Setting timeout to 5000 millisecond(s)...
&lt;br&gt;0.523593 gphoto2-port(2): Setting settings...
&lt;br&gt;0.523644 libusb(2): gp_port_usb_update(old int=0, conf=-1, alt=-1), (new int=0, conf=-1, alt=-1)
&lt;br&gt;0.523703 gphoto2-setting(2): Setting key 'port' to value 'usb:' (gphoto2)
&lt;br&gt;0.523757 gphoto2-setting(2): Saving 2 setting(s) to file &amp;quot;/home/andi/.gphoto/settings&amp;quot;
&lt;br&gt;0.524063 foreach(2): Executing action 'List Files' for folder '/'.
&lt;br&gt;0.524396 gphoto2-camera(2): Listing files in '/'...
&lt;br&gt;0.524457 gphoto2-camera(2): Initializing camera...
&lt;br&gt;0.524522 gphoto2-port-usb(1): Looking for USB device (vendor 0x4b0, product 0x425)... found.
&lt;br&gt;0.524577 gphoto2-port-usb(2): inep to look for is 81
&lt;br&gt;0.524627 gphoto2-port-usb(1): Detected defaults: config 1, interface 0, altsetting 0, inep 81, outep 02, intep 83, class 06, subclass 01
&lt;br&gt;0.524680 gphoto2-camera(2): Loading '/usr/local/lib/libgphoto2/2.4.7/ptp2'...
&lt;br&gt;0.525207 gphoto2-port(2): Opening USB port...
&lt;br&gt;0.525274 libusb(2): gp_port_usb_open()
&lt;br&gt;0.525366 libusb(2): claiming interface 0
&lt;br&gt;0.525453 ptp2(2): maxpacketsize 512
&lt;br&gt;0.525604 gphoto2-port(2): Setting timeout to 8000 millisecond(s)...
&lt;br&gt;0.525671 ptp(2): PTP: Opening session
&lt;br&gt;0.525732 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
&lt;br&gt;0.525789 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
&lt;br&gt;0000 &amp;nbsp;10 00 00 00 01 00 02 10-00 00 00 00 01 00 00 00 &amp;nbsp;................
&lt;br&gt;&lt;br&gt;0.526308 ptp2/ptp_usb_getresp(2): reading response
&lt;br&gt;0.526371 ptp2/ptp_usb_getpacket(2): getting next ptp packet
&lt;br&gt;0.526426 gphoto2-port(2): Reading 512=0x200 bytes from port...
&lt;br&gt;0.526675 gphoto2-port(2): Could only read 12 out of 512 byte(s)
&lt;br&gt;0.526738 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
&lt;br&gt;0000 &amp;nbsp;0c 00 00 00 03 00 1e 20-00 00 00 00 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;....... .... &amp;nbsp; &amp;nbsp;
&lt;br&gt;&lt;br&gt;0.526786 ptp2/usb_getresp(0): request code 0x1002 getting resp error 0x201e
&lt;br&gt;0.526835 gphoto2-port(2): Setting timeout to 20000 millisecond(s)...
&lt;br&gt;0.526889 gphoto2-port(2): Writing 12=0xc byte(s) to port...
&lt;br&gt;0.526938 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
&lt;br&gt;0000 &amp;nbsp;0c 00 00 00 01 00 01 10-01 00 00 00 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;............ &amp;nbsp; &amp;nbsp;
&lt;br&gt;&lt;br&gt;0.527039 ptp2/ptp_usb_getdata(2): reading data
&lt;br&gt;0.527088 ptp2/ptp_usb_getpacket(2): getting next ptp packet
&lt;br&gt;0.527135 gphoto2-port(2): Reading 512=0x200 bytes from port...
&lt;br&gt;0.527290 gphoto2-port(2): Could only read 337 out of 512 byte(s)
&lt;br&gt;0.527349 gphoto2-port(3): Hexdump of 337 = 0x151 bytes follows:
&lt;br&gt;0000 &amp;nbsp;51 01 00 00 02 00 01 10-01 00 00 00 64 00 06 00 &amp;nbsp;Q...........d...
&lt;br&gt;0010 &amp;nbsp;00 00 64 00 13 6d 00 69-00 63 00 72 00 6f 00 73 &amp;nbsp;..d..m.i.c.r.o.s
&lt;br&gt;0020 &amp;nbsp;00 6f 00 66 00 74 00 2e-00 63 00 6f 00 6d 00 3a &amp;nbsp;.o.f.t...c.o.m.:
&lt;br&gt;0030 &amp;nbsp;00 20 00 31 00 2e 00 30-00 00 00 00 00 2c 00 00 &amp;nbsp;. .1...0.....,..
&lt;br&gt;0040 &amp;nbsp;00 01 10 02 10 03 10 04-10 05 10 06 10 07 10 08 &amp;nbsp;................
&lt;br&gt;0050 &amp;nbsp;10 09 10 0a 10 0b 10 0c-10 0d 10 0e 10 0f 10 14 &amp;nbsp;................
&lt;br&gt;0060 &amp;nbsp;10 15 10 16 10 1b 10 c0-90 c1 90 c2 90 c3 90 c4 &amp;nbsp;................
&lt;br&gt;0070 &amp;nbsp;90 c7 90 c8 90 c9 90 ca-90 cb 90 cc 90 cd 90 ce &amp;nbsp;................
&lt;br&gt;0080 &amp;nbsp;90 cf 90 00 92 01 92 02-92 03 92 04 92 05 92 06 &amp;nbsp;................
&lt;br&gt;0090 &amp;nbsp;92 01 98 02 98 03 98 05-98 0d 00 00 00 01 40 02 &amp;nbsp;..............@.
&lt;br&gt;00a0 &amp;nbsp;40 04 40 05 40 06 40 09-40 0a 40 0c 40 0d 40 08 &amp;nbsp;@.@.@.@.@.@.@.@.
&lt;br&gt;00b0 &amp;nbsp;40 01 c1 02 c1 04 c1 15-00 00 00 01 50 03 50 04 &amp;nbsp;@...........P.P.
&lt;br&gt;00c0 &amp;nbsp;50 05 50 07 50 08 50 0a-50 0b 50 0c 50 0d 50 0e &amp;nbsp;P.P.P.P.P.P.P.P.
&lt;br&gt;00d0 &amp;nbsp;50 0f 50 10 50 11 50 13-50 18 50 1c 50 1e 50 1f &amp;nbsp;P.P.P.P.P.P.P.P.
&lt;br&gt;00e0 &amp;nbsp;50 06 d4 07 d4 03 00 00-00 01 38 00 30 0d 38 07 &amp;nbsp;P.........8.0.8.
&lt;br&gt;00f0 &amp;nbsp;00 00 00 01 38 00 30 01-30 0a 30 0d 38 06 30 02 &amp;nbsp;....8.0.0.0.8.0.
&lt;br&gt;0100 &amp;nbsp;30 12 4e 00 69 00 6b 00-6f 00 6e 00 20 00 43 00 &amp;nbsp;0.N.i.k.o.n. .C.
&lt;br&gt;0110 &amp;nbsp;6f 00 72 00 70 00 6f 00-72 00 61 00 74 00 69 00 &amp;nbsp;o.r.p.o.r.a.t.i.
&lt;br&gt;0120 &amp;nbsp;6f 00 6e 00 00 00 06 44-00 33 00 30 00 30 00 53 &amp;nbsp;o.n....D.3.0.0.S
&lt;br&gt;0130 &amp;nbsp;00 00 00 06 56 00 31 00-2e 00 30 00 30 00 00 00 &amp;nbsp;....V.1...0.0...
&lt;br&gt;0140 &amp;nbsp;08 36 00 30 00 32 00 31-00 35 00 33 00 33 00 00 &amp;nbsp;.6.0.2.1.5.3.3..
&lt;br&gt;0150 &amp;nbsp;00 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; . &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;0.527439 ptp2/ptp_usb_getresp(2): reading response
&lt;br&gt;0.527489 ptp2/ptp_usb_getpacket(2): getting next ptp packet
&lt;br&gt;0.527538 gphoto2-port(2): Reading 512=0x200 bytes from port...
&lt;br&gt;0.527861 gphoto2-port(2): Could only read 11 out of 512 byte(s)
&lt;br&gt;0.527927 gphoto2-port(3): Hexdump of 11 = 0xb bytes follows:
&lt;br&gt;0000 &amp;nbsp;0c 00 00 00 03 00 01 20-00 00 00 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ....... ... &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;0.527997 context(0): PTP: Sequence number mismatch 0 vs expected 1.
&lt;br&gt;0.528089 context(0): PTP Error: bad parameter
&lt;br&gt;0.528166 gphoto2-port(2): Closing port...
&lt;br&gt;0.528336 context(0): An error occurred in the io-library ('Bad parameters'): No error description available
&lt;br&gt;0.529220 gp-camera(2): Freeing camera...
&lt;br&gt;0.529285 gphoto2-port(2): Freeing port...
&lt;br&gt;0.529335 gphoto2-port(2): Closing port...
&lt;br&gt;0.529446 gphoto2-filesystem(2): resetting filesystem
&lt;br&gt;0.529502 libgphoto2/gphoto2-filesys.c(2): Clearing fscache LRU list...
&lt;br&gt;0.529553 libgphoto2/gphoto2-filesys.c(2): fscache LRU list already empty
&lt;br&gt;0.529603 gphoto2-filesystem(2): Internally deleting all folders from '/'...
&lt;br&gt;0.529657 gphoto2-filesystem(2): Lookup folder '/'...
&lt;br&gt;0.529708 gphoto2-filesystem(2): Found! / is 0x1c06430
&lt;br&gt;0.529768 gphoto2-filesystem(2): Recurse delete folder 0x1c06430//
&lt;br&gt;&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Return on Information:
&lt;br&gt;Google Enterprise Search pays you back
&lt;br&gt;Get the facts.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/google-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/google-dev2dev&lt;/a&gt;&lt;br&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26782262&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/D300s-tp26760415p26782262.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26760937</id>
	<title>Re: D300s</title>
	<published>2009-12-12T12:31:50Z</published>
	<updated>2009-12-12T12:31:50Z</updated>
	<author>
		<name>Marcus Meissner</name>
	</author>
	<content type="html">On Sat, Dec 12, 2009 at 09:16:13PM +0100, Andreas Dielacher wrote:
&lt;br&gt;&amp;gt; Marcus Meissner wrote:
&lt;br&gt;&amp;gt; &amp;gt; On Sat, Dec 12, 2009 at 08:26:21PM +0100, Andreas Dielacher wrote:
&lt;br&gt;&amp;gt; &amp;gt; Does &amp;quot;gphoto2 -L&amp;quot; work?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Did not work, so i added the --debug switch:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 0000 &amp;nbsp;0c 00 00 00 03 00 03 20-04 00 00 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ....... ...
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.624176 ptp2/usb_getresp(0): request code 0x1002 getting resp error 0x2003
&lt;br&gt;&amp;gt; 0.624183 ptp2/camera_init(0): ptp_opensession returns 2003
&lt;br&gt;&amp;gt; 0.624188 ptp(2): PTP: Opening session
&lt;br&gt;&amp;gt; 0.624194 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
&lt;br&gt;&amp;gt; 0.624200 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
&lt;br&gt;&amp;gt; 0000 &amp;nbsp;10 00 00 00 01 00 02 10-00 00 00 00 01 00 00 00 &amp;nbsp;................
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.625159 ptp2/ptp_usb_getresp(2): reading response
&lt;br&gt;&amp;gt; 0.625171 ptp2/ptp_usb_getpacket(2): getting next ptp packet
&lt;br&gt;&amp;gt; 0.625181 gphoto2-port(2): Reading 512=0x200 bytes from port...
&lt;br&gt;&amp;gt; 0.625428 gphoto2-port(2): Could only read 12 out of 512 byte(s)
&lt;br&gt;&amp;gt; 0.625461 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
&lt;br&gt;&amp;gt; 0000 &amp;nbsp;0c 00 00 00 03 00 01 20-00 00 00 00 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;....... ....
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.625485 gphoto2-port(2): Setting timeout to 20000 millisecond(s)...
&lt;br&gt;&amp;gt; 0.625512 gphoto2-port(2): Writing 12=0xc byte(s) to port...
&lt;br&gt;&amp;gt; 0.625528 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
&lt;br&gt;&amp;gt; 0000 &amp;nbsp;0c 00 00 00 01 00 01 10-01 00 00 00 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;............
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.625753 ptp2/ptp_usb_getdata(2): reading data
&lt;br&gt;&amp;gt; 0.625761 ptp2/ptp_usb_getpacket(2): getting next ptp packet
&lt;br&gt;&amp;gt; 0.625768 gphoto2-port(2): Reading 512=0x200 bytes from port...
&lt;br&gt;&amp;gt; 0.625959 gphoto2-port(2): Could only read 12 out of 512 byte(s)
&lt;br&gt;&amp;gt; 0.625967 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
&lt;br&gt;&amp;gt; 0000 &amp;nbsp;0c 00 00 00 03 00 1e 20-00 00 00 00 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;....... ....
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.625978 ptp2/ptp_usb_getresp(2): reading response
&lt;br&gt;&amp;gt; 0.625982 ptp2/ptp_usb_getpacket(2): getting next ptp packet
&lt;br&gt;&amp;gt; 0.625986 ptp2/ptp_usb_getpacket(2): queuing buffered response packet
&lt;br&gt;&amp;gt; 0.625992 ptp2/usb_getresp(0): request code 0x1001 getting resp error 0x201e
&lt;br&gt;&amp;gt; 0.626007 context(0): PTP Session Already Opened
&lt;/div&gt;&lt;br&gt;The communication is not in synch.
&lt;br&gt;&lt;br&gt;This could be the result of gvfs-gphoto2 , the Nautilus gphoto2 slave running
&lt;br&gt;and grabbing the camera.
&lt;br&gt;&lt;br&gt;run:
&lt;br&gt;gvfs-mount -l
&lt;br&gt;&lt;br&gt;to see if it is the case and 
&lt;br&gt;gvfs-mount -s gphoto2 
&lt;br&gt;to umount the camera from GVFS.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Ciao, Marcus
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Return on Information:
&lt;br&gt;Google Enterprise Search pays you back
&lt;br&gt;Get the facts.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/google-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/google-dev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26760937&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/D300s-tp26760415p26760937.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26760800</id>
	<title>Re: D300s</title>
	<published>2009-12-12T12:16:13Z</published>
	<updated>2009-12-12T12:16:13Z</updated>
	<author>
		<name>Andreas Dielacher</name>
	</author>
	<content type="html">Marcus Meissner wrote:
&lt;br&gt;&amp;gt; On Sat, Dec 12, 2009 at 08:26:21PM +0100, Andreas Dielacher wrote:
&lt;br&gt;&amp;gt; Does &amp;quot;gphoto2 -L&amp;quot; work?
&lt;br&gt;&lt;br&gt;Did not work, so i added the --debug switch:
&lt;br&gt;0.615326 gphoto2-port-usb(1): Looking for USB device (class 0x6, 
&lt;br&gt;subclass, 0x1, protocol 0x1)... found. 
&lt;br&gt;&lt;br&gt;0.615341 gphoto2-port-usb(2): inep to look for is 81 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.615355 gphoto2-port-usb(1): Detected defaults: config 1, interface 0, 
&lt;br&gt;altsetting 0, idVendor ID 04b0, idProduct 0425, inep 81, outep 02, intep 
&lt;br&gt;83
&lt;br&gt;0.615374 gphoto2-abilities-list.c(2): Found 'USB PTP Class Camera' 
&lt;br&gt;(0x6,0x1,0x1) 
&lt;br&gt;&lt;br&gt;0.615400 gphoto2-port(2): Freeing port... 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.615416 gphoto2-port(2): Closing port... 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.615692 gphoto2-camera(2): Setting abilities ('USB PTP Class 
&lt;br&gt;Camera')... 
&lt;br&gt;&lt;br&gt;0.615714 gphoto2-setting(2): Setting key 'model' to value 'USB PTP Class 
&lt;br&gt;Camera' (gphoto2) 
&lt;br&gt;&lt;br&gt;0.615732 gphoto2-setting(2): Saving 6 setting(s) to file 
&lt;br&gt;&amp;quot;/home/andi/.gphoto/settings&amp;quot; 
&lt;br&gt;&lt;br&gt;0.615985 gphoto2-port-info-list(2): Looking for path 'usb:' (10 entries 
&lt;br&gt;available)... 
&lt;br&gt;&lt;br&gt;0.616015 gphoto2-port-info-list(2): Getting info of entry 5 (10 
&lt;br&gt;available)... 
&lt;br&gt;&lt;br&gt;0.616033 gphoto2-camera(2): Setting port info for port 'Universal Serial 
&lt;br&gt;Bus' at 'usb:'... 
&lt;br&gt;&lt;br&gt;0.617274 gphoto2-port(2): Setting timeout to 5000 millisecond(s)... 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.617301 gphoto2-port(2): Setting settings... 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.617315 libusb(2): gp_port_usb_update(old int=0, conf=-1, alt=-1), (new 
&lt;br&gt;int=0, conf=-1, alt=-1) 
&lt;br&gt;&lt;br&gt;0.617331 gphoto2-setting(2): Setting key 'port' to value 'usb:' 
&lt;br&gt;(gphoto2) 
&lt;br&gt;&lt;br&gt;0.617346 gphoto2-setting(2): Saving 6 setting(s) to file 
&lt;br&gt;&amp;quot;/home/andi/.gphoto/settings&amp;quot; 
&lt;br&gt;&lt;br&gt;0.618366 foreach(2): Executing action 'List Files' for folder '/'. 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.622143 gphoto2-camera(2): Listing files in '/'... 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.622166 gphoto2-camera(2): Initializing camera... 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.622216 gphoto2-port(0): The supplied vendor or product id (0x0,0x0) is 
&lt;br&gt;not valid. 
&lt;br&gt;&lt;br&gt;0.622233 gphoto2-port-usb(1): Looking for USB device (class 0x6, 
&lt;br&gt;subclass, 0x1, protocol 0x1)... found. 
&lt;br&gt;&lt;br&gt;0.622246 gphoto2-port-usb(2): inep to look for is 81 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.622257 gphoto2-port-usb(1): Detected defaults: config 1, interface 0, 
&lt;br&gt;altsetting 0, idVendor ID 04b0, idProduct 0425, inep 81, outep 02, intep 
&lt;br&gt;83
&lt;br&gt;0.622272 gphoto2-camera(2): Loading '/usr/lib/libgphoto2/2.4.6/ptp2'... 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.622887 gphoto2-port(2): Opening USB port... 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.622908 libusb(2): gp_port_usb_open() 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.622972 libusb(2): claiming interface 0 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.623021 ptp2(2): maxpacketsize 512 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.623088 gphoto2-port(2): Setting timeout to 8000 millisecond(s)... 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.623109 ptp(2): PTP: Opening session 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.623131 gphoto2-port(2): Writing 16=0x10 byte(s) to port... 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.623149 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows: 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0000 &amp;nbsp;10 00 00 00 01 00 02 10-00 00 00 00 01 00 00 00 &amp;nbsp;................ 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;0.623706 ptp2/ptp_usb_getresp(2): reading response
&lt;br&gt;0.623731 ptp2/ptp_usb_getpacket(2): getting next ptp packet
&lt;br&gt;0.623747 gphoto2-port(2): Reading 512=0x200 bytes from port...
&lt;br&gt;0.624157 gphoto2-port(2): Could only read 11 out of 512 byte(s)
&lt;br&gt;0.624169 gphoto2-port(3): Hexdump of 11 = 0xb bytes follows:
&lt;br&gt;0000 &amp;nbsp;0c 00 00 00 03 00 03 20-04 00 00 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ....... ...
&lt;br&gt;&lt;br&gt;0.624176 ptp2/usb_getresp(0): request code 0x1002 getting resp error 0x2003
&lt;br&gt;0.624183 ptp2/camera_init(0): ptp_opensession returns 2003
&lt;br&gt;0.624188 ptp(2): PTP: Opening session
&lt;br&gt;0.624194 gphoto2-port(2): Writing 16=0x10 byte(s) to port...
&lt;br&gt;0.624200 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows:
&lt;br&gt;0000 &amp;nbsp;10 00 00 00 01 00 02 10-00 00 00 00 01 00 00 00 &amp;nbsp;................
&lt;br&gt;&lt;br&gt;0.625159 ptp2/ptp_usb_getresp(2): reading response
&lt;br&gt;0.625171 ptp2/ptp_usb_getpacket(2): getting next ptp packet
&lt;br&gt;0.625181 gphoto2-port(2): Reading 512=0x200 bytes from port...
&lt;br&gt;0.625428 gphoto2-port(2): Could only read 12 out of 512 byte(s)
&lt;br&gt;0.625461 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
&lt;br&gt;0000 &amp;nbsp;0c 00 00 00 03 00 01 20-00 00 00 00 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;....... ....
&lt;br&gt;&lt;br&gt;0.625485 gphoto2-port(2): Setting timeout to 20000 millisecond(s)...
&lt;br&gt;0.625512 gphoto2-port(2): Writing 12=0xc byte(s) to port...
&lt;br&gt;0.625528 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
&lt;br&gt;0000 &amp;nbsp;0c 00 00 00 01 00 01 10-01 00 00 00 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;............
&lt;br&gt;&lt;br&gt;0.625753 ptp2/ptp_usb_getdata(2): reading data
&lt;br&gt;0.625761 ptp2/ptp_usb_getpacket(2): getting next ptp packet
&lt;br&gt;0.625768 gphoto2-port(2): Reading 512=0x200 bytes from port...
&lt;br&gt;0.625959 gphoto2-port(2): Could only read 12 out of 512 byte(s)
&lt;br&gt;0.625967 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
&lt;br&gt;0000 &amp;nbsp;0c 00 00 00 03 00 1e 20-00 00 00 00 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;....... ....
&lt;br&gt;&lt;br&gt;0.625978 ptp2/ptp_usb_getresp(2): reading response
&lt;br&gt;0.625982 ptp2/ptp_usb_getpacket(2): getting next ptp packet
&lt;br&gt;0.625986 ptp2/ptp_usb_getpacket(2): queuing buffered response packet
&lt;br&gt;0.625992 ptp2/usb_getresp(0): request code 0x1001 getting resp error 0x201e
&lt;br&gt;0.626007 context(0): PTP Session Already Opened
&lt;br&gt;&lt;br&gt;*** Error ***
&lt;br&gt;PTP Session Already Opened
&lt;br&gt;0.626025 gphoto2-port(2): Closing port...
&lt;br&gt;0.626097 context(0): An error occurred in the io-library ('Unspecified 
&lt;br&gt;error'): The supplied vendor or product id (0x0,0x0) is not valid.
&lt;br&gt;&lt;br&gt;*** Error ***
&lt;br&gt;An error occurred in the io-library ('Unspecified error'): The supplied 
&lt;br&gt;vendor or product id (0x0,0x0) is not valid.
&lt;br&gt;*** Error (-1: 'Unspecified error') ***
&lt;br&gt;&lt;br&gt;For debugging messages, please use the --debug option.
&lt;br&gt;Debugging messages may help finding a solution to your problem.
&lt;br&gt;If you intend to send any error or debug messages to the gphoto
&lt;br&gt;developer mailing list &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26760800&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gphoto-devel@...&lt;/a&gt;&amp;gt;, please run
&lt;br&gt;gphoto2 as follows:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;env LANG=C gphoto2 --debug --debug-logfile=my-logfile.txt -L --debug
&lt;br&gt;&lt;br&gt;Please make sure there is sufficient quoting around the arguments.
&lt;br&gt;&lt;br&gt;0.626501 gp-camera(2): Freeing camera...
&lt;br&gt;0.626509 gphoto2-port(2): Freeing port...
&lt;br&gt;0.626515 gphoto2-port(2): Closing port...
&lt;br&gt;0.626556 gphoto2-filesystem(2): resetting filesystem
&lt;br&gt;0.626561 libgphoto2/gphoto2-filesys.c(2): Clearing fscache LRU list...
&lt;br&gt;0.626565 libgphoto2/gphoto2-filesys.c(2): fscache LRU list already empty
&lt;br&gt;0.626569 gphoto2-filesystem(2): Internally deleting all folders from '/'...
&lt;br&gt;0.626575 gphoto2-filesystem(2): Lookup folder '/'...
&lt;br&gt;0.626579 gphoto2-filesystem(2): Found! / is 0x22d4440
&lt;br&gt;0.626583 gphoto2-filesystem(2): Recurse delete folder 0x22d4440
&lt;br&gt;&lt;br&gt;Andi
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Return on Information:
&lt;br&gt;Google Enterprise Search pays you back
&lt;br&gt;Get the facts.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/google-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/google-dev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26760800&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/D300s-tp26760415p26760800.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26760557</id>
	<title>Re: D300s</title>
	<published>2009-12-12T11:46:19Z</published>
	<updated>2009-12-12T11:46:19Z</updated>
	<author>
		<name>Marcus Meissner</name>
	</author>
	<content type="html">On Sat, Dec 12, 2009 at 08:26:21PM +0100, Andreas Dielacher wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I recently got a D300s and tried to connect it under Kubuntu 9.10. 
&lt;br&gt;&amp;gt; digiKam (which uses libgphoto) is unable to connect. I tried with gtkam, 
&lt;br&gt;&amp;gt; digikam, command line and had no success. In command line i tried:
&lt;br&gt;&amp;gt; gphoto2 --auto-detect --debug
&lt;br&gt;&amp;gt; Here is the output:
&lt;br&gt;&amp;gt; 0.000418 main(2): ALWAYS INCLUDE THE FOLLOWING LINES WHEN SENDING DEBUG 
&lt;br&gt;&amp;gt; MESSAGES TO THE MAILING LIST: 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.000495 main(2): gphoto2 2.4.5 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.000512 main(2): gphoto2 has been compiled with the following options: 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.000523 main(2): &amp;nbsp;+ gcc (C compiler used) 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.000534 main(2): &amp;nbsp;+ popt (mandatory, for handling command-line 
&lt;br&gt;&amp;gt; parameters) 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.000544 main(2): &amp;nbsp;+ exif (for displaying EXIF information) 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.000554 main(2): &amp;nbsp;+ cdk (for accessing configuration options) 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.000565 main(2): &amp;nbsp;+ aa (for displaying live previews) 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.000575 main(2): &amp;nbsp;+ jpeg (for displaying live previews in JPEG format) 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.000585 main(2): &amp;nbsp;+ readline (for easy navigation in the shell) 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.000600 main(2): libgphoto2 2.4.6 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.000618 main(2): libgphoto2 has been compiled with the following 
&lt;br&gt;&amp;gt; options: 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.000628 main(2): &amp;nbsp;+ gcc (C compiler used) 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.000641 main(2): &amp;nbsp;+ ltdl (for portable loading of camlibs) 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.000651 main(2): &amp;nbsp;+ EXIF (for special handling of EXIF files) 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.000664 main(2): libgphoto2_port 0.8.0 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.000677 main(2): libgphoto2_port has been compiled with the following 
&lt;br&gt;&amp;gt; options: 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.000688 main(2): &amp;nbsp;+ gcc (C compiler used) 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.000698 main(2): &amp;nbsp;+ ltdl (for portable loading of camlibs) 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.000708 main(2): &amp;nbsp;+ USB (libusb, for USB cameras) 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.000718 main(2): &amp;nbsp;+ serial (for serial cameras) 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.000728 main(2): &amp;nbsp;+ no resmgr (serial port access and locking) 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.000738 main(2): &amp;nbsp;+ no baudboy (serial port locking) 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.000748 main(2): &amp;nbsp;+ no ttylock (serial port locking) 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.000758 main(2): &amp;nbsp;+ no lockdev (serial port locking) 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.000769 main(2): CAMLIBS env var not set, using compile-time default 
&lt;br&gt;&amp;gt; instead 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.000779 main(2): IOLIBS env var not set, using compile-time default 
&lt;br&gt;&amp;gt; instead 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.000821 setting/gphoto2-setting.c(2): Creating $HOME/.gphoto 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.000928 setting/gphoto2-setting.c(2): Loading settings from file 
&lt;br&gt;&amp;gt; &amp;quot;/home/andi/.gphoto/settings&amp;quot; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.001231 gphoto2-port-info-list(2): Using ltdl to load io-drivers from 
&lt;br&gt;&amp;gt; '/usr/lib/libgphoto2_port/0.8.0'... 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.001417 gphoto2-port-info-list(2): Called for filename 
&lt;br&gt;&amp;gt; '/usr/lib/libgphoto2_port/0.8.0/disk'. 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;lt;snip&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.010597 gphoto2-port-info-list(2): Could not load port driver list: 
&lt;br&gt;&amp;gt; 'Unspecified error'. 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.010618 gphoto2-port-info-list(2): Called for filename 
&lt;br&gt;&amp;gt; '/usr/lib/libgphoto2_port/0.8.0/ptpip'. 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.011039 gphoto2-port-info-list(2): Loaded 'PTP/IP Connection' 
&lt;br&gt;&amp;gt; ('ptpip:') from '/usr/lib/libgphoto2_port/0.8.0/ptpip'. 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.011067 gphoto2-port-info-list(2): Loaded '' ('^ptpip') from 
&lt;br&gt;&amp;gt; '/usr/lib/libgphoto2_port/0.8.0/ptpip'. 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.011084 gphoto2-port-info-list(2): Called for filename 
&lt;br&gt;&amp;gt; '/usr/lib/libgphoto2_port/0.8.0/serial'. 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.011643 gphoto2-port-info-list(2): Loaded 'Serial Port 0' 
&lt;br&gt;&amp;gt; ('serial:/dev/ttyS0') from '/usr/lib/libgphoto2_port/0.8.0/serial'. 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.011666 gphoto2-port-info-list(2): Loaded 'Serial Port 1' 
&lt;br&gt;&amp;gt; ('serial:/dev/ttyS1') from '/usr/lib/libgphoto2_port/0.8.0/serial'. 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.011682 gphoto2-port-info-list(2): Loaded 'Serial Port 2' 
&lt;br&gt;&amp;gt; ('serial:/dev/ttyS2') from '/usr/lib/libgphoto2_port/0.8.0/serial'. 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.011698 gphoto2-port-info-list(2): Loaded 'Serial Port 3' 
&lt;br&gt;&amp;gt; ('serial:/dev/ttyS3') from '/usr/lib/libgphoto2_port/0.8.0/serial'. 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.011714 gphoto2-port-info-list(2): Loaded '' ('^serial') from 
&lt;br&gt;&amp;gt; '/usr/lib/libgphoto2_port/0.8.0/serial'. 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.011729 gphoto2-port-info-list(2): Called for filename 
&lt;br&gt;&amp;gt; '/usr/lib/libgphoto2_port/0.8.0/usb'. 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.486913 gphoto2-port-info-list(2): Loaded 'Universal Serial Bus' 
&lt;br&gt;&amp;gt; ('usb:') from '/usr/lib/libgphoto2_port/0.8.0/usb'. 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.486951 gphoto2-port-info-list(2): Loaded '' ('^usb:') from 
&lt;br&gt;&amp;gt; '/usr/lib/libgphoto2_port/0.8.0/usb'. 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.486988 gphoto2-port-info-list(2): Counting entries (10 available)... 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.487005 gphoto2-port-info-list(2): 6 regular entries available. 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.487019 gphoto2-port-info-list(2): Counting entries (10 available)... 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 0.487034 gphoto2-port-info-list(2): 6 regular entries available. 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;lt;snip&amp;gt;
&lt;br&gt;&amp;gt; 0.578252 gphoto2-port-usb(1): Looking for USB device (class 0x6, 
&lt;br&gt;&amp;gt; subclass, 0x1, protocol 0x1)... found.
&lt;br&gt;&amp;gt; 0.578268 gphoto2-port-usb(2): inep to look for is 81
&lt;br&gt;&amp;gt; 0.578279 gphoto2-port-usb(1): Detected defaults: config 1, interface 0, 
&lt;br&gt;&amp;gt; altsetting 0, idVendor ID 04b0, idProduct 0425, inep 81, outep 02, intep 83
&lt;br&gt;&amp;gt; 0.578297 gphoto2-abilities-list.c(2): Found 'USB PTP Class Camera' 
&lt;br&gt;&amp;gt; (0x6,0x1,0x1)
&lt;br&gt;&amp;gt; 0.578326 gphoto2-port(2): Freeing port...
&lt;br&gt;&amp;gt; 0.578344 gphoto2-port(2): Closing port...
&lt;br&gt;&amp;gt; Model &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Port
&lt;br&gt;&amp;gt; ----------------------------------------------------------
&lt;br&gt;&amp;gt; USB PTP Class Camera &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; usb:
&lt;br&gt;&amp;gt; 0.579846 gp-camera(2): Freeing camera...
&lt;br&gt;&amp;gt; 0.579879 gphoto2-port(2): Freeing port...
&lt;br&gt;&amp;gt; 0.579900 gphoto2-filesystem(2): resetting filesystem
&lt;br&gt;&amp;gt; 0.579911 libgphoto2/gphoto2-filesys.c(2): Clearing fscache LRU list...
&lt;br&gt;&amp;gt; 0.579922 libgphoto2/gphoto2-filesys.c(2): fscache LRU list already empty
&lt;br&gt;&amp;gt; 0.579932 gphoto2-filesystem(2): Internally deleting all folders from '/'...
&lt;br&gt;&amp;gt; 0.579946 gphoto2-filesystem(2): Lookup folder '/'...
&lt;br&gt;&amp;gt; 0.579957 gphoto2-filesystem(2): Found! / is 0x2060440
&lt;br&gt;&amp;gt; 0.579968 gphoto2-filesystem(2): Recurse delete folder 0x2060440
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Any idea whats going wrong?
&lt;/div&gt;&lt;br&gt;This looks totally fine, just that it is detected as generic PTP camera.
&lt;br&gt;&lt;br&gt;Does &amp;quot;gphoto2 -L&amp;quot; work?
&lt;br&gt;&lt;br&gt;Ciao, Marcus
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Return on Information:
&lt;br&gt;Google Enterprise Search pays you back
&lt;br&gt;Get the facts.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/google-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/google-dev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26760557&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/D300s-tp26760415p26760557.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26760415</id>
	<title>D300s</title>
	<published>2009-12-12T11:26:21Z</published>
	<updated>2009-12-12T11:26:21Z</updated>
	<author>
		<name>Andreas Dielacher</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;I recently got a D300s and tried to connect it under Kubuntu 9.10. 
&lt;br&gt;digiKam (which uses libgphoto) is unable to connect. I tried with gtkam, 
&lt;br&gt;digikam, command line and had no success. In command line i tried:
&lt;br&gt;gphoto2 --auto-detect --debug
&lt;br&gt;Here is the output:
&lt;br&gt;0.000418 main(2): ALWAYS INCLUDE THE FOLLOWING LINES WHEN SENDING DEBUG 
&lt;br&gt;MESSAGES TO THE MAILING LIST: 
&lt;br&gt;&lt;br&gt;0.000495 main(2): gphoto2 2.4.5 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.000512 main(2): gphoto2 has been compiled with the following options: 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.000523 main(2): &amp;nbsp;+ gcc (C compiler used) 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.000534 main(2): &amp;nbsp;+ popt (mandatory, for handling command-line 
&lt;br&gt;parameters) 
&lt;br&gt;&lt;br&gt;0.000544 main(2): &amp;nbsp;+ exif (for displaying EXIF information) 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.000554 main(2): &amp;nbsp;+ cdk (for accessing configuration options) 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.000565 main(2): &amp;nbsp;+ aa (for displaying live previews) 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.000575 main(2): &amp;nbsp;+ jpeg (for displaying live previews in JPEG format) 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.000585 main(2): &amp;nbsp;+ readline (for easy navigation in the shell) 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.000600 main(2): libgphoto2 2.4.6 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.000618 main(2): libgphoto2 has been compiled with the following 
&lt;br&gt;options: 
&lt;br&gt;&lt;br&gt;0.000628 main(2): &amp;nbsp;+ gcc (C compiler used) 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.000641 main(2): &amp;nbsp;+ ltdl (for portable loading of camlibs) 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.000651 main(2): &amp;nbsp;+ EXIF (for special handling of EXIF files) 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.000664 main(2): libgphoto2_port 0.8.0 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.000677 main(2): libgphoto2_port has been compiled with the following 
&lt;br&gt;options: 
&lt;br&gt;&lt;br&gt;0.000688 main(2): &amp;nbsp;+ gcc (C compiler used) 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.000698 main(2): &amp;nbsp;+ ltdl (for portable loading of camlibs) 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.000708 main(2): &amp;nbsp;+ USB (libusb, for USB cameras) 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.000718 main(2): &amp;nbsp;+ serial (for serial cameras) 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.000728 main(2): &amp;nbsp;+ no resmgr (serial port access and locking) 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.000738 main(2): &amp;nbsp;+ no baudboy (serial port locking) 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.000748 main(2): &amp;nbsp;+ no ttylock (serial port locking) 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.000758 main(2): &amp;nbsp;+ no lockdev (serial port locking) 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.000769 main(2): CAMLIBS env var not set, using compile-time default 
&lt;br&gt;instead 
&lt;br&gt;&lt;br&gt;0.000779 main(2): IOLIBS env var not set, using compile-time default 
&lt;br&gt;instead 
&lt;br&gt;&lt;br&gt;0.000821 setting/gphoto2-setting.c(2): Creating $HOME/.gphoto 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.000928 setting/gphoto2-setting.c(2): Loading settings from file 
&lt;br&gt;&amp;quot;/home/andi/.gphoto/settings&amp;quot; 
&lt;br&gt;&lt;br&gt;0.001231 gphoto2-port-info-list(2): Using ltdl to load io-drivers from 
&lt;br&gt;'/usr/lib/libgphoto2_port/0.8.0'... 
&lt;br&gt;&lt;br&gt;0.001417 gphoto2-port-info-list(2): Called for filename 
&lt;br&gt;'/usr/lib/libgphoto2_port/0.8.0/disk'. 
&lt;br&gt;&lt;br&gt;&amp;lt;snip&amp;gt; 
&lt;br&gt;&lt;br&gt;0.010597 gphoto2-port-info-list(2): Could not load port driver list: 
&lt;br&gt;'Unspecified error'. 
&lt;br&gt;&lt;br&gt;0.010618 gphoto2-port-info-list(2): Called for filename 
&lt;br&gt;'/usr/lib/libgphoto2_port/0.8.0/ptpip'. 
&lt;br&gt;&lt;br&gt;0.011039 gphoto2-port-info-list(2): Loaded 'PTP/IP Connection' 
&lt;br&gt;('ptpip:') from '/usr/lib/libgphoto2_port/0.8.0/ptpip'. 
&lt;br&gt;&lt;br&gt;0.011067 gphoto2-port-info-list(2): Loaded '' ('^ptpip') from 
&lt;br&gt;'/usr/lib/libgphoto2_port/0.8.0/ptpip'. 
&lt;br&gt;&lt;br&gt;0.011084 gphoto2-port-info-list(2): Called for filename 
&lt;br&gt;'/usr/lib/libgphoto2_port/0.8.0/serial'. 
&lt;br&gt;&lt;br&gt;0.011643 gphoto2-port-info-list(2): Loaded 'Serial Port 0' 
&lt;br&gt;('serial:/dev/ttyS0') from '/usr/lib/libgphoto2_port/0.8.0/serial'. 
&lt;br&gt;&lt;br&gt;0.011666 gphoto2-port-info-list(2): Loaded 'Serial Port 1' 
&lt;br&gt;('serial:/dev/ttyS1') from '/usr/lib/libgphoto2_port/0.8.0/serial'. 
&lt;br&gt;&lt;br&gt;0.011682 gphoto2-port-info-list(2): Loaded 'Serial Port 2' 
&lt;br&gt;('serial:/dev/ttyS2') from '/usr/lib/libgphoto2_port/0.8.0/serial'. 
&lt;br&gt;&lt;br&gt;0.011698 gphoto2-port-info-list(2): Loaded 'Serial Port 3' 
&lt;br&gt;('serial:/dev/ttyS3') from '/usr/lib/libgphoto2_port/0.8.0/serial'. 
&lt;br&gt;&lt;br&gt;0.011714 gphoto2-port-info-list(2): Loaded '' ('^serial') from 
&lt;br&gt;'/usr/lib/libgphoto2_port/0.8.0/serial'. 
&lt;br&gt;&lt;br&gt;0.011729 gphoto2-port-info-list(2): Called for filename 
&lt;br&gt;'/usr/lib/libgphoto2_port/0.8.0/usb'. 
&lt;br&gt;&lt;br&gt;0.486913 gphoto2-port-info-list(2): Loaded 'Universal Serial Bus' 
&lt;br&gt;('usb:') from '/usr/lib/libgphoto2_port/0.8.0/usb'. 
&lt;br&gt;&lt;br&gt;0.486951 gphoto2-port-info-list(2): Loaded '' ('^usb:') from 
&lt;br&gt;'/usr/lib/libgphoto2_port/0.8.0/usb'. 
&lt;br&gt;&lt;br&gt;0.486988 gphoto2-port-info-list(2): Counting entries (10 available)... 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.487005 gphoto2-port-info-list(2): 6 regular entries available. 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.487019 gphoto2-port-info-list(2): Counting entries (10 available)... 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;0.487034 gphoto2-port-info-list(2): 6 regular entries available. 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&amp;lt;snip&amp;gt;
&lt;br&gt;0.578252 gphoto2-port-usb(1): Looking for USB device (class 0x6, 
&lt;br&gt;subclass, 0x1, protocol 0x1)... found.
&lt;br&gt;0.578268 gphoto2-port-usb(2): inep to look for is 81
&lt;br&gt;0.578279 gphoto2-port-usb(1): Detected defaults: config 1, interface 0, 
&lt;br&gt;altsetting 0, idVendor ID 04b0, idProduct 0425, inep 81, outep 02, intep 83
&lt;br&gt;0.578297 gphoto2-abilities-list.c(2): Found 'USB PTP Class Camera' 
&lt;br&gt;(0x6,0x1,0x1)
&lt;br&gt;0.578326 gphoto2-port(2): Freeing port...
&lt;br&gt;0.578344 gphoto2-port(2): Closing port...
&lt;br&gt;Model &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Port
&lt;br&gt;----------------------------------------------------------
&lt;br&gt;USB PTP Class Camera &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; usb:
&lt;br&gt;0.579846 gp-camera(2): Freeing camera...
&lt;br&gt;0.579879 gphoto2-port(2): Freeing port...
&lt;br&gt;0.579900 gphoto2-filesystem(2): resetting filesystem
&lt;br&gt;0.579911 libgphoto2/gphoto2-filesys.c(2): Clearing fscache LRU list...
&lt;br&gt;0.579922 libgphoto2/gphoto2-filesys.c(2): fscache LRU list already empty
&lt;br&gt;0.579932 gphoto2-filesystem(2): Internally deleting all folders from '/'...
&lt;br&gt;0.579946 gphoto2-filesystem(2): Lookup folder '/'...
&lt;br&gt;0.579957 gphoto2-filesystem(2): Found! / is 0x2060440
&lt;br&gt;0.579968 gphoto2-filesystem(2): Recurse delete folder 0x2060440
&lt;br&gt;&lt;br&gt;Any idea whats going wrong?
&lt;br&gt;&lt;br&gt;Best regards,
&lt;br&gt;Andi
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Return on Information:
&lt;br&gt;Google Enterprise Search pays you back
&lt;br&gt;Get the facts.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/google-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/google-dev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26760415&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/D300s-tp26760415p26760415.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26727744</id>
	<title>changed behaviour for &quot;camera_wait_for_event&quot;</title>
	<published>2009-12-10T06:02:47Z</published>
	<updated>2009-12-10T06:02:47Z</updated>
	<author>
		<name>Sergey Kruk</name>
	</author>
	<content type="html">Hello, Marcus!
&lt;br&gt;&lt;br&gt;I looked into it more attentively. The difference in process between
&lt;br&gt;Nikon D3000 and Nikon D80.
&lt;br&gt;&lt;br&gt;For D3000 in the shell:
&lt;br&gt;&lt;br&gt;gphoto2:&amp;gt; cd store_00010001/DCIM/100D3000
&lt;br&gt;Remote directory now '/store_00010001/DCIM/100D3000'.
&lt;br&gt;gphoto2:&amp;gt; ls
&lt;br&gt;DSC_0001.JPG        DSC_0002.JPG        DSC_0003.JPG        DSC_0004.JPG
&lt;br&gt;DSC_0005.JPG        DSC_0006.JPG        DSC_0007.JPG
&lt;br&gt;gphoto2:&amp;gt; wait-event
&lt;br&gt;&lt;br&gt;Here no output. Because it's timeout. After I see prompt, i press
&lt;br&gt;release button on camera three times. And then
&lt;br&gt;&lt;br&gt;gphoto2:&amp;gt; wait-event
&lt;br&gt;FILEADDED DSC_0008.JPG /store_00010001/DCIM/100D3000
&lt;br&gt;gphoto2:&amp;gt; wait-event
&lt;br&gt;UNKNOWN PTP Event 400c, Param1 00010001
&lt;br&gt;gphoto2:&amp;gt; wait-event
&lt;br&gt;FILEADDED DSC_0009.JPG /store_00010001/DCIM/100D3000
&lt;br&gt;gphoto2:&amp;gt; wait-event
&lt;br&gt;UNKNOWN PTP Event 400c, Param1 00010001
&lt;br&gt;gphoto2:&amp;gt; wait-event
&lt;br&gt;FILEADDED DSC_0010.JPG /store_00010001/DCIM/100D3000
&lt;br&gt;gphoto2:&amp;gt; wait-event
&lt;br&gt;UNKNOWN PTP Event 400c, Param1 00010001
&lt;br&gt;gphoto2:&amp;gt; wait-event
&lt;br&gt;&lt;br&gt;Again, no output. Timeout. It's totally ok.
&lt;br&gt;&lt;br&gt;gphoto2:&amp;gt; ls
&lt;br&gt;DSC_0001.JPG        DSC_0002.JPG        DSC_0003.JPG        DSC_0004.JPG
&lt;br&gt;DSC_0005.JPG        DSC_0006.JPG        DSC_0007.JPG        DSC_0008.JPG
&lt;br&gt;DSC_0009.JPG        DSC_0010.JPG
&lt;br&gt;gphoto2:&amp;gt; capture-image
&lt;br&gt;New file is in location /store_00010001/DCIM/100D3000/DSC_0011.JPG on the camera
&lt;br&gt;gphoto2:&amp;gt; wait-event
&lt;br&gt;gphoto2:&amp;gt; ls
&lt;br&gt;DSC_0001.JPG        DSC_0002.JPG        DSC_0003.JPG        DSC_0004.JPG
&lt;br&gt;DSC_0005.JPG        DSC_0006.JPG        DSC_0007.JPG        DSC_0008.JPG
&lt;br&gt;DSC_0009.JPG        DSC_0010.JPG        DSC_0011.JPG
&lt;br&gt;gphoto2:&amp;gt; q
&lt;br&gt;&lt;br&gt;Hurray! Everything is ok!
&lt;br&gt;This is considered a correct behaviour. Now with D80 in the shell:
&lt;br&gt;&lt;br&gt;gphoto2:&amp;gt; cd store_00010001/DCIM/100NCD80
&lt;br&gt;Remote directory now '/store_00010001/DCIM/100NCD80'.
&lt;br&gt;gphoto2:&amp;gt; ls
&lt;br&gt;DSC_0001.JPG        DSC_0002.JPG        DSC_0003.JPG        DSC_0004.JPG
&lt;br&gt;DSC_0005.JPG        DSC_0006.JPG        DSC_0007.JPG        DSC_0008.JPG
&lt;br&gt;DSC_0009.JPG        DSC_0010.JPG
&lt;br&gt;gphoto2:&amp;gt; wait-event
&lt;br&gt;&lt;br&gt;No output. Timeout. Ok. Press button three times
&lt;br&gt;&lt;br&gt;gphoto2:&amp;gt; wait-event
&lt;br&gt;FILEADDED DSC_0011.JPG /store_00010001/DCIM/100NCD80
&lt;br&gt;gphoto2:&amp;gt; wait-event
&lt;br&gt;gphoto2:&amp;gt; wait-event
&lt;br&gt;&lt;br&gt;Two timeouts! What happened?
&lt;br&gt;&lt;br&gt;gphoto2:&amp;gt; ls
&lt;br&gt;DSC_0001.JPG        DSC_0002.JPG        DSC_0003.JPG        DSC_0004.JPG
&lt;br&gt;DSC_0005.JPG        DSC_0006.JPG        DSC_0007.JPG        DSC_0008.JPG
&lt;br&gt;DSC_0009.JPG        DSC_0010.JPG        DSC_0011.JPG
&lt;br&gt;gphoto2:&amp;gt; capture-image
&lt;br&gt;New file is in location /store_00010001/DCIM/100NCD80/DSC_0014.JPG on the camera
&lt;br&gt;gphoto2:&amp;gt; wait-event
&lt;br&gt;&lt;br&gt;*** Error ***
&lt;br&gt;Could not append 'DSC_0014.JPG' to folder
&lt;br&gt;'/store_00010001/DCIM/100NCD80' because this file already exists.
&lt;br&gt;*** Error (-103: 'File exists') ***
&lt;br&gt;gphoto2:&amp;gt; ls
&lt;br&gt;DSC_0001.JPG        DSC_0002.JPG        DSC_0003.JPG        DSC_0004.JPG
&lt;br&gt;DSC_0005.JPG        DSC_0006.JPG        DSC_0007.JPG        DSC_0008.JPG
&lt;br&gt;DSC_0009.JPG        DSC_0010.JPG        DSC_0011.JPG        DSC_0014.JPG
&lt;br&gt;gphoto2:&amp;gt; q
&lt;br&gt;&lt;br&gt;I have to quit to reset filesystem. Now entering again:
&lt;br&gt;&lt;br&gt;gphoto2:&amp;gt; cd store_00010001/DCIM/100NCD80
&lt;br&gt;Remote directory now '/store_00010001/DCIM/100NCD80'.
&lt;br&gt;gphoto2:&amp;gt; ls
&lt;br&gt;DSC_0001.JPG        DSC_0002.JPG        DSC_0003.JPG        DSC_0004.JPG
&lt;br&gt;DSC_0005.JPG        DSC_0006.JPG        DSC_0007.JPG        DSC_0008.JPG
&lt;br&gt;DSC_0009.JPG        DSC_0010.JPG        DSC_0011.JPG        DSC_0012.JPG
&lt;br&gt;DSC_0013.JPG        DSC_0014.JPG
&lt;br&gt;gphoto2:&amp;gt; q
&lt;br&gt;&lt;br&gt;Now all files are in place but it costed me. :)
&lt;br&gt;The problem is, that i had the same correct behaviour with 2.4.2 and
&lt;br&gt;D80 as I have now with 2.4.7 and D3000. I'm not afraid of UNKNOWN
&lt;br&gt;events so that is the best I can get.
&lt;br&gt;&lt;br&gt;How this applies to my rubygem (gphoto4ruby). The problem is: when
&lt;br&gt;compiled against different versions of libgphoto it behaves
&lt;br&gt;differently with the same camera (D80). And behaviour for newer
&lt;br&gt;version of library is incorrect (unusable).
&lt;br&gt;&lt;br&gt;I saw there was a great change made to
&lt;br&gt;camlibs/ptp2/library.c/camera_wait_for_event function (which is used
&lt;br&gt;in this case I guess) since 2.4.2. But the question is, can this
&lt;br&gt;changes be done without breaking behaviour for older cameras?
&lt;br&gt;&lt;br&gt;Here attached non edited scripts from above for D80 and D3000 with
&lt;br&gt;libgphoto2 2.4.7
&lt;br&gt;&lt;br&gt;Sincerely,
&lt;br&gt;Sergey Kruk
&lt;br&gt;================================================
&lt;br&gt;On Thu, Dec 10, 2009 at 12:18 PM, Marcus Meissner &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26727744&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;marcus@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Mon, Dec 07, 2009 at 08:39:39PM +0300, Sergey Kruk wrote:
&lt;br&gt;&amp;gt;&amp;gt; I use libgphoto2 to manage Nikon D80, D90 and D3000 cameras. Recently
&lt;br&gt;&amp;gt;&amp;gt; I tried to move my project from libgphoto2-2.4.2 to 2.4.6 or 2.4.7 and
&lt;br&gt;&amp;gt;&amp;gt; I noticed behaviour change, that was not mentioned in changelogs.
&lt;br&gt;&amp;gt;&amp;gt; Since everything happens to one camera instace inside C program this
&lt;br&gt;&amp;gt;&amp;gt; is better demostrated inside gphoto2 --shell (this cannot be seen in
&lt;br&gt;&amp;gt;&amp;gt; command line version, only inside shell):
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; 1. In 2.4.7 when I run inside shell &amp;quot;capture-image&amp;quot; followed by
&lt;br&gt;&amp;gt;&amp;gt; &amp;quot;wait-event&amp;quot;, the second one reports that a file was added -- the
&lt;br&gt;&amp;gt;&amp;gt; captured one. And sometimes it gives error saying that file already
&lt;br&gt;&amp;gt;&amp;gt; exists. That is not the case with 2.4.2, where capture command
&lt;br&gt;&amp;gt;&amp;gt; followed by wait command could only give timeout.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; capture-image already reads until it gets 1 object added event
&lt;br&gt;&amp;gt; itself.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Only if you are shooting NEF+JPEG dual mode, wait-event should
&lt;br&gt;&amp;gt; return new images.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; That it returned the image that capture-image already reported
&lt;br&gt;&amp;gt; would have been a bug in 2.4.2.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; 2. In 2.4.2 I could manually press camera's release button several
&lt;br&gt;&amp;gt;&amp;gt; times while in the shell, and than run same number of times
&lt;br&gt;&amp;gt;&amp;gt; &amp;quot;wait-event&amp;quot;. Each time I would get next file name in FILEADDED event.
&lt;br&gt;&amp;gt;&amp;gt; Now with 2.4.7 after i press camera's release button several times I
&lt;br&gt;&amp;gt;&amp;gt; only get one &amp;quot;FILEADDED&amp;quot; event followed by timeouts. And files list is
&lt;br&gt;&amp;gt;&amp;gt; never updated until I do somethig like &amp;quot;capture-image&amp;quot;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If you are the gphoto2 shell prompt, gphoto is not polling the
&lt;br&gt;&amp;gt; interrupt queue... So interrupts might get lost.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The reliable way is to do:
&lt;br&gt;&amp;gt;        gphoto2 --wait-event 100s               # 100 seconds
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;        (just 100 without s would be 100 events)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; and then do the shutter pressing actions.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Or if you want to download FILEADDED files immediately, do
&lt;br&gt;&amp;gt;        gphoto2 --wait-event-and-download 100s
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; While first case is arguably a bug, the second one in my opinion clearly is.
&lt;br&gt;&amp;gt;&amp;gt; Is &amp;quot;wait&amp;quot;-functionality supported or is it more of experimental
&lt;br&gt;&amp;gt;&amp;gt; feature aside from main functionality? Should it be reported?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Well, you have reported it by your mail. :)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; It is functionality that is developing, so it might have flaws. But for above
&lt;br&gt;&amp;gt; purposes it should work, with the corner condition that wait-event runs for
&lt;br&gt;&amp;gt; polling.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Ciao, Marcus
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;gphoto2: {gphoto2: {...folder} /&amp;gt; } /&amp;gt; cd store_00010001/DCIM/100NCD80
&lt;br&gt;Remote directory now '/store_00010001/DCIM/100NCD80'.
&lt;br&gt;gphoto2: {gphoto2: {...folder} /store_00010001/DCIM/100NCD80&amp;gt; } /store_00010001/DCIM/100NCD80&amp;gt; ls
&lt;br&gt;DSC_0001.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0002.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0003.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0004.JPG
&lt;br&gt;DSC_0005.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0006.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0007.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0008.JPG
&lt;br&gt;DSC_0009.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0010.JPG
&lt;br&gt;gphoto2: {gphoto2: {...folder} /store_00010001/DCIM/100NCD80&amp;gt; } /store_00010001/DCIM/100NCD80&amp;gt; wait-event
&lt;br&gt;gphoto2: {gphoto2: {...folder} /store_00010001/DCIM/100NCD80&amp;gt; } /store_00010001/DCIM/100NCD80&amp;gt; wait-event # press release buttom 3 times
&lt;br&gt;FILEADDED DSC_0011.JPG /store_00010001/DCIM/100NCD80
&lt;br&gt;gphoto2: {gphoto2: {...folder} /store_00010001/DCIM/100NCD80&amp;gt; } /store_00010001/DCIM/100NCD80&amp;gt; wait-event
&lt;br&gt;gphoto2: {gphoto2: {...folder} /store_00010001/DCIM/100NCD80&amp;gt; } /store_00010001/DCIM/100NCD80&amp;gt; wait-event
&lt;br&gt;gphoto2: {gphoto2: {...folder} /store_00010001/DCIM/100NCD80&amp;gt; } /store_00010001/DCIM/100NCD80&amp;gt; ls
&lt;br&gt;DSC_0001.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0002.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0003.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0004.JPG
&lt;br&gt;DSC_0005.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0006.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0007.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0008.JPG
&lt;br&gt;DSC_0009.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0010.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0011.JPG
&lt;br&gt;gphoto2: {gphoto2: {...folder} /store_00010001/DCIM/100NCD80&amp;gt; } /store_00010001/DCIM/100NCD80&amp;gt; capture-image
&lt;br&gt;New file is in location /store_00010001/DCIM/100NCD80/DSC_0014.JPG on the camera
&lt;br&gt;gphoto2: {gphoto2: {...folder} /store_00010001/DCIM/100NCD80&amp;gt; } /store_00010001/DCIM/100NCD80&amp;gt; wait-event
&lt;br&gt;&lt;br&gt;*** Error ***
&lt;br&gt;Could not append 'DSC_0014.JPG' to folder '/store_00010001/DCIM/100NCD80' because this file already exists.
&lt;br&gt;*** Error (-103: 'File exists') ***
&lt;br&gt;gphoto2: {gphoto2: {...folder} /store_00010001/DCIM/100NCD80&amp;gt; } /store_00010001/DCIM/100NCD80&amp;gt; ls
&lt;br&gt;DSC_0001.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0002.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0003.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0004.JPG
&lt;br&gt;DSC_0005.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0006.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0007.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0008.JPG
&lt;br&gt;DSC_0009.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0010.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0011.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0014.JPG
&lt;br&gt;gphoto2: {gphoto2: {...folder} /store_00010001/DCIM/100NCD80&amp;gt; } /store_00010001/DCIM/100NCD80&amp;gt; q
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;gphoto2: {gphoto2: {...folder} /&amp;gt; } /&amp;gt; cd store_00010001/DCIM/100NCD80
&lt;br&gt;Remote directory now '/store_00010001/DCIM/100NCD80'.
&lt;br&gt;gphoto2: {gphoto2: {...folder} /store_00010001/DCIM/100NCD80&amp;gt; } /store_00010001/DCIM/100NCD80&amp;gt; ls
&lt;br&gt;DSC_0001.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0002.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0003.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0004.JPG
&lt;br&gt;DSC_0005.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0006.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0007.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0008.JPG
&lt;br&gt;DSC_0009.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0010.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0011.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0012.JPG
&lt;br&gt;DSC_0013.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0014.JPG
&lt;br&gt;gphoto2: {gphoto2: {...folder} /store_00010001/DCIM/100NCD80&amp;gt; } /store_00010001/DCIM/100NCD80&amp;gt; q
&lt;br&gt;&lt;br /&gt;gphoto2: {gphoto2: {...folder} /&amp;gt; } /&amp;gt; cd store_00010001/DCIM/100D3000
&lt;br&gt;Remote directory now '/store_00010001/DCIM/100D3000'.
&lt;br&gt;gphoto2: {gphoto2: {...folder} /store_00010001/DCIM/100D3000&amp;gt; } /store_00010001/DCIM/100D3000&amp;gt; ls
&lt;br&gt;DSC_0001.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0002.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0003.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0004.JPG
&lt;br&gt;DSC_0005.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0006.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0007.JPG
&lt;br&gt;gphoto2: {gphoto2: {...folder} /store_00010001/DCIM/100D3000&amp;gt; } /store_00010001/DCIM/100D3000&amp;gt; wait-event
&lt;br&gt;gphoto2: {gphoto2: {...folder} /store_00010001/DCIM/100D3000&amp;gt; } /store_00010001/DCIM/100D3000&amp;gt; wait-event
&lt;br&gt;FILEADDED DSC_0008.JPG /store_00010001/DCIM/100D3000
&lt;br&gt;gphoto2: {gphoto2: {...folder} /store_00010001/DCIM/100D3000&amp;gt; } /store_00010001/DCIM/100D3000&amp;gt; wait-event
&lt;br&gt;UNKNOWN PTP Event 400c, Param1 00010001
&lt;br&gt;gphoto2: {gphoto2: {...folder} /store_00010001/DCIM/100D3000&amp;gt; } /store_00010001/DCIM/100D3000&amp;gt; wait-event
&lt;br&gt;FILEADDED DSC_0009.JPG /store_00010001/DCIM/100D3000
&lt;br&gt;gphoto2: {gphoto2: {...folder} /store_00010001/DCIM/100D3000&amp;gt; } /store_00010001/DCIM/100D3000&amp;gt; wait-event
&lt;br&gt;UNKNOWN PTP Event 400c, Param1 00010001
&lt;br&gt;gphoto2: {gphoto2: {...folder} /store_00010001/DCIM/100D3000&amp;gt; } /store_00010001/DCIM/100D3000&amp;gt; wait-event
&lt;br&gt;FILEADDED DSC_0010.JPG /store_00010001/DCIM/100D3000
&lt;br&gt;gphoto2: {gphoto2: {...folder} /store_00010001/DCIM/100D3000&amp;gt; } /store_00010001/DCIM/100D3000&amp;gt; wait-event
&lt;br&gt;UNKNOWN PTP Event 400c, Param1 00010001
&lt;br&gt;gphoto2: {gphoto2: {...folder} /store_00010001/DCIM/100D3000&amp;gt; } /store_00010001/DCIM/100D3000&amp;gt; wait-event
&lt;br&gt;gphoto2: {gphoto2: {...folder} /store_00010001/DCIM/100D3000&amp;gt; } /store_00010001/DCIM/100D3000&amp;gt; ls
&lt;br&gt;DSC_0001.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0002.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0003.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0004.JPG
&lt;br&gt;DSC_0005.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0006.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0007.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0008.JPG
&lt;br&gt;DSC_0009.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0010.JPG
&lt;br&gt;gphoto2: {gphoto2: {...folder} /store_00010001/DCIM/100D3000&amp;gt; } /store_00010001/DCIM/100D3000&amp;gt; capture-image
&lt;br&gt;New file is in location /store_00010001/DCIM/100D3000/DSC_0011.JPG on the camera
&lt;br&gt;gphoto2: {gphoto2: {...folder} /store_00010001/DCIM/100D3000&amp;gt; } /store_00010001/DCIM/100D3000&amp;gt; wait-event
&lt;br&gt;gphoto2: {gphoto2: {...folder} /store_00010001/DCIM/100D3000&amp;gt; } /store_00010001/DCIM/100D3000&amp;gt; ls
&lt;br&gt;DSC_0001.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0002.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0003.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0004.JPG
&lt;br&gt;DSC_0005.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0006.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0007.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0008.JPG
&lt;br&gt;DSC_0009.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0010.JPG &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DSC_0011.JPG
&lt;br&gt;gphoto2: {gphoto2: {...folder} /store_00010001/DCIM/100D3000&amp;gt; } /store_00010001/DCIM/100D3000&amp;gt; q
&lt;br&gt;&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Return on Information:
&lt;br&gt;Google Enterprise Search pays you back
&lt;br&gt;Get the facts.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/google-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/google-dev2dev&lt;/a&gt;&lt;br&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26727744&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/changed-behaviour-for-%22camera_wait_for_event%22-tp26680952p26727744.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26726134</id>
	<title>Re: changed behaviour for &quot;camera_wait_for_event&quot;</title>
	<published>2009-12-10T03:59:56Z</published>
	<updated>2009-12-10T03:59:56Z</updated>
	<author>
		<name>rew</name>
	</author>
	<content type="html">On Thu, Dec 10, 2009 at 10:18:02AM +0100, Marcus Meissner wrote:
&lt;br&gt;&amp;gt; Or if you want to download FILEADDED files immediately, do
&lt;br&gt;&amp;gt; 	gphoto2 --wait-event-and-download 100s
&lt;br&gt;&lt;br&gt;Hi Marcus, 
&lt;br&gt;&lt;br&gt;I've beein interested in tethered capturing for a while, but didn't know
&lt;br&gt;if gpoto and/or my camera would be able to do it. 
&lt;br&gt;&lt;br&gt;Anyway, now that you mentioned how to do it, that removed one hurdle,
&lt;br&gt;so I got and compiled 2.4.7 and tried it. 
&lt;br&gt;&lt;br&gt;On my D80, it seems to wait for the second image to be taken before
&lt;br&gt;starting to download images. It then downloads two images, and then
&lt;br&gt;waits for two more. This is more or less what happens if I take a shot
&lt;br&gt;every 5 seconds. If I press the shutter less regularly, it sometimes
&lt;br&gt;waits longer and downloads more images at once.... 
&lt;br&gt;&lt;br&gt;- Is this a bug in the D80 that gphoto2 cannot do anything about?
&lt;br&gt;- I seem to rember you have access to a D80 and/or D90, do you want
&lt;br&gt;me to send debug logs?
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Roger. 
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;** &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26726134&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;R.E.Wolff@...&lt;/a&gt; ** &lt;a href=&quot;http://www.BitWizard.nl/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.BitWizard.nl/&lt;/a&gt;&amp;nbsp;** +31-15-2600998 **
&lt;br&gt;** &amp;nbsp; &amp;nbsp;Delftechpark 26 2628 XH &amp;nbsp;Delft, The Netherlands. KVK: 27239233 &amp;nbsp; &amp;nbsp;**
&lt;br&gt;*-- BitWizard writes Linux device drivers for any device you may have! --*
&lt;br&gt;Q: It doesn't work. A: Look buddy, doesn't work is an ambiguous statement. 
&lt;br&gt;Does it sit on the couch all day? Is it unemployed? Please be specific! 
&lt;br&gt;Define 'it' and what it isn't doing. --------- Adapted from lxrbot FAQ
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Return on Information:
&lt;br&gt;Google Enterprise Search pays you back
&lt;br&gt;Get the facts.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/google-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/google-dev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26726134&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/changed-behaviour-for-%22camera_wait_for_event%22-tp26680952p26726134.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26724142</id>
	<title>Re: changed behaviour for &quot;camera_wait_for_event&quot;</title>
	<published>2009-12-10T01:18:02Z</published>
	<updated>2009-12-10T01:18:02Z</updated>
	<author>
		<name>Marcus Meissner-4</name>
	</author>
	<content type="html">On Mon, Dec 07, 2009 at 08:39:39PM +0300, Sergey Kruk wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I use libgphoto2 to manage Nikon D80, D90 and D3000 cameras. Recently
&lt;br&gt;&amp;gt; I tried to move my project from libgphoto2-2.4.2 to 2.4.6 or 2.4.7 and
&lt;br&gt;&amp;gt; I noticed behaviour change, that was not mentioned in changelogs.
&lt;br&gt;&amp;gt; Since everything happens to one camera instace inside C program this
&lt;br&gt;&amp;gt; is better demostrated inside gphoto2 --shell (this cannot be seen in
&lt;br&gt;&amp;gt; command line version, only inside shell):
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 1. In 2.4.7 when I run inside shell &amp;quot;capture-image&amp;quot; followed by
&lt;br&gt;&amp;gt; &amp;quot;wait-event&amp;quot;, the second one reports that a file was added -- the
&lt;br&gt;&amp;gt; captured one. And sometimes it gives error saying that file already
&lt;br&gt;&amp;gt; exists. That is not the case with 2.4.2, where capture command
&lt;br&gt;&amp;gt; followed by wait command could only give timeout.
&lt;/div&gt;&lt;br&gt;capture-image already reads until it gets 1 object added event
&lt;br&gt;itself.
&lt;br&gt;&lt;br&gt;Only if you are shooting NEF+JPEG dual mode, wait-event should
&lt;br&gt;return new images.
&lt;br&gt;&lt;br&gt;That it returned the image that capture-image already reported
&lt;br&gt;would have been a bug in 2.4.2.
&lt;br&gt;&lt;br&gt;&amp;gt; 2. In 2.4.2 I could manually press camera's release button several
&lt;br&gt;&amp;gt; times while in the shell, and than run same number of times
&lt;br&gt;&amp;gt; &amp;quot;wait-event&amp;quot;. Each time I would get next file name in FILEADDED event.
&lt;br&gt;&amp;gt; Now with 2.4.7 after i press camera's release button several times I
&lt;br&gt;&amp;gt; only get one &amp;quot;FILEADDED&amp;quot; event followed by timeouts. And files list is
&lt;br&gt;&amp;gt; never updated until I do somethig like &amp;quot;capture-image&amp;quot;
&lt;br&gt;&lt;br&gt;If you are the gphoto2 shell prompt, gphoto is not polling the
&lt;br&gt;interrupt queue... So interrupts might get lost. 
&lt;br&gt;&lt;br&gt;The reliable way is to do:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gphoto2 --wait-event 100s		# 100 seconds
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (just 100 without s would be 100 events)
&lt;br&gt;&lt;br&gt;and then do the shutter pressing actions.
&lt;br&gt;&lt;br&gt;Or if you want to download FILEADDED files immediately, do
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gphoto2 --wait-event-and-download 100s
&lt;br&gt;&lt;br&gt;&amp;gt; While first case is arguably a bug, the second one in my opinion clearly is.
&lt;br&gt;&amp;gt; Is &amp;quot;wait&amp;quot;-functionality supported or is it more of experimental
&lt;br&gt;&amp;gt; feature aside from main functionality? Should it be reported?
&lt;br&gt;&lt;br&gt;Well, you have reported it by your mail. :)
&lt;br&gt;&lt;br&gt;It is functionality that is developing, so it might have flaws. But for above
&lt;br&gt;purposes it should work, with the corner condition that wait-event runs for
&lt;br&gt;polling.
&lt;br&gt;&lt;br&gt;Ciao, Marcus
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Return on Information:
&lt;br&gt;Google Enterprise Search pays you back
&lt;br&gt;Get the facts.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/google-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/google-dev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26724142&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/changed-behaviour-for-%22camera_wait_for_event%22-tp26680952p26724142.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26723949</id>
	<title>Re: PTP Camera Forensics: Unallocated Clusters</title>
	<published>2009-12-10T00:58:11Z</published>
	<updated>2009-12-10T00:58:11Z</updated>
	<author>
		<name>rew</name>
	</author>
	<content type="html">On Thu, Dec 10, 2009 at 09:50:30AM +0100, Marcus Meissner wrote:
&lt;br&gt;&amp;gt; On Thu, Dec 10, 2009 at 12:41:44AM -0800, Bridgey wrote:
&lt;br&gt;&amp;gt; &amp;gt; I'm very familiar with dd-ing memory cards but I was just wondering
&lt;br&gt;&amp;gt; &amp;gt; if any options were open to the actual internal memory of the camera
&lt;br&gt;&amp;gt; &amp;gt; (as opposed to any memory cards). I'm assuming if the camera only
&lt;br&gt;&amp;gt; &amp;gt; uses PTP/MTP (i.e. doesn't provide a &amp;quot;disk&amp;quot; mode) then it would be
&lt;br&gt;&amp;gt; &amp;gt; impossible unless one resorted to physically removing the chip from
&lt;br&gt;&amp;gt; &amp;gt; the camera!
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; Oh well.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; No, its not possible.
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;gt; (There are special vendor commands for some cameras, but I know most
&lt;br&gt;&amp;gt; of them and they can never access raw memory.)
&lt;br&gt;&lt;br&gt;If a camera vendor was implementing their firmware for the first time,
&lt;br&gt;they would have bugs relating to storing the files and directories on
&lt;br&gt;the storage media. To debug those, making an image is useful. So if
&lt;br&gt;they did not start from something that already worked perfectly in
&lt;br&gt;that respect, I would suspect that they had such code in the firmware. 
&lt;br&gt;&lt;br&gt;However, deeply hidden, and undocumented, so difficult to find. 
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Roger. 
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;** &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26723949&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;R.E.Wolff@...&lt;/a&gt; ** &lt;a href=&quot;http://www.BitWizard.nl/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.BitWizard.nl/&lt;/a&gt;&amp;nbsp;** +31-15-2600998 **
&lt;br&gt;** &amp;nbsp; &amp;nbsp;Delftechpark 26 2628 XH &amp;nbsp;Delft, The Netherlands. KVK: 27239233 &amp;nbsp; &amp;nbsp;**
&lt;br&gt;*-- BitWizard writes Linux device drivers for any device you may have! --*
&lt;br&gt;Q: It doesn't work. A: Look buddy, doesn't work is an ambiguous statement. 
&lt;br&gt;Does it sit on the couch all day? Is it unemployed? Please be specific! 
&lt;br&gt;Define 'it' and what it isn't doing. --------- Adapted from lxrbot FAQ
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Return on Information:
&lt;br&gt;Google Enterprise Search pays you back
&lt;br&gt;Get the facts.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/google-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/google-dev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26723949&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/PTP-Camera-Forensics%3A-Unallocated-Clusters-tp26716252p26723949.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26723880</id>
	<title>Re: PTP Camera Forensics: Unallocated Clusters</title>
	<published>2009-12-10T00:50:30Z</published>
	<updated>2009-12-10T00:50:30Z</updated>
	<author>
		<name>Marcus Meissner</name>
	</author>
	<content type="html">On Thu, Dec 10, 2009 at 12:41:44AM -0800, Bridgey wrote:
&lt;br&gt;&amp;gt; Thanks very much for the speedy reply Marcus.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I'm very familiar with dd-ing memory cards but I was just wondering if any options were open to the actual internal memory of the camera (as opposed to any memory cards). I'm assuming if the camera only uses PTP/MTP (i.e. doesn't provide a &amp;quot;disk&amp;quot; mode) then it would be impossible unless one resorted to physically removing the chip from the camera!
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Oh well.
&lt;br&gt;&lt;br&gt;No, its not possible.
&lt;br&gt;&lt;br&gt;(There are special vendor commands for some cameras, but I know most of them
&lt;br&gt;&amp;nbsp;and they can never access raw memory.)
&lt;br&gt;&lt;br&gt;Ciao, Marcus
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Return on Information:
&lt;br&gt;Google Enterprise Search pays you back
&lt;br&gt;Get the facts.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/google-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/google-dev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26723880&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/PTP-Camera-Forensics%3A-Unallocated-Clusters-tp26716252p26723880.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26723777</id>
	<title>Re: PTP Camera Forensics: Unallocated Clusters</title>
	<published>2009-12-10T00:41:44Z</published>
	<updated>2009-12-10T00:41:44Z</updated>
	<author>
		<name>Bridgey</name>
	</author>
	<content type="html">&lt;html&gt;&lt;head&gt;&lt;/head&gt;&lt;body&gt;&lt;div style=&quot;font-family:garamond,new york,times,serif;font-size:12pt&quot;&gt;&lt;div style=&quot;font-family: garamond,new york,times,serif; font-size: 12pt;&quot;&gt;Thanks very much for the speedy reply Marcus.&lt;br&gt;&lt;br&gt;I'm very familiar with dd-ing memory cards but I was just wondering if any options were open to the actual internal memory of the camera (as opposed to any memory cards). I'm assuming if the camera only uses PTP/MTP (i.e. doesn't provide a &quot;disk&quot; mode) then it would be impossible unless one resorted to physically removing the chip from the camera!&lt;br&gt;&lt;br&gt;Oh well.&lt;br&gt;&lt;br&gt;Ta, Adam&lt;br&gt;&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 13px;&quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot;&gt;&lt;hr size=&quot;1&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;From:&lt;/span&gt;&lt;/b&gt; Marcus Meissner &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26723777&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;marcus@...&lt;/a&gt;&amp;gt;&lt;br&gt;&lt;b&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;To:&lt;/span&gt;&lt;/b&gt; Bridgey
 &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26723777&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;adam.bridge@...&lt;/a&gt;&amp;gt;&lt;br&gt;&lt;b&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Cc:&lt;/span&gt;&lt;/b&gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26723777&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gphoto-user@...&lt;/a&gt;&lt;br&gt;&lt;b&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Sent:&lt;/span&gt;&lt;/b&gt; Thu, 10 December, 2009 7:48:17&lt;br&gt;&lt;b&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Subject:&lt;/span&gt;&lt;/b&gt; Re: [Gphoto-user] PTP Camera Forensics: Unallocated Clusters&lt;br&gt;&lt;/font&gt;&lt;br&gt;On Wed, Dec 09, 2009 at 11:32:47AM -0800, Bridgey wrote:&lt;br&gt;&amp;gt; All,&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; I&amp;nbsp; am trying to ascertain whether it's possible to acquire the raw memory of the camera over PTP/MTP. In short I want to acquire the unallocated clusters in order to carve out any images that may have been deleted.&lt;br&gt;&lt;br&gt;&amp;gt; Is this even possible over the protocol?&lt;br&gt;&lt;br&gt;It is not possible.&lt;br&gt;&lt;br&gt;PTP or MTP just gives the directory/file view ... but no RAW view at all.&lt;br&gt;&lt;br&gt;&amp;gt; I'm happy to roll my sleeves up and get involved in the source code if needs be, but I'm brand new to the whole arena of PTP/MTP so would really
 appreciate any pointers!&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; I did try taking advantage of the libptp/ptpcam but ptpcam wouldn't communicate with the FujiFilm S1500 eventhough gphoto2 would.&lt;br&gt;&lt;br&gt;For deleted images I plug in the Card to a cardreader, dump the whole&lt;br&gt;card to a file (dd if=/dev/sdX of=card.img&amp;nbsp; or similar) and then run &quot;photorec&quot; on it.&lt;br&gt;&lt;br&gt;Ciao, Marcus&lt;br&gt;&lt;/div&gt;&lt;/div&gt;
&lt;!-- cg25.c1.mail.mud.yahoo.com compressed/chunked Thu Dec 10 00:32:43 PST 2009 --&gt;
&lt;/div&gt;&lt;br&gt;



      &lt;/body&gt;&lt;/html&gt;&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Return on Information:
&lt;br&gt;Google Enterprise Search pays you back
&lt;br&gt;Get the facts.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/google-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/google-dev2dev&lt;/a&gt;&lt;br&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26723777&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/PTP-Camera-Forensics%3A-Unallocated-Clusters-tp26716252p26723777.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26723302</id>
	<title>Re: PTP Camera Forensics: Unallocated Clusters</title>
	<published>2009-12-09T23:48:17Z</published>
	<updated>2009-12-09T23:48:17Z</updated>
	<author>
		<name>Marcus Meissner-4</name>
	</author>
	<content type="html">On Wed, Dec 09, 2009 at 11:32:47AM -0800, Bridgey wrote:
&lt;br&gt;&amp;gt; All,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I &amp;nbsp;am trying to ascertain whether it's possible to acquire the raw memory of the camera over PTP/MTP. In short I want to acquire the unallocated clusters in order to carve out any images that may have been deleted.
&lt;br&gt;&lt;br&gt;&amp;gt; Is this even possible over the protocol?
&lt;br&gt;&lt;br&gt;It is not possible.
&lt;br&gt;&lt;br&gt;PTP or MTP just gives the directory/file view ... but no RAW view at all.
&lt;br&gt;&lt;br&gt;&amp;gt; I'm happy to roll my sleeves up and get involved in the source code if needs be, but I'm brand new to the whole arena of PTP/MTP so would really appreciate any pointers!
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I did try taking advantage of the libptp/ptpcam but ptpcam wouldn't communicate with the FujiFilm S1500 eventhough gphoto2 would.
&lt;br&gt;&lt;br&gt;For deleted images I plug in the Card to a cardreader, dump the whole
&lt;br&gt;card to a file (dd if=/dev/sdX of=card.img &amp;nbsp;or similar) and then run &amp;quot;photorec&amp;quot; on it.
&lt;br&gt;&lt;br&gt;Ciao, Marcus
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Return on Information:
&lt;br&gt;Google Enterprise Search pays you back
&lt;br&gt;Get the facts.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/google-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/google-dev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26723302&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/PTP-Camera-Forensics%3A-Unallocated-Clusters-tp26716252p26723302.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26716252</id>
	<title>PTP Camera Forensics: Unallocated Clusters</title>
	<published>2009-12-09T11:32:47Z</published>
	<updated>2009-12-09T11:32:47Z</updated>
	<author>
		<name>Bridgey</name>
	</author>
	<content type="html">&lt;html&gt;&lt;head&gt;&lt;/head&gt;&lt;body&gt;&lt;div style=&quot;font-family:garamond,new york,times,serif;font-size:12pt;color:#000000;&quot;&gt;&lt;div&gt;All,&lt;br&gt;&lt;br&gt;I&amp;nbsp; am trying to ascertain whether it's possible to acquire the raw memory of the camera over PTP/MTP. In short I want to acquire the unallocated clusters in order to carve out any images that may have been deleted.&lt;br&gt;&lt;br&gt;Is this even possible over the protocol? I'm happy to roll my sleeves up and get involved in the source code if needs be, but I'm brand new to the whole arena of PTP/MTP so would really appreciate any pointers!&lt;br&gt;&lt;br&gt;I did try taking advantage of the libptp/ptpcam but ptpcam wouldn't communicate with the FujiFilm S1500 eventhough gphoto2 would.&lt;br&gt;&lt;br&gt;Many thanks,&lt;br&gt;&lt;br&gt;Adam&lt;br&gt;&lt;/div&gt;
&lt;!-- cg1.c1.mail.mud.yahoo.com compressed/chunked Thu Dec  3 13:18:37 PST 2009 --&gt;
&lt;/div&gt;&lt;br&gt;



      &lt;/body&gt;&lt;/html&gt;&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Return on Information:
&lt;br&gt;Google Enterprise Search pays you back
&lt;br&gt;Get the facts.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/google-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/google-dev2dev&lt;/a&gt;&lt;br&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26716252&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/PTP-Camera-Forensics%3A-Unallocated-Clusters-tp26716252p26716252.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26680952</id>
	<title>changed behaviour for &quot;camera_wait_for_event&quot;</title>
	<published>2009-12-07T09:39:39Z</published>
	<updated>2009-12-07T09:39:39Z</updated>
	<author>
		<name>Sergey Kruk</name>
	</author>
	<content type="html">I use libgphoto2 to manage Nikon D80, D90 and D3000 cameras. Recently
&lt;br&gt;I tried to move my project from libgphoto2-2.4.2 to 2.4.6 or 2.4.7 and
&lt;br&gt;I noticed behaviour change, that was not mentioned in changelogs.
&lt;br&gt;Since everything happens to one camera instace inside C program this
&lt;br&gt;is better demostrated inside gphoto2 --shell (this cannot be seen in
&lt;br&gt;command line version, only inside shell):
&lt;br&gt;&lt;br&gt;1. In 2.4.7 when I run inside shell &amp;quot;capture-image&amp;quot; followed by
&lt;br&gt;&amp;quot;wait-event&amp;quot;, the second one reports that a file was added -- the
&lt;br&gt;captured one. And sometimes it gives error saying that file already
&lt;br&gt;exists. That is not the case with 2.4.2, where capture command
&lt;br&gt;followed by wait command could only give timeout.
&lt;br&gt;&lt;br&gt;2. In 2.4.2 I could manually press camera's release button several
&lt;br&gt;times while in the shell, and than run same number of times
&lt;br&gt;&amp;quot;wait-event&amp;quot;. Each time I would get next file name in FILEADDED event.
&lt;br&gt;Now with 2.4.7 after i press camera's release button several times I
&lt;br&gt;only get one &amp;quot;FILEADDED&amp;quot; event followed by timeouts. And files list is
&lt;br&gt;never updated until I do somethig like &amp;quot;capture-image&amp;quot;
&lt;br&gt;&lt;br&gt;While first case is arguably a bug, the second one in my opinion clearly is.
&lt;br&gt;Is &amp;quot;wait&amp;quot;-functionality supported or is it more of experimental
&lt;br&gt;feature aside from main functionality? Should it be reported?
&lt;br&gt;&lt;br&gt;Sincerely,
&lt;br&gt;Sergey Kruk
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Join us December 9, 2009 for the Red Hat Virtual Experience,
&lt;br&gt;a free event focused on virtualization and cloud computing. 
&lt;br&gt;Attend in-depth sessions from your desk. Your couch. Anywhere.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/redhat-sfdev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/redhat-sfdev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26680952&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/changed-behaviour-for-%22camera_wait_for_event%22-tp26680952p26680952.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26629730</id>
	<title>Can I stop the camera locking up when connected to USB?</title>
	<published>2009-12-03T09:19:58Z</published>
	<updated>2009-12-03T09:19:58Z</updated>
	<author>
		<name>Tim Hutton</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;I have a Casio Exilim FH20, and I'm trying to make a control rig for
&lt;br&gt;it, so I can take pictures and retrieve them.
&lt;br&gt;&lt;br&gt;It's probably a stupid question but I thought I'd ask: is there any
&lt;br&gt;way to stop the camera controls from locking up when the camera is
&lt;br&gt;connected to a computer via USB? I thought that just maybe there's a
&lt;br&gt;gphoto command that could do this.
&lt;br&gt;&lt;br&gt;If there was, I could capture and download pictures without having to
&lt;br&gt;plug and unplug the USB cable all the time. I plan to be triggering
&lt;br&gt;several cameras, so this would be a big help.
&lt;br&gt;&lt;br&gt;(gphoto seems to connect to the FH20 perfectly well, in both USB and
&lt;br&gt;PTP modes, as far as I can tell.)
&lt;br&gt;&lt;br&gt;Thanks for your time,
&lt;br&gt;&lt;br&gt;Tim
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Join us December 9, 2009 for the Red Hat Virtual Experience,
&lt;br&gt;a free event focused on virtualization and cloud computing. 
&lt;br&gt;Attend in-depth sessions from your desk. Your couch. Anywhere.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/redhat-sfdev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/redhat-sfdev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26629730&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Can-I-stop-the-camera-locking-up-when-connected-to-USB--tp26629730p26629730.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26611648</id>
	<title>Re: Canon 5DM2 and Mirror-Lockup</title>
	<published>2009-12-02T08:17:57Z</published>
	<updated>2009-12-02T08:17:57Z</updated>
	<author>
		<name>Andreas Steinel-2</name>
	</author>
	<content type="html">Hi Marcus,
&lt;br&gt;&lt;br&gt;Mirror Lockup (german: Spiegelverriegelung) is used to reduce
&lt;br&gt;vibrations caused by the shutter. If you're capturing an image with a
&lt;br&gt;long exposure time, you use it to get a few seconds between the actual
&lt;br&gt;release of the shutter and the mirror. In this time, the vibrations
&lt;br&gt;are hopefully gone.
&lt;br&gt;&lt;br&gt;This mode is very important for long exposure photography like astrophotography.
&lt;br&gt;&lt;br&gt;Besides the other mail on the 7D, my 5DM2 does nothing when I release
&lt;br&gt;the shutter via commandline and I switched on the &amp;quot;Mirror lockup&amp;quot; or
&lt;br&gt;&amp;quot;Spiegelverriegelung&amp;quot;. (turning back to off, everything works again).
&lt;br&gt;&lt;br&gt;Best,
&lt;br&gt;Andreas
&lt;br&gt;&lt;br&gt;On Wed, Dec 2, 2009 at 4:58 PM, Marcus Meissner &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26611648&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;meissner@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Wed, Dec 02, 2009 at 04:53:21PM +0100, Andreas Steinel wrote:
&lt;br&gt;&amp;gt;&amp;gt; Hi everybody,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I succeded in using (a kind of) Mirror Lockup with the 5DM2 by  using
&lt;br&gt;&amp;gt;&amp;gt; the LiveMode. Unfortunately, you're restricted to a max of 1/30
&lt;br&gt;&amp;gt;&amp;gt; exposure time or less.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I also saw that mirror lockup is a problem at the 7D. Are there  plans
&lt;br&gt;&amp;gt;&amp;gt; to support shooting in mirror lockup mode? Is there anything I can do
&lt;br&gt;&amp;gt;&amp;gt; to help to implement this feature?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; What is mirror lockup mode actually?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Live View mode?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Ciao, Marcus
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Join us December 9, 2009 for the Red Hat Virtual Experience,
&lt;br&gt;a free event focused on virtualization and cloud computing. 
&lt;br&gt;Attend in-depth sessions from your desk. Your couch. Anywhere.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/redhat-sfdev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/redhat-sfdev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26611648&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Canon-5DM2-and-Mirror-Lockup-tp26611210p26611648.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26611302</id>
	<title>Re: Canon 5DM2 and Mirror-Lockup</title>
	<published>2009-12-02T07:58:19Z</published>
	<updated>2009-12-02T07:58:19Z</updated>
	<author>
		<name>Marcus Meissner</name>
	</author>
	<content type="html">On Wed, Dec 02, 2009 at 04:53:21PM +0100, Andreas Steinel wrote:
&lt;br&gt;&amp;gt; Hi everybody,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I succeded in using (a kind of) Mirror Lockup with the 5DM2 by &amp;nbsp;using
&lt;br&gt;&amp;gt; the LiveMode. Unfortunately, you're restricted to a max of 1/30
&lt;br&gt;&amp;gt; exposure time or less.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I also saw that mirror lockup is a problem at the 7D. Are there &amp;nbsp;plans
&lt;br&gt;&amp;gt; to support shooting in mirror lockup mode? Is there anything I can do
&lt;br&gt;&amp;gt; to help to implement this feature?
&lt;br&gt;&lt;br&gt;What is mirror lockup mode actually?
&lt;br&gt;&lt;br&gt;Live View mode?
&lt;br&gt;&lt;br&gt;Ciao, Marcus
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Join us December 9, 2009 for the Red Hat Virtual Experience,
&lt;br&gt;a free event focused on virtualization and cloud computing. 
&lt;br&gt;Attend in-depth sessions from your desk. Your couch. Anywhere.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/redhat-sfdev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/redhat-sfdev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26611302&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Canon-5DM2-and-Mirror-Lockup-tp26611210p26611302.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26611210</id>
	<title>Canon 5DM2 and Mirror-Lockup</title>
	<published>2009-12-02T07:53:21Z</published>
	<updated>2009-12-02T07:53:21Z</updated>
	<author>
		<name>Andreas Steinel-2</name>
	</author>
	<content type="html">Hi everybody,
&lt;br&gt;&lt;br&gt;I succeded in using (a kind of) Mirror Lockup with the 5DM2 by &amp;nbsp;using
&lt;br&gt;the LiveMode. Unfortunately, you're restricted to a max of 1/30
&lt;br&gt;exposure time or less.
&lt;br&gt;&lt;br&gt;I also saw that mirror lockup is a problem at the 7D. Are there &amp;nbsp;plans
&lt;br&gt;to support shooting in mirror lockup mode? Is there anything I can do
&lt;br&gt;to help to implement this feature?
&lt;br&gt;&lt;br&gt;Best,
&lt;br&gt;Andreas
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Join us December 9, 2009 for the Red Hat Virtual Experience,
&lt;br&gt;a free event focused on virtualization and cloud computing. 
&lt;br&gt;Attend in-depth sessions from your desk. Your couch. Anywhere.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/redhat-sfdev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/redhat-sfdev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26611210&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Canon-5DM2-and-Mirror-Lockup-tp26611210p26611210.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26585847</id>
	<title>Re: SX110IS</title>
	<published>2009-11-30T19:07:14Z</published>
	<updated>2009-11-30T19:07:14Z</updated>
	<author>
		<name>Yiding Han</name>
	</author>
	<content type="html">On the SX110IS with download on the best I can get is about 2.5
&lt;br&gt;seconds per image. So it is like 0.4 fames/sec. But for some reason it
&lt;br&gt;seems slower with the download off, which takes about 3.5 seconds per
&lt;br&gt;image.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;&lt;br&gt;On Mon, Nov 30, 2009 at 5:47 PM, Shunjie Lau &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26585847&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;eijnuhs@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi guys, I am comtemplating between a DSLR or the canon SX110IS.
&lt;br&gt;&amp;gt; The frame/sec is something I am looking for.
&lt;br&gt;&amp;gt; With the DSLR, I am hitting about ~0.5 fames/sec...does anyone know
&lt;br&gt;&amp;gt; about the SX110IS with capture and download over usb2 ?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thank you !
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Sincerely,
&lt;br&gt;&amp;gt; Shunjie Lau
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Join us December 9, 2009 for the Red Hat Virtual Experience,
&lt;br&gt;&amp;gt; a free event focused on virtualization and cloud computing.
&lt;br&gt;&amp;gt; Attend in-depth sessions from your desk. Your couch. Anywhere.
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://p.sf.net/sfu/redhat-sfdev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/redhat-sfdev2dev&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Gphoto-user mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26585847&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Ph.D. Student, Yiding Han
&lt;br&gt;Dept. of Electrical and Computer Engineering,
&lt;br&gt;Utah State University, 4120 Old Main Hill, Logan, UT 84322-4120, USA
&lt;br&gt;E-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26585847&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;yiding.h@...&lt;/a&gt;, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26585847&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bitcars@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Join us December 9, 2009 for the Red Hat Virtual Experience,
&lt;br&gt;a free event focused on virtualization and cloud computing. 
&lt;br&gt;Attend in-depth sessions from your desk. Your couch. Anywhere.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/redhat-sfdev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/redhat-sfdev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26585847&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/SX110IS-tp26584832p26585847.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26584832</id>
	<title>SX110IS</title>
	<published>2009-11-30T16:47:28Z</published>
	<updated>2009-11-30T16:47:28Z</updated>
	<author>
		<name>Shunjie Lau</name>
	</author>
	<content type="html">Hi guys, I am comtemplating between a DSLR or the canon SX110IS.
&lt;br&gt;The frame/sec is something I am looking for.
&lt;br&gt;With the DSLR, I am hitting about ~0.5 fames/sec...does anyone know
&lt;br&gt;about the SX110IS with capture and download over usb2 ?
&lt;br&gt;&lt;br&gt;Thank you !
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sincerely,
&lt;br&gt;Shunjie Lau
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Join us December 9, 2009 for the Red Hat Virtual Experience,
&lt;br&gt;a free event focused on virtualization and cloud computing. 
&lt;br&gt;Attend in-depth sessions from your desk. Your couch. Anywhere.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/redhat-sfdev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/redhat-sfdev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26584832&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/SX110IS-tp26584832p26584832.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26584342</id>
	<title>canon widescreen image size</title>
	<published>2009-11-30T16:00:10Z</published>
	<updated>2009-11-30T16:00:10Z</updated>
	<author>
		<name>ajtwatching</name>
	</author>
	<content type="html">Hi there,
&lt;br&gt;&lt;br&gt;I've got a Canon SX110 Powershot working tremendously with gphoto2.
&lt;br&gt;&lt;br&gt;I was reading the manual the other day and discovered this camera has
&lt;br&gt;the ability to take widescreen photos - 3648 x 2048.
&lt;br&gt;&lt;br&gt;Unfortunately though, this image size does not appear to be selectable.
&lt;br&gt;&lt;br&gt;$ gphoto2 --get-config=/main/imgsettings/canonimgsize
&lt;br&gt;Label: Canon Image Size
&lt;br&gt;Type: RADIO
&lt;br&gt;Current: large
&lt;br&gt;Choice: 0 large
&lt;br&gt;Choice: 1 medium 1
&lt;br&gt;Choice: 2 medium 2
&lt;br&gt;Choice: 3 medium 3
&lt;br&gt;Choice: 4 small
&lt;br&gt;&lt;br&gt;I'm using the following packages from Ubuntu 9.10.
&lt;br&gt;&lt;br&gt;$ dpkg -l | grep gphoto2
&lt;br&gt;ii &amp;nbsp;gphoto2 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2.4.5-2
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;The gphoto2 digital camera command-line clie
&lt;br&gt;ii &amp;nbsp;libgphoto2-2 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2.4.6-1ubuntu6
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;gphoto2 digital camera library
&lt;br&gt;ii &amp;nbsp;libgphoto2-port0 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2.4.6-1ubuntu6
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;gphoto2 digital camera port library
&lt;br&gt;&lt;br&gt;Should this image size be selectable??
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&lt;br&gt;Andrew.
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Join us December 9, 2009 for the Red Hat Virtual Experience,
&lt;br&gt;a free event focused on virtualization and cloud computing. 
&lt;br&gt;Attend in-depth sessions from your desk. Your couch. Anywhere.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/redhat-sfdev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/redhat-sfdev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26584342&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/canon-widescreen-image-size-tp26584342p26584342.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26560510</id>
	<title>Re: scanning + OCR the monkey way ...</title>
	<published>2009-11-29T01:45:24Z</published>
	<updated>2009-11-29T01:45:24Z</updated>
	<author>
		<name>Marcus Meissner</name>
	</author>
	<content type="html">On Sun, Nov 29, 2009 at 12:22:51AM +0000, Albretch Mueller wrote:
&lt;br&gt;&amp;gt; &amp;nbsp;Hi Marcus mentioned to me about a video I couldn't get too. Can you
&lt;br&gt;&amp;gt; let me know the URL to it? Now I have time ;-)
&lt;br&gt;&amp;gt; &amp;nbsp;Thank you
&lt;br&gt;&lt;br&gt;I saw that one I think:
&lt;br&gt;&lt;a href=&quot;http://www.archive.org/details/GabeScanningCenterMovie&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.archive.org/details/GabeScanningCenterMovie&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Ciao, Marcus
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26560510&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/scanning-%2B-OCR-the-monkey-way-...-tp26554003p26560510.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26558410</id>
	<title>Re: scanning + OCR the monkey way ...</title>
	<published>2009-11-28T16:22:51Z</published>
	<updated>2009-11-28T16:22:51Z</updated>
	<author>
		<name>Albretch Mueller-3</name>
	</author>
	<content type="html">&amp;nbsp;Hi Marcus mentioned to me about a video I couldn't get too. Can you
&lt;br&gt;let me know the URL to it? Now I have time ;-)
&lt;br&gt;&amp;nbsp;Thank you
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26558410&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/scanning-%2B-OCR-the-monkey-way-...-tp26554003p26558410.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26557659</id>
	<title>Re: scanning + OCR the monkey way ...</title>
	<published>2009-11-28T13:41:16Z</published>
	<updated>2009-11-28T13:41:16Z</updated>
	<author>
		<name>Marcus Meissner-4</name>
	</author>
	<content type="html">On Sat, Nov 28, 2009 at 03:16:32PM +0000, Albretch Mueller wrote:
&lt;br&gt;&amp;gt; ~
&lt;br&gt;&amp;gt; &amp;nbsp;the guys at pgdp.net (Project Gutenberg, Distributed Proofreaders)
&lt;br&gt;&amp;gt; usually destroy books in order to make the scanning + OCR doable in a
&lt;br&gt;&amp;gt; time frame that makes &amp;quot;business&amp;quot; sense (they volunteer their service
&lt;br&gt;&amp;gt; as proofreaders but they must do it in the least possible time and
&lt;br&gt;&amp;gt; with the least amount of technical hassle, so they cut off the books'
&lt;br&gt;&amp;gt; bindings and use commercial batch scanners to do all even and then odd
&lt;br&gt;&amp;gt; pages at once).
&lt;br&gt;&lt;br&gt;Archive.ORG uses gphoto to scan books.... See here:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://sourceforge.net/mailarchive/forum.php?thread_name=alpine.DEB.2.00.0811131742180.687%40utopia.booyaka.com&amp;forum_name=gphoto-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sourceforge.net/mailarchive/forum.php?thread_name=alpine.DEB.2.00.0811131742180.687%40utopia.booyaka.com&amp;forum_name=gphoto-devel&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;They use some interesting machines (look at the movie intro at archive.org),
&lt;br&gt;two 90 degrees angled glass plates that get lifted down to the book, picture
&lt;br&gt;taken, lifted up again and the human operator pages forward. Repeat.
&lt;br&gt;&lt;br&gt;Ciao, Marcus
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26557659&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/scanning-%2B-OCR-the-monkey-way-...-tp26554003p26557659.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26555594</id>
	<title>Re: scanning + OCR the monkey way ...</title>
	<published>2009-11-28T10:17:44Z</published>
	<updated>2009-11-28T10:17:44Z</updated>
	<author>
		<name>Ingo Bressler-2</name>
	</author>
	<content type="html">Hi everyone,
&lt;br&gt;&lt;br&gt;this is relevant to my interests too.
&lt;br&gt;&lt;br&gt;What I did so far was: Using gphotos remote control feature to setup an 
&lt;br&gt;A640 and taking pictures in a ~7secs interval. First taking all even and 
&lt;br&gt;than all odd pages. Afterwards using a shell script to rename them in an 
&lt;br&gt;appropriate way ... and doing quality control, page number checks, etc
&lt;br&gt;&lt;br&gt;To improve my setup, I have to improve the lighting situation. For this 
&lt;br&gt;purpose it would be ideal to use LEDs to illuminate the scene when and 
&lt;br&gt;only when the shutter is open. I saw, that gphoto offers the feature of 
&lt;br&gt;executing a hook script. I seems that there can be only one script called.
&lt;br&gt;&lt;br&gt;It would be nice to be able to let it execute one script when the 
&lt;br&gt;capture command is send (ideally, when the shutter is opened, don't know 
&lt;br&gt;if gphoto has this information) and another script when the image is 
&lt;br&gt;downloaded (just before, ideally immediately when shutter is closed again).
&lt;br&gt;&lt;br&gt;opinions, comments ?
&lt;br&gt;&lt;br&gt;and btw: there is a growing community working on the whole idea:
&lt;br&gt;&lt;a href=&quot;http://www.diybookscanner.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.diybookscanner.org&lt;/a&gt;&lt;br&gt;&lt;br&gt;Thanks and best regards,
&lt;br&gt;Ingo.
&lt;br&gt;&lt;br&gt;Albretch Mueller schrieb:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; ~
&lt;br&gt;&amp;gt; &amp;nbsp;the guys at pgdp.net (Project Gutenberg, Distributed Proofreaders)
&lt;br&gt;&amp;gt; usually destroy books in order to make the scanning + OCR doable in a
&lt;br&gt;&amp;gt; time frame that makes &amp;quot;business&amp;quot; sense (they volunteer their service
&lt;br&gt;&amp;gt; as proofreaders but they must do it in the least possible time and
&lt;br&gt;&amp;gt; with the least amount of technical hassle, so they cut off the books'
&lt;br&gt;&amp;gt; bindings and use commercial batch scanners to do all even and then odd
&lt;br&gt;&amp;gt; pages at once).
&lt;br&gt;&amp;gt; ~
&lt;br&gt;&amp;gt; &amp;nbsp;The thing is that sometimes you have only one copy you can or should
&lt;br&gt;&amp;gt; not destroy. I am actually against destroying books or anything as
&lt;br&gt;&amp;gt; long as there is a non-invasive/destroying way to do things.
&lt;br&gt;&amp;gt; ~
&lt;br&gt;&amp;gt; &amp;nbsp;There is plenty of software to do the preprocessing and OCR process,
&lt;br&gt;&amp;gt; but the actual physical part of producing the images one after the
&lt;br&gt;&amp;gt; other is the show stopper. What I have in mind is &amp;nbsp;mount a camera on a
&lt;br&gt;&amp;gt; tripod and configuring it with enough resolution to take pictures of
&lt;br&gt;&amp;gt; the pages, which should be saved in some sort of lossless format, but
&lt;br&gt;&amp;gt; I don't know how to drive a camera via its usb ports so that I can
&lt;br&gt;&amp;gt; somehow drive/automate:
&lt;br&gt;&amp;gt; ~
&lt;br&gt;&amp;gt; &amp;nbsp;1) when or the time intervals at which to take pictures
&lt;br&gt;&amp;gt; ~
&lt;br&gt;&amp;gt; &amp;nbsp;2) to save the pictures prefixed in a certain way enumerating first
&lt;br&gt;&amp;gt; even and then odd pages ...
&lt;br&gt;&amp;gt; ~
&lt;br&gt;&amp;gt; &amp;nbsp;cameras do enumerate pictures on their own and I guess doing the
&lt;br&gt;&amp;gt; clicking via software shouldn't be a bid deal. There may even be
&lt;br&gt;&amp;gt; cameras with enough resolution for you to be able to get to them
&lt;br&gt;&amp;gt; wirelessly
&lt;br&gt;&amp;gt; ~
&lt;br&gt;&amp;gt; &amp;nbsp;I found for example:
&lt;br&gt;&amp;gt; ~
&lt;br&gt;&amp;gt; comp.os.linux.hardware: &amp;quot;Nokia phone via USB ???&amp;quot;
&lt;br&gt;&amp;gt; ~
&lt;br&gt;&amp;gt; &amp;nbsp;alt.os.linux: USB camera with Linux?
&lt;br&gt;&amp;gt; ~
&lt;br&gt;&amp;gt; &amp;nbsp;which somewhat relates to what I am trying to do. They are able to
&lt;br&gt;&amp;gt; access the internals of the camera to just transfer files not really
&lt;br&gt;&amp;gt; automate its functions
&lt;br&gt;&amp;gt; ~
&lt;br&gt;&amp;gt; &amp;nbsp;I do know google uses huge and expensive machines to scan pages (and
&lt;br&gt;&amp;gt; somehow do some OCR to since they make them searchable)
&lt;br&gt;&amp;gt; ~
&lt;br&gt;&amp;gt; &amp;nbsp;Is it possible? What do you suggest?
&lt;br&gt;&amp;gt; ~
&lt;br&gt;&amp;gt; &amp;nbsp;Thank you
&lt;br&gt;&amp;gt; &amp;nbsp;lbrtchx
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt; Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Gphoto-user mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26555594&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26555594&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/scanning-%2B-OCR-the-monkey-way-...-tp26554003p26555594.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26555368</id>
	<title>Re: scanning + OCR the monkey way ... 99gphoto</title>
	<published>2009-11-28T09:52:16Z</published>
	<updated>2009-11-28T09:52:16Z</updated>
	<author>
		<name>Albretch Mueller-3</name>
	</author>
	<content type="html">&amp;gt; My plan is to build a platform with uniform lighting where I place the book on the platform , press it flat with glass
&lt;br&gt;~
&lt;br&gt;&lt;br&gt;&amp;nbsp;Thank you very much. I am glad to see there are more of us culturing
&lt;br&gt;these issues!
&lt;br&gt;&lt;br&gt;~
&lt;br&gt;&lt;br&gt;&amp;nbsp;Why do you need to press the pages to be scanned against a glass? If
&lt;br&gt;what is needed is getting the pages flat on the platform, I would go
&lt;br&gt;first (faster I would say) with on side of the pages and then flip the
&lt;br&gt;book and go with the other side. Even though the flipping has to be
&lt;br&gt;repeated, I think it would be faster and safer to the user, as well as
&lt;br&gt;less complicated and damaging to the books
&lt;br&gt;~
&lt;br&gt;&lt;br&gt;&amp;gt; … and press a switch or foot-pedal.
&lt;br&gt;&lt;br&gt;~
&lt;br&gt;&lt;br&gt;&amp;nbsp;hmm! This physical work should and can be automated. What about
&lt;br&gt;emulating this with software either directly through the camera's USB
&lt;br&gt;port or with an extra mechanical device strapped to the digital
&lt;br&gt;camera? Then all you would set is the timing of when the switch goes
&lt;br&gt;off
&lt;br&gt;~
&lt;br&gt;&amp;nbsp;Also it would be better if the user has free(r) hands to operate a
&lt;br&gt;computer with a GUI on which the scanned pages are being shown, etc
&lt;br&gt;~
&lt;br&gt;&lt;br&gt;&amp;nbsp;lbrtchx
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26555368&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/scanning-%2B-OCR-the-monkey-way-...-tp26554003p26555368.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26554854</id>
	<title>Re: scanning + OCR the monkey way ... 99gphoto</title>
	<published>2009-11-28T08:57:32Z</published>
	<updated>2009-11-28T08:57:32Z</updated>
	<author>
		<name>AGSCalabrese</name>
	</author>
	<content type="html">I am working on such a project for the MacIntosh.
&lt;br&gt;My plan is to build a platform with uniform lighting where I place the &amp;nbsp;
&lt;br&gt;book on the platform , press it flat with glass and press a switch or &amp;nbsp;
&lt;br&gt;foot-pedal.
&lt;br&gt;The pages are captured as an image, the image appears to be visually &amp;nbsp;
&lt;br&gt;proofed. &amp;nbsp;Meanwhile the glass is lifted and the page is flipped. &amp;nbsp; &amp;nbsp;
&lt;br&gt;Then repeat.
&lt;br&gt;The images are captured in a file. &amp;nbsp;Then they can be transferred &amp;nbsp;
&lt;br&gt;anywhere for OCR.
&lt;br&gt;&lt;br&gt;I have a Canon Powershot A80 successfully taking pictures using Icarus &amp;nbsp;
&lt;br&gt;Camera Control. &amp;nbsp;I am talking to the author about adding more &amp;nbsp;
&lt;br&gt;automation features. &amp;nbsp;The same thing can be done via gPhoto. &amp;nbsp;I am now &amp;nbsp;
&lt;br&gt;working on improving the lighting control. &amp;nbsp;I am an electronics &amp;nbsp;
&lt;br&gt;engineer so this is within my capability. &amp;nbsp;I will be glad to help you &amp;nbsp;
&lt;br&gt;as you explore options.
&lt;br&gt;&lt;br&gt;Gus
&lt;br&gt;Denver, CO USA
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Nov 28, 2009, at 8:16 AM, Albretch Mueller wrote:
&lt;br&gt;&lt;br&gt;~
&lt;br&gt;the guys at pgdp.net (Project Gutenberg, Distributed Proofreaders)
&lt;br&gt;usually destroy books in order to make the scanning + OCR doable in a
&lt;br&gt;time frame that makes &amp;quot;business&amp;quot; sense (they volunteer their service
&lt;br&gt;as proofreaders but they must do it in the least possible time and
&lt;br&gt;with the least amount of technical hassle, so they cut off the books'
&lt;br&gt;bindings and use commercial batch scanners to do all even and then odd
&lt;br&gt;pages at once).
&lt;br&gt;~
&lt;br&gt;The thing is that sometimes you have only one copy you can or should
&lt;br&gt;not destroy. I am actually against destroying books or anything as
&lt;br&gt;long as there is a non-invasive/destroying way to do things.
&lt;br&gt;~
&lt;br&gt;There is plenty of software to do the preprocessing and OCR process,
&lt;br&gt;but the actual physical part of producing the images one after the
&lt;br&gt;other is the show stopper. What I have in mind is &amp;nbsp;mount a camera on a
&lt;br&gt;tripod and configuring it with enough resolution to take pictures of
&lt;br&gt;the pages, which should be saved in some sort of lossless format, but
&lt;br&gt;I don't know how to drive a camera via its usb ports so that I can
&lt;br&gt;somehow drive/automate:
&lt;br&gt;~
&lt;br&gt;1) when or the time intervals at which to take pictures
&lt;br&gt;~
&lt;br&gt;2) to save the pictures prefixed in a certain way enumerating first
&lt;br&gt;even and then odd pages ...
&lt;br&gt;~
&lt;br&gt;cameras do enumerate pictures on their own and I guess doing the
&lt;br&gt;clicking via software shouldn't be a bid deal. There may even be
&lt;br&gt;cameras with enough resolution for you to be able to get to them
&lt;br&gt;wirelessly
&lt;br&gt;~
&lt;br&gt;I found for example:
&lt;br&gt;~
&lt;br&gt;comp.os.linux.hardware: &amp;quot;Nokia phone via USB ???&amp;quot;
&lt;br&gt;~
&lt;br&gt;alt.os.linux: USB camera with Linux?
&lt;br&gt;~
&lt;br&gt;which somewhat relates to what I am trying to do. They are able to
&lt;br&gt;access the internals of the camera to just transfer files not really
&lt;br&gt;automate its functions
&lt;br&gt;~
&lt;br&gt;I do know google uses huge and expensive machines to scan pages (and
&lt;br&gt;somehow do some OCR to since they make them searchable)
&lt;br&gt;~
&lt;br&gt;Is it possible? What do you suggest?
&lt;br&gt;~
&lt;br&gt;Thank you
&lt;br&gt;lbrtchx
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 &amp;nbsp;
&lt;br&gt;30-Day
&lt;br&gt;trial. Simplify your report design, integration and deployment - and &amp;nbsp;
&lt;br&gt;focus on
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26554854&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26554854&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/scanning-%2B-OCR-the-monkey-way-...-tp26554003p26554854.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26554003</id>
	<title>scanning + OCR the monkey way ...</title>
	<published>2009-11-28T07:16:32Z</published>
	<updated>2009-11-28T07:16:32Z</updated>
	<author>
		<name>Albretch Mueller-3</name>
	</author>
	<content type="html">~
&lt;br&gt;&amp;nbsp;the guys at pgdp.net (Project Gutenberg, Distributed Proofreaders)
&lt;br&gt;usually destroy books in order to make the scanning + OCR doable in a
&lt;br&gt;time frame that makes &amp;quot;business&amp;quot; sense (they volunteer their service
&lt;br&gt;as proofreaders but they must do it in the least possible time and
&lt;br&gt;with the least amount of technical hassle, so they cut off the books'
&lt;br&gt;bindings and use commercial batch scanners to do all even and then odd
&lt;br&gt;pages at once).
&lt;br&gt;~
&lt;br&gt;&amp;nbsp;The thing is that sometimes you have only one copy you can or should
&lt;br&gt;not destroy. I am actually against destroying books or anything as
&lt;br&gt;long as there is a non-invasive/destroying way to do things.
&lt;br&gt;~
&lt;br&gt;&amp;nbsp;There is plenty of software to do the preprocessing and OCR process,
&lt;br&gt;but the actual physical part of producing the images one after the
&lt;br&gt;other is the show stopper. What I have in mind is &amp;nbsp;mount a camera on a
&lt;br&gt;tripod and configuring it with enough resolution to take pictures of
&lt;br&gt;the pages, which should be saved in some sort of lossless format, but
&lt;br&gt;I don't know how to drive a camera via its usb ports so that I can
&lt;br&gt;somehow drive/automate:
&lt;br&gt;~
&lt;br&gt;&amp;nbsp;1) when or the time intervals at which to take pictures
&lt;br&gt;~
&lt;br&gt;&amp;nbsp;2) to save the pictures prefixed in a certain way enumerating first
&lt;br&gt;even and then odd pages ...
&lt;br&gt;~
&lt;br&gt;&amp;nbsp;cameras do enumerate pictures on their own and I guess doing the
&lt;br&gt;clicking via software shouldn't be a bid deal. There may even be
&lt;br&gt;cameras with enough resolution for you to be able to get to them
&lt;br&gt;wirelessly
&lt;br&gt;~
&lt;br&gt;&amp;nbsp;I found for example:
&lt;br&gt;~
&lt;br&gt;comp.os.linux.hardware: &amp;quot;Nokia phone via USB ???&amp;quot;
&lt;br&gt;~
&lt;br&gt;&amp;nbsp;alt.os.linux: USB camera with Linux?
&lt;br&gt;~
&lt;br&gt;&amp;nbsp;which somewhat relates to what I am trying to do. They are able to
&lt;br&gt;access the internals of the camera to just transfer files not really
&lt;br&gt;automate its functions
&lt;br&gt;~
&lt;br&gt;&amp;nbsp;I do know google uses huge and expensive machines to scan pages (and
&lt;br&gt;somehow do some OCR to since they make them searchable)
&lt;br&gt;~
&lt;br&gt;&amp;nbsp;Is it possible? What do you suggest?
&lt;br&gt;~
&lt;br&gt;&amp;nbsp;Thank you
&lt;br&gt;&amp;nbsp;lbrtchx
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26554003&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/scanning-%2B-OCR-the-monkey-way-...-tp26554003p26554003.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26528688</id>
	<title>Re: Canon EOS 500D</title>
	<published>2009-11-26T03:23:29Z</published>
	<updated>2009-11-26T03:23:29Z</updated>
	<author>
		<name>Alberto-53</name>
	</author>
	<content type="html">Thank Sergey but I would like to continue trying it.&lt;br&gt;&lt;br&gt;Marcus, added my debug log on tar.gz :)&lt;br&gt;&lt;br&gt;regards&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;2009/11/26 Sergey Kruk &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26528688&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sergey.kruk@...&lt;/a&gt;&amp;gt;&lt;/span&gt;&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;&lt;div class=&quot;im&quot;&gt;&amp;gt; This error is known for other people with &amp;#39;Canon EOS 500D&amp;#39;?&lt;br&gt;

&lt;br&gt;
&lt;/div&gt;I have the same issue with Canon EOS 450D on kubuntu 9.10 amd64. This&lt;br&gt;
problem appeared when I upgraded from 9.04.&lt;br&gt;
I didn&amp;#39;t find a way to resolve this problem. So I use Nikon :)&lt;br&gt;
&lt;br&gt;
Sergey Kruk&lt;br&gt;
==================================================&lt;br&gt;
&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;On Thu, Nov 26, 2009 at 10:19 AM, Alberto &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26528688&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sepu66@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;
&amp;gt; As we can identify the error and knowledge because it is happening?&lt;br&gt;
&amp;gt; This error is known for other people with &amp;#39;Canon EOS 500D&amp;#39;?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; 2009/11/25 Alberto &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26528688&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sepu66@...&lt;/a&gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; Thank U Marcus! But it not work :(&lt;br&gt;
&amp;gt;&amp;gt; If I set &amp;#39;capturetarge=1&amp;#39; and later I execute &amp;#39; gphoto2 --capture-image&amp;#39;&lt;br&gt;
&amp;gt;&amp;gt; the camera remains blocked, after minutes, appears an error on console:&lt;br&gt;
&amp;gt;&amp;gt; ERROR: Could not&lt;br&gt;
&amp;gt;&amp;gt; capture.&lt;br&gt;
&amp;gt;&amp;gt; *** Error (-1: «Error no especificado») ***&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; With &amp;#39; --debug&amp;#39; activated the next message appears few times:&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; 60.024240 ptp2/ptp_usb_getresp(2): reading response&lt;br&gt;
&amp;gt;&amp;gt; 60.024244 ptp2/ptp_usb_getpacket(2): getting next ptp packet&lt;br&gt;
&amp;gt;&amp;gt; 60.024249 gphoto2-port(2): Reading 512=0x200 bytes from port...&lt;br&gt;
&amp;gt;&amp;gt; 60.024967 gphoto2-port(2): Could only read 12 de 512 byte(s)&lt;br&gt;
&amp;gt;&amp;gt; 60.024979 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:&lt;br&gt;
&amp;gt;&amp;gt; 0000  0c 00 00 00 03 00 01 20-41 01 00 00              ....... A...&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; Any ideas?&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; 2009/11/25 Marcus Meissner &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26528688&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;meissner@...&lt;/a&gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; On Wed, Nov 25, 2009 at 03:47:23PM +0100, Alberto wrote:&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; &amp;gt; Hi!&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; &amp;gt; I have compiled and installed these versions:&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; &amp;gt; libgphoto2-2.4.7&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; &amp;gt; gphoto2-2.4.7&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; &amp;gt; gphotofs-0.4.0&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; &amp;gt; on Ubuntu Linux 9.10 Karmic Koala with kernel 2.6.31-15.&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; &amp;gt; All the functions of Gphoto2 work correctly with my Canon EOS 500D. The&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; &amp;gt; problem is when use the option &amp;#39;--capture-image&amp;#39;, the camera realises&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; &amp;gt; the&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; &amp;gt; photography, but the image is not written in the camera and either in&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; &amp;gt; the&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; &amp;gt; PC. If use &amp;#39;--capture-image-and-donwload&amp;#39; it works and the image is&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; &amp;gt; stored&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; &amp;gt; in the PC, but I need that the image is stored in the camera.&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; &amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; &amp;gt; Best regards!!!&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; Set the capturetarget to &amp;quot;card&amp;quot;.&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; gphoto2 --set-config capturetarget=1&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; Ciao, Marcus&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; --&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; Sepu ...and Linux for all&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; --&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Sepu ...and Linux for all&lt;br&gt;
&amp;gt;&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&amp;gt; ------------------------------------------------------------------------------&lt;br&gt;
&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day&lt;br&gt;
&amp;gt; trial. Simplify your report design, integration and deployment - and focus&lt;br&gt;
&amp;gt; on&lt;br&gt;
&amp;gt; what you do best, core application coding. Discover what&amp;#39;s new with&lt;br&gt;
&amp;gt; Crystal Reports now.  &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;
&amp;gt; _______________________________________________&lt;br&gt;
&amp;gt; Gphoto-user mailing list&lt;br&gt;
&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26528688&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;&lt;br&gt;
&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;-- &lt;br&gt;&lt;br&gt;Sepu ...and Linux for all&lt;br&gt;
&lt;br /&gt; &lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26528688&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;my-logfile.txt.tar.gz&lt;/strong&gt; (73K) &lt;a href=&quot;http://old.nabble.com/attachment/26528688/0/my-logfile.txt.tar.gz&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Canon-EOS-500D-tp26513924p26528688.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26525451</id>
	<title>Re: Canon EOS 500D</title>
	<published>2009-11-25T23:34:33Z</published>
	<updated>2009-11-25T23:34:33Z</updated>
	<author>
		<name>Sergey Kruk</name>
	</author>
	<content type="html">&amp;gt; This error is known for other people with 'Canon EOS 500D'?
&lt;br&gt;&lt;br&gt;I have the same issue with Canon EOS 450D on kubuntu 9.10 amd64. This
&lt;br&gt;problem appeared when I upgraded from 9.04.
&lt;br&gt;I didn't find a way to resolve this problem. So I use Nikon :)
&lt;br&gt;&lt;br&gt;Sergey Kruk
&lt;br&gt;==================================================
&lt;br&gt;On Thu, Nov 26, 2009 at 10:19 AM, Alberto &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26525451&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sepu66@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; As we can identify the error and knowledge because it is happening?
&lt;br&gt;&amp;gt; This error is known for other people with 'Canon EOS 500D'?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 2009/11/25 Alberto &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26525451&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sepu66@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Thank U Marcus! But it not work :(
&lt;br&gt;&amp;gt;&amp;gt; If I set 'capturetarge=1' and later I execute ' gphoto2 --capture-image'
&lt;br&gt;&amp;gt;&amp;gt; the camera remains blocked, after minutes, appears an error on console:
&lt;br&gt;&amp;gt;&amp;gt; ERROR: Could not
&lt;br&gt;&amp;gt;&amp;gt; capture.
&lt;br&gt;&amp;gt;&amp;gt; *** Error (-1: «Error no especificado») ***
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; With ' --debug' activated the next message appears few times:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; 60.024240 ptp2/ptp_usb_getresp(2): reading response
&lt;br&gt;&amp;gt;&amp;gt; 60.024244 ptp2/ptp_usb_getpacket(2): getting next ptp packet
&lt;br&gt;&amp;gt;&amp;gt; 60.024249 gphoto2-port(2): Reading 512=0x200 bytes from port...
&lt;br&gt;&amp;gt;&amp;gt; 60.024967 gphoto2-port(2): Could only read 12 de 512 byte(s)
&lt;br&gt;&amp;gt;&amp;gt; 60.024979 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
&lt;br&gt;&amp;gt;&amp;gt; 0000  0c 00 00 00 03 00 01 20-41 01 00 00              ....... A...
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Any ideas?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; 2009/11/25 Marcus Meissner &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26525451&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;meissner@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; On Wed, Nov 25, 2009 at 03:47:23PM +0100, Alberto wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; Hi!
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; I have compiled and installed these versions:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; libgphoto2-2.4.7
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; gphoto2-2.4.7
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; gphotofs-0.4.0
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; on Ubuntu Linux 9.10 Karmic Koala with kernel 2.6.31-15.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; All the functions of Gphoto2 work correctly with my Canon EOS 500D. The
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; problem is when use the option '--capture-image', the camera realises
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; the
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; photography, but the image is not written in the camera and either in
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; the
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; PC. If use '--capture-image-and-donwload' it works and the image is
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; stored
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; in the PC, but I need that the image is stored in the camera.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; Best regards!!!
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Set the capturetarget to &amp;quot;card&amp;quot;.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; gphoto2 --set-config capturetarget=1
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Ciao, Marcus
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Sepu ...and Linux for all
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Sepu ...and Linux for all
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
&lt;br&gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus
&lt;br&gt;&amp;gt; on
&lt;br&gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt; Crystal Reports now.  &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Gphoto-user mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26525451&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26525451&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Canon-EOS-500D-tp26513924p26525451.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26525364</id>
	<title>Re: Canon EOS 500D</title>
	<published>2009-11-25T23:25:15Z</published>
	<updated>2009-11-25T23:25:15Z</updated>
	<author>
		<name>Marcus Meissner</name>
	</author>
	<content type="html">On Wed, Nov 25, 2009 at 04:11:06PM +0100, Alberto wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Thank U Marcus! But it not work :(
&lt;br&gt;&amp;gt; If I set 'capturetarge=1' and later I execute ' gphoto2 --capture-image' the
&lt;br&gt;&amp;gt; camera remains blocked, after minutes, appears an error on console:
&lt;br&gt;&amp;gt; ERROR: Could not
&lt;br&gt;&amp;gt; capture.
&lt;br&gt;&amp;gt; *** Error (-1: «Error no especificado») ***
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; With ' --debug' activated the next message appears few times:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 60.024240 ptp2/ptp_usb_getresp(2): reading response
&lt;br&gt;&amp;gt; 60.024244 ptp2/ptp_usb_getpacket(2): getting next ptp packet
&lt;br&gt;&amp;gt; 60.024249 gphoto2-port(2): Reading 512=0x200 bytes from port...
&lt;br&gt;&amp;gt; 60.024967 gphoto2-port(2): Could only read 12 de 512 byte(s)
&lt;br&gt;&amp;gt; 60.024979 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:
&lt;br&gt;&amp;gt; 0000 &amp;nbsp;0c 00 00 00 03 00 01 20-41 01 00 00 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;....... A...
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Any ideas?
&lt;/div&gt;&lt;br&gt;Hmm, it does not seem to get the necessary events back :/
&lt;br&gt;&lt;br&gt;Can you mail me the full debug output?
&lt;br&gt;&lt;br&gt;Ciao, Marcus
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26525364&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Canon-EOS-500D-tp26513924p26525364.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26525222</id>
	<title>Re: Canon EOS 500D</title>
	<published>2009-11-25T23:19:04Z</published>
	<updated>2009-11-25T23:19:04Z</updated>
	<author>
		<name>Alberto-53</name>
	</author>
	<content type="html">As we can identify the error and knowledge because it is happening?&lt;br&gt;This error is known for other people with &amp;#39;Canon EOS 500D&amp;#39;?&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;2009/11/25 Alberto &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26525222&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sepu66@...&lt;/a&gt;&amp;gt;&lt;/span&gt;&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;Thank U Marcus! But it not work :(&lt;br&gt;If I set &amp;#39;capturetarge=1&amp;#39; and later I execute &amp;#39; gphoto2 --capture-image&amp;#39; the camera remains blocked, after minutes, appears an error on console:&lt;br&gt;
ERROR: Could not capture.                                                      &lt;br&gt;
*** Error (-1: «Error no especificado») ***&lt;br&gt;&lt;br&gt;With &amp;#39; --debug&amp;#39; activated the next message appears few times:&lt;br&gt;&lt;br&gt;60.024240 ptp2/ptp_usb_getresp(2): reading response&lt;br&gt;60.024244 ptp2/ptp_usb_getpacket(2): getting next ptp packet&lt;br&gt;

60.024249 gphoto2-port(2): Reading 512=0x200 bytes from port...&lt;br&gt;60.024967 gphoto2-port(2): Could only read 12 de 512 byte(s)&lt;br&gt;60.024979 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows:&lt;br&gt;0000  0c 00 00 00 03 00 01 20-41 01 00 00              ....... A...    &lt;br&gt;

&lt;br&gt;Any ideas?&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;2009/11/25 Marcus Meissner &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26525222&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;meissner@...&lt;/a&gt;&amp;gt;&lt;/span&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;

&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div&gt;On Wed, Nov 25, 2009 at 03:47:23PM +0100, Alberto wrote:&lt;br&gt;
&amp;gt; Hi!&lt;br&gt;
&amp;gt; I have compiled and installed these versions:&lt;br&gt;
&amp;gt; libgphoto2-2.4.7&lt;br&gt;
&amp;gt; gphoto2-2.4.7&lt;br&gt;
&amp;gt; gphotofs-0.4.0&lt;br&gt;
&amp;gt; on Ubuntu Linux 9.10 Karmic Koala with kernel 2.6.31-15.&lt;br&gt;
&amp;gt; All the functions of Gphoto2 work correctly with my Canon EOS 500D. The&lt;br&gt;
&amp;gt; problem is when use the option &amp;#39;--capture-image&amp;#39;, the camera realises the&lt;br&gt;
&amp;gt; photography, but the image is not written in the camera and either in the&lt;br&gt;
&amp;gt; PC. If use &amp;#39;--capture-image-and-donwload&amp;#39; it works and the image is stored&lt;br&gt;
&amp;gt; in the PC, but I need that the image is stored in the camera.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Best regards!!!&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;Set the capturetarget to &amp;quot;card&amp;quot;.&lt;br&gt;
&lt;br&gt;
gphoto2 --set-config capturetarget=1&lt;br&gt;
&lt;br&gt;
Ciao, Marcus&lt;br&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;br&gt;&lt;br clear=&quot;all&quot;&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;&lt;br&gt;-- &lt;br&gt;&lt;br&gt;Sepu ...and Linux for all&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;-- &lt;br&gt;&lt;br&gt;Sepu ...and Linux for all&lt;br&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Gphoto-user mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26525222&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gphoto-user@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gphoto-user&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gphoto-user&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Canon-EOS-500D-tp26513924p26525222.html" />
</entry>

</feed>
