software de etiquetado de música para Mac

0

Desde el cambio de Windows a Mac, he estado buscando una buena aplicación de etiquetado de música para Mac OS X.

He probado aplicaciones como Tagalicious, TriTag y algunas otras aplicaciones, pero ninguna me ha hecho feliz hasta ahora. Básicamente estoy buscando algo similar a Mp3Tag (que es solo para Windows).

Solo pregunto antes de considerar comenzar un proyecto de código abierto y hacerlo por mi cuenta.

    
pregunta pt2ph8 22.03.2011 - 13:31

2 respuestas

1

Aquí hay algunas opciones:

También puede consultar enlace

    
respondido por el Josh Newman 22.03.2011 - 16:23
1

He utilizado principalmente TriTag o AppleScripts temporales como este:

tell application "iTunes"
    repeat with t in selection
        --set AppleScript's text item delimiters to "-"
        --set ti to text items of n
        --set track number of t to item 1 of ti
        --set artist of t to item 2 of ti
        --set album of t to item 3 of ti
        --set name of t to item 4 of ti
        --set name of t to (get track number of t)
        --set name of t to my titlecase(get name of t)
    end repeat
end tell

on titlecase(x)
    do shell script "ruby -Ku -rubygems -e 'require \"titlecase\"; print STDIN.read.chomp.titlecase' <<< " & quoted form of x without altering line endings
end titlecase

on replace(input, x, y)
    set text item delimiters to x
    set ti to text items of input
    set text item delimiters to y
    ti as text
end replace

on split(input, x)
    if input does not contain x then return {input}
    set text item delimiters to x
    text items of input
end split
    
respondido por el user495470 22.03.2011 - 22:43

Lea otras preguntas en las etiquetas