Me he pasado horas investigando y no consigo encontrar una respuesta, así que su ayuda sería muy apreciada.
Tengo una grabadora de audio que produce 16 archivos que siempre tienen el mismo nombre.
NOMBRES DE ARCHIVOS ORIGINALES
(TRK01.WAV, TRK02.WAV, TRK03.WAV, TRK04.WAV, TRK05.WAV, TRK06.WAV, TRK07.WAV, TRK08.WAV, TRK09.WAV, TRK10.WAV, TRK11.WAV, TRK12.WAV, TRK13.WAV, TRK14.WAV, TRK15.WAV, TRK16.WAV)
Quiero una aplicación de Automator que cambie los nombres de los archivos a la siguiente lista.
NUEVOS NOMBRES DE ARCHIVOS
(01_Lav.WAV, 02_HH1.WAV, 03_Piano.WAV, 04_TR AC.WAV, 05_MX AC.WAV, 06_Bass.WAV, 07_ElectG.WAV, 08_KickD.WAV, 09_Vox1. WAV, 10_Vox2.WAV, 11_Vox3.WAV, 12_Vox4.WAV, 13_CrowdL.WAV, 14_CrowdR.WAV, 15_Aux7_R.WAV, 16_MainLR_R.WAV)
De esta manera puedo guardar la aplicación en un disco duro al que transfiero los archivos y la ejecuto cuando la necesito.
Estaba pensando que sería algo así:
set theFolder to choose folder
set name of file “TRK01.WAV“ to “01_Lav.WAV“
set name of file “TRK02.WAV“ to “02_HH1.WAV“
set name of file “TRK03.WAV“ to “03_Piano.WAV“
set name of file “TRK04.WAV“ to “04_TR AC.WAV“
set name of file “TRK05.WAV“ to “05_MX AC.WAV“
set name of file “TRK06.WAV“ to “06_Bass.WAV“
set name of file “TRK07.WAV“ to “07_ElectG.WAV“
set name of file “TRK08.WAV“ to “08_KickD.WAV“
set name of file “TRK09.WAV“ to “09_Vox1.WAV“
set name of file “TRK10.WAV“ to “10_Vox2.WAV“
set name of file “TRK11.WAV“ to “11_Vox3.WAV“
set name of file “TRK12.WAV“ to “12_Vox4.WAV“
set name of file “TRK13.WAV“ to “13_CrowdL.WAV“
set name of file “TRK14.WAV“ to “14_CrowdR.WAV“
set name of file “TRK15.WAV“ to “15_Aux7_R.WAV“
set name of file “TRK16.WAV“ to “16_MainLR_R.WAV“
tell application "Finder"
(open theFolder) select
end tell
¿Cómo se haría esto realmente?