PentaxForums.com

Go Back PentaxForums.com > Photography > Post Processing, Printing, Software, and Darkroom > File Extension - lowercase?

Post Processing, Printing, Software, and Darkroom Discuss photo printing, scanning, editing, and enchancement methods here.

Reply
 
Thread Tools Search this Thread Display Modes
05-29-2009, 10:06 AM   #1
New Member
 
Location: Massachusetts
Gallery Photos: 0
Posts: 9
File Extension - lowercase?

This is my first post here, and I tried searching for the answer so i apologize if it is listed in another thread somewhere.


Is there a way to specify the file extension as lowercase letters? Instead of IMG0001.PEF it would be IMG0001.pef. I have been playing around with qtpfsgui and it annoyingly only seems to recognize lowercase extensions.

Also, if there are any Linux users out there that have any recommendations on good programs to manage RAW images I would love to hear the suggestions. I have a few I am trying to play around with to see what works best for me.
ahopkins is offline  
05-29-2009, 11:05 AM   #2
Pentaxian
 
Location: Tulsa, OK
Gallery Photos: 4
Posts: 2,089
Welcome "Sir Anthony"

There's no way in-camera to force the file naming to lower case.

As far as photo management in linux goes, digiKam is what I used. I *think* there's an option in its settings to tell it to lowercase the file names as it downloads your RAW & JPG images from the camera/card. It will organize, keyword tag, assign default EXIF/IPTC data, etc.

For RAW processing and editing I used LightZone (lightcrafts.com). There are others - RawStudio, UFRaw for example - but I found LightZone to be the most comprehensive, intuitive and compatible with the K20D color profile. It does cost $99 (used to be $199) but it's worth it for the peace of mind and functionality, in my opinion.
Venturi is offline  
05-29-2009, 11:31 AM   #3
Site Supporter
 
Location: Region 5
Gallery Photos: 3
Posts: 2,203
In linux you can use the rename command to batch rename the files with lowercase extensions, but you have to know regex (regular expressions) which I don't so I can't help you with the exact syntax except to tell you to google it ... It also wouldn't be that hard to cobble together a shell script to do this for you. I could muddle through the script solution myself, but I'm too busy right now.
heliphoto is offline  
05-29-2009, 12:51 PM   #4
Site Supporter
 
Location: Alameda, CA
Gallery Photos: 0
Posts: 862
Can you try this little script. It is kind of mundane but illustrates the renaming to lower case:

-----------------------------------------------------------------------
#!/bin/csh -f

foreach file (*JPG)
set first = `echo ${file} | cut -d "." -f 1`
set second = `echo ${file} | cut -d "." -f 2`
set firstlower = `echo ${first} | tr "A-Z" "a-z"`
set secondlower = `echo ${second} | tr "A-Z" "a-z"`
echo "** Rename ${first}.${second} to ${firstlower}.${secondlower}"
mv ${first}.${second} ${firstlower}.${secondlower}
end

exit
-----------------------------------------------------------------------
SOldBear is online now  
05-29-2009, 08:47 PM   #5
Site Supporter
 
Location: San Jose, CA
Gallery Photos: 0
Posts: 35
In bourne shell flavor:

#!/bin/sh
for f in *.PEF; do mv $f ${f%.PEF}.pef; done
chiem is offline  
05-29-2009, 09:50 PM   #6
New Member
 
Location: Massachusetts
Gallery Photos: 0
Posts: 9
Thanks guys. I have no problem coming up with a script, and i like your suggestions (lucky me i do know how to use regular expressions). Just thought there might be a way to cut out a step. Looking forward to poking aaround these boards and playing with my new camera!
ahopkins is offline  
05-29-2009, 09:51 PM   #7
New Member
 
Location: Massachusetts
Gallery Photos: 0
Posts: 9
PS - it's Adam not Anthony
ahopkins is offline  
06-03-2009, 02:55 PM   #8
Site Supporter
 
Location: virginia beach, VA USA
Gallery Photos: 6
Posts: 714
Thank God! I was afraid Hannibal Lector had joined the forum and was coming to skin me......Welcome Adam! Whew.

(I suspect Venturi was making a reference to the Actor rather than just guessing at your name)
imtheguy is online now  
06-03-2009, 03:56 PM   #9
Pentaxian
 
Location: Tulsa, OK
Gallery Photos: 4
Posts: 2,089
Originally Posted by imtheguy View Post
Thank God! I was afraid Hannibal Lector had joined the forum and was coming to skin me......Welcome Adam! Whew.

(I suspect Venturi was making a reference to the Actor rather than just guessing at your name)
Indeed I was.
Venturi is offline  
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes


All times are GMT -7. The time now is 11:40 AM.