Eccomi di nuovo con un'altra domanda AppleScript di iTunes. Ho una sceneggiatura funzionante in cui selezioni un'opera (diversi "brani" di iTunes) e diciamo cosa impostare i metadati di lavoro come per quella selezione. Puoi anche dire dove inizia il nome del movimento nel nome del brano, e copia tutto ciò che si trova dopo quella posizione nel tag di movimento, escludendo tutti i numeri romani. Naturalmente segna anche i movimenti.
Ecco il codice per questo:
tell application "iTunes"
set sel to selection of front browser window
if sel is {} then
try
display dialog "Nothing is selected…" buttons {"Quit"} with icon 0
end try
return
end if
set c to (count of sel)
set songName to (get name of item 1 of sel)
set workName to display dialog "Edit for Work name and then click OK." default answer songName --prompt for work name
set movementLength to display dialog "Edit to everything except the movement name. Do not include the roman numeral if one is present. If an arabic numeral is present, include it." default answer songName --prompt for movement length
repeat with i from 1 to c --set the movement numbers
set thisTrack to item i of sel
set songName to (get name of thisTrack)
set work of thisTrack to text returned of workName
set movement number of thisTrack to i
set movement count of thisTrack to c
set movement of thisTrack to my delRomNum(text ((length of text returned of movementLength) + 1) thru (length of songName) of songName as string) -- copy movement text from song name and delete roman numerals
end repeat
end tell
on delRomNum(t) -- the perl command search and delete any roman numeral (must be a word followed by the period and a space character)
do shell script "/usr/bin/perl -pe 's/\b[IVXLCDM]+\b. //g' <<< " & quoted form of t
end delRomNum
Puoi vedere il mio post su questo script qui: Trova -e-replace AppleScript per i nomi delle tracce di iTunes
In ogni caso, quello script non è diventato abbastanza efficiente per il mio utilizzo (elaboro un sacco di tracce classiche)! Usando lo script di cui sopra, devo selezionare ogni singolo lavoro e ritagliarlo di conseguenza per il lavoro, e poi per il movimento.
Ciò che vorrei creare ora è uno script che può eseguire l'intero processo su più opere contemporaneamente, ad esempio un intero album.
Dovrebbe trovare ogni traccia che contiene I.
e impostarla come punto di partenza per lo script che ho delineato sopra, e anche ottenere la posizione di quel I.
e tagliare di conseguenza per i tag Lavoro e Movimento per quel particolare lavoro - ad es. tutto prima di I.
e lo spazio che lo precede verrebbe impostato come lavoro, e tutto quanto dopo sarebbe stato impostato come movimento.
Posso vedere che questo è quello che devo fare, ma sono troppo un noob AppleScript per implementarlo davvero! Per quanto mi riguarda, la vera sfida consiste nel determinare se una stringa si trova all'interno di un'altra stringa (ad esempio, verificare se I.
è all'interno del nome del brano) e trovarne la posizione all'interno del nome del brano. Se sapessi come fare queste due cose, probabilmente potrei scrivere il resto della sceneggiatura!
Qualsiasi suggerimento / idea sarebbe molto utile. E spero che la mia descrizione abbia un senso. Grazie!
Nota: anche se ho ottenuto la risposta alla parte chiave, e posso scrivere il resto dello script da solo, aggiungerò un input / output di esempio.