More efficient Exports
I use Windows 10. When editing, exporting and saving a large number of photo, there is a lot of time spent waiting for the export. So I used AutoHotkey to create a script. The script Opens LMNR files in a directory, then exports them. So now my work flow is to Open my CR2 files, apply filters that I desire and save as LMNR file. When I am finished I run the Script and go have a beer or to shot more photos.
Prior to running the script I need to export one file to get export setting the way I like, especially the export directory.
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
#Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
^w::
PhotoDir := "C:\Users\Public\Pictures\Hudson Valley\2018\August 2018\Macro\Spiders webs\"
if FileExist(PhotoDir)
PhotoFile = %PhotoDir%*.lmnr
SetWorkingDir, %PhotoDir%
MsgBox, Working Dir is %A_WorkingDir%
;EditList =
Loop, Files, *.lmnr , F
{
EditList = %A_LoopFileName%`n
Send, {Ctrl down}o{Ctrl up}
Sleep, 1000
Send, %EditList% {enter}
Sleep, 90000
Send, {Ctrl down}+e{Ctrl up}{enter}
Sleep, 90000
}
return
Please sign in to leave a comment.
Comments
1 comment