Re: call for Nikon DSLR testers
Saren Tasciyan <[email protected]>
| Newsgroups | gmane.comp.multimedia.gphoto.user |
|---|---|
| Message-ID | <[email protected]> |
Hi Markus, I was trying to figure out why my captures take so long (>30s). I came across your e-mail for a call for Nikon DSLR testers (from 2014). There I have found my solution (setting internal memory as capture target did the trick). Long story short, I have seen Nikon D3300 mentioned in that e-mail to be tested and I decided to test mine and give you the results... I have tested those commands with a bash script (attached) also to measure time required for each command to be finished. All worked except the last one. For that one I have also included the version with "--debug --debug-logfile=004-movie-debug-log.txt" parameters. I see that standard error is missing, I guess. On bash I see these lines too: Waiting for 10 seconds for events from camera. Press Ctrl-C to abort. UNKNOWN PTP Property d10b changed UNKNOWN PTP Property d1a2 changed UNKNOWN PTP Property d0a4 changed UNKNOWN PTP Property d1f1 changed Waiting for 2 seconds for events from camera. Press Ctrl-C to abort. UNKNOWN PTP Property d0a4 changed *** Error *** PTP I/O Error *** Error (-107: 'Directory not found') *** If you need more info, I can perform further tests. Best, Saren ------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot _______________________________________________ Gphoto-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/gphoto-user
004-movie-debug-log.txt
(text/plain, 189 KB) - not displayed
004-movie.txt
(text/plain, 838 B)
Waiting for 10 seconds for events from camera. Press Ctrl-C to abort. UNKNOWN PTP Property d10b changed UNKNOWN PTP Property d1a2 changed UNKNOWN PTP Property d0a4 changed UNKNOWN PTP Property d0a4 changed UNKNOWN PTP Property d1f1 changed Waiting for 2 seconds for events from camera. Press Ctrl-C to abort. UNKNOWN PTP Property d0a4 changed For debugging messages, please use the --debug option. Debugging messages may help finding a solution to your problem. If you intend to send any error or debug messages to the gphoto developer mailing list <[email protected]>, please run gphoto2 as follows: env LANG=C gphoto2 --debug --debug-logfile=my-logfile.txt --set-config movie=1 --wait-event=10s --set-config movie=0 --wait-event-and-download=2s Please make sure there is sufficient quoting around the arguments.
003-frommemorycard.txt
(text/plain, 180 B)
New file is in location /store_00010001/DCIM/102D3300/DSC_1657.NEF on the camera Saving file as DSC_1657.NEF Deleting file /store_00010001/DCIM/102D3300/DSC_1657.NEF on the camera
002-frominternalram.txt
(text/plain, 122 B)
New file is in location /capt0000.nef on the camera Saving file as capt0000.nef Deleting file /capt0000.nef on the camera
001-capturepreview.txt
(text/plain, 425 B)
For debugging messages, please use the --debug option. Debugging messages may help finding a solution to your problem. If you intend to send any error or debug messages to the gphoto developer mailing list <[email protected]>, please run gphoto2 as follows: env LANG=C gphoto2 --debug --debug-logfile=my-logfile.txt --capture-preview Please make sure there is sufficient quoting around the arguments.
gphoto.sh
(application/x-shellscript, 746 B)
#!/bin/bash START=$(date +%s%N) gphoto2 --capture-preview > 001-capturepreview.txt END=$(date +%s%N) DIFF=$((($END-$START)/1000000)) echo "$DIFF milliseconds" START=$(date +%s%N) gphoto2 --set-config capturetarget=0 --capture-image-and-download > 002-frominternalram.txt END=$(date +%s%N) DIFF=$((($END-$START)/1000000)) echo "$DIFF milliseconds" START=$(date +%s%N) gphoto2 --set-config capturetarget=1 --capture-image-and-download > 003-frommemorycard.txt END=$(date +%s%N) DIFF=$((($END-$START)/1000000)) echo "$DIFF milliseconds" START=$(date +%s%N) gphoto2 --set-config movie=1 --wait-event=10s --set-config movie=0 --wait-event-and-download=2s > 004-movie.txt END=$(date +%s%N) DIFF=$((($END-$START)/1000000)) echo "$DIFF milliseconds"