Software di codifica musicale per Mac

0

Dal passaggio da Windows a Mac, ho cercato una buona applicazione di codifica musicale per Mac OS X.

Ho provato app come Tagalicious, TriTag e alcune altre app, ma nessuna mi ha reso felice finora. Fondamentalmente sto cercando qualcosa di simile a Mp3Tag (che è solo Windows).

Basta chiedere prima di prendere in considerazione l'avvio di un progetto open source e farlo da solo.

    
posta pt2ph8 22.03.2011 - 13:31
fonte

2 risposte

1

Ecco alcune opzioni:

Potresti anche dare un'occhiata al link

    
risposta data 22.03.2011 - 16:23
fonte
1

Ho utilizzato principalmente TriTag o AppleScript temporanei come questo:

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
    
risposta data 22.03.2011 - 22:43
fonte

Leggi altre domande sui tag