Author | Thread |
|
04/08/2006 10:38:07 PM · #1 |
hi does anyone know the trick to importing photos from this device, I really love it but I getting my shots imported onto my mac is always difficult.
help : )
thanks |
|
|
04/08/2006 10:45:24 PM · #2 |
|
|
04/08/2006 10:49:05 PM · #3 |
I did it once in october, I do not remember how I did it, and now I cannot get it to work at all : ( |
|
|
04/08/2006 11:09:36 PM · #4 |
This review might help.
--DanW |
|
|
04/09/2006 12:22:02 AM · #5 |
sadly did not help : (
I keep getting messages that say the files are not readable.
any ideas?
they end tmb and vga, after the CRW |
|
|
04/09/2006 12:29:21 AM · #6 |
Okay, this isn't real sophisticated, but it works extremely well for me. I have this script file sitting on my desktop. Before I use it, I right-click and edit the SOURCE path (specifying today's date, since the Epson places everything in a dated folder). Then I save, exit, and then click on it and let it run.
Even if I have shot 17 cards (like today), the above couple of steps are all I have to do. This program will traverse all of the subdirectories (even the ones that Canon makes) and copy all of the files into the TARGET folder.
The TARGET folder is the folder specified on the 2nd line - with the addition of today's date. So, for example, all 2000+ pictures shot today landed in my F:\PICS\NEW\2006-04-08 directory.
Hope this helps...
// Customizations go on the source and target paths below
// Note: double-up the backslashes and no trailing backslashes.
//-----------------------------------------------------------------------------
var sourcePath = "J:\\cards\\20060408"; //this is the drive letter your memory card shows up as
var targetPath = "f:\\pics\\new"; //this is where you want the date folders to be created
//------------------------------------------------------------------------------
var fso = new ActiveXObject("Scripting.FileSystemObject");
if (!fso.FolderExists(targetPath))
{
WScript.Echo("Target path not found.");
}
else
{
if (fso.FolderExists(sourcePath))
{
traverse(fso, fso.GetFolder(sourcePath), targetPath);
WScript.Echo("Done");
}
else if (fso.FileExists(sourcePath))
{
doDateCopy(fso, fso.GetFile(sourcePath), targetPath);
WScript.Echo("Done");
}
else
{
WScript.Echo("Source path not found.");
}
}
function traverse(fso, fld, targetPath)
{
var eFil, eFld;
eFil = new Enumerator(fld.Files);
for (; !eFil.atEnd(); eFil.moveNext())
{
doDateCopy(fso, eFil.item(), targetPath);
}
eFld = new Enumerator(fld.SubFolders);
for (; !eFld.atEnd(); eFld.moveNext())
{
traverse(fso, eFld.item(), targetPath);
}
}
function doDateCopy(fso, fil, targetPath)
{
var dt = new Date(fil.DateCreated);
var y = String(dt.getFullYear());
var m = String(dt.getMonth() + 1);
var d = String(dt.getDate());
if (m.length == 1) m = "0" + m;
if (d.length == 1) d = "0" + d;
var targetFolder = y + "-" + m + "-" + d;
var newTargetPath = targetPath + "\\" + targetFolder;
if (!fso.FolderExists(newTargetPath))
{
fso.CreateFolder(newTargetPath);
}
fil.Copy(newTargetPath + "\\" + fil.Name);
}
|
|
|
07/18/2006 05:30:14 AM · #7 |
A new question concering this thing, for those who have it.
How easy is it to change the battery. Is it just open a slot and slide it out, or is it harder that that (scres involved)
Is there an external charger or can you only charge the battery through the system.
can you zoom in on raw files (that is to say the jpg-tag-along file)
what happens if you have a jpg larger than the max resolution size. Does it just display nothing?
|
|
|
07/18/2006 06:17:58 AM · #8 |
- It's easy to change the battery. I carry a spare one with me, it's a good idea.
- I haven't seen an external charger... so as far as I know, you can only charge the battery that is in the system. An external charger would be nice, but so far it has never been a problem for me.
- I have the P-2000 and there is no zoom capability that I'm aware of - was wishing for it just last night. But ... it does display raw files, I love it for that. :-)
- I don't know what the max resolution size is - but I've displayed jpegs as large as 8M. And my raw files are 13-15M in size. |
|
|
07/18/2006 06:43:38 AM · #9 |
thanks for the response.
It CAN zoom in on regular jpgs though can't it. I always shoot in raw so it isn't really that important, i just thought i heard that.
|
|
|
07/18/2006 06:47:34 AM · #10 |
Originally posted by leaf: thanks for the response.
It CAN zoom in on regular jpgs though can't it. I always shoot in raw so it isn't really that important, i just thought i heard that. |
Hey, I learned something new today! :-)
I always shoot raw, so I didn't think it had a zoom capability. I just now tried putting a jpeg on it and sure enough ... you click the center of the OK button and it zooms the jpeg. Went back and tried it on a raw file, and it definitely doesn't work on the raw file.
|
|
|
07/18/2006 07:05:09 AM · #11 |
ok thanks :)
can you tell if the raw file is out of focus or not without zooming?... i guess it would be hard to see on the little screen or?
|
|
|
07/18/2006 07:08:54 AM · #12 |
Originally posted by leaf: ok thanks :)
can you tell if the raw file is out of focus or not without zooming?... i guess it would be hard to see on the little screen or? |
The screen looks ginormeous compared to the one on the back of your camera. :-) But no... there's nothing like putting the picture up on your computer monitor to see if it's really in focus or not. I've had pictures look great on the viewer only to get home and find out they were a bit blurry - enough for me to end up throwing away an image I thought was good. |
|
Home -
Challenges -
Community -
League -
Photos -
Cameras -
Lenses -
Learn -
Help -
Terms of Use -
Privacy -
Top ^
DPChallenge, and website content and design, Copyright © 2001-2025 Challenging Technologies, LLC.
All digital photo copyrights belong to the photographers and may not be used without permission.
Current Server Time: 09/06/2025 01:25:56 PM EDT.