1 votos

Un Applescript iTunes que anexa a etiquetar sólo cuando no coincide con parte de la cadena de etiqueta?

Estoy tratando de encontrar una manera de agregar una palabra clave o grupo de palabras/tags/cadenas a un conjunto seleccionado de las pistas de iTunes si no se han añadido. Un caso de uso sería para añadir metadatos en un comentario como (en vivo) o (remix).

Si algunas de las pistas que había anteriormente (en vivo), mientras que anexar, entonces no iba a añadir - sólo la no-archivos encontrados. Así que una etiqueta de comentario que contiene (remix)(rápido)(acordeón)(aleatorio) sería (remix)(rápido)(acordeón)(random)(en vivo) después. Sin embargo, si se vuelve a aplicar, sería faltar a esta pista.

La cosa más cercana que puedo encontrar es Inteligente Anexar, pero su sólo para Windows (siendo JavaScript).

El conocido Doug tiene un anexar a la etiqueta de secuencia de comandos, pero no tiene ninguna capacidad de detección. Me asomé en el código (clic derecho > Mostrar Contenido del Paquete) y no puedo envolver mi cabeza alrededor de la edición de la secuencia de comandos.

Alguien sabe de un script existente o una manera de modificar la secuencia de comandos existente?

0voto

Baczek Puntos 150

Este script funciona si la palabra clave está entre paréntesis como en tu ejemplo, si no coincidencia parcial será un problema. Ejemplo: "rápida" partido "más rápido"

 property matchCase : true -- or false -- change according to your needs 

set myTitle to "Append to Comments Tag, if the keyword not exists"
set keywordSeparator to ";" -- keyword separator

tell application "iTunes"
    set sel to selection
    if sel is not {} then -- if tracks are selected...
        set s to "s"
        set x to (length of sel)
        if x is 1 then set s to ""
        set be to (display dialog "Enter keyword to append to the beginning or ending of each selected track's Comments tag:" & return & return & " If more than one keyword, use this character " & keywordSeparator & " as separator." default answer "" buttons {"Cancel", "Beginning", "Ending"} cancel button 1 with title myTitle)
        set appendage to text returned of be
        set buttonOpt to button returned of be is equal to "Ending"
        if appendage is "" then return
        set listOfAppendage to my makeListOfKeywords(keywordSeparator, appendage)
        set oldfi to fixed indexing
        set fixed indexing to true
        repeat with t from 1 to x
            tell contents of item t of sel
                try
                    set tresult to my checkExistKeywords(comment, listOfAppendage, buttonOpt)
                    if tresult is not false then set comment to tresult
                end try
            end tell
        end repeat
        set fixed indexing to oldfi
        activate
        display dialog "Done!" buttons {"OK"} default button 1 with icon 1 with title myTitle giving up after 4
    else
        activate
        display dialog "You must select some tracks first." buttons {"Cancel"} default button 1 with title myTitle
    end if
end tell

on checkExistKeywords(tagValue, tKeywords, tOpt)
    set isAdding to false
    repeat with tKey in tKeywords
        if matchCase then
            considering case
                contents of tKey is not in tagValue
            end considering
        else --Ignore Case
            contents of tKey is not in tagValue
        end if
        if the result then -- no match
            set isAdding to true
            if tOpt then
                set tagValue to tagValue & tKey
            else
                set tagValue to tKey & tagValue
            end if
        end if
    end repeat
    if isAdding then return tagValue
    return false -- nothing to add
end checkExistKeywords

on makeListOfKeywords(tofind, t)
    set ditd to text item delimiters
    set text item delimiters to tofind
    set t to text items of t
    set text item delimiters to ditd
    return t
end makeListOfKeywords
 

AppleAyuda.com

AppleAyuda es una comunidad de usuarios de los productos de Apple en la que puedes resolver tus problemas y dudas.
Puedes consultar las preguntas de otros usuarios, hacer tus propias preguntas o resolver las de los demás.

Powered by:

X