ID3 Tag von Mp3s auslesen?

M

metty

Aktives Mitglied
Thread Starter
Dabei seit
16.11.2004
Beiträge
200
Reaktionspunkte
4
Hallo Leute!

Ich suche ne Software, die mir den ID3-Tag meiner Mp3 Files ausliest und in ner Textfile speichert.

Ich möchte nicht alles Files in iTunes adden...

Gibts da was?

Danke euch!
 
Schau dir mal Tritag an, vielleicht ist das was für dich?
 
Hallo,

wenn Du sie in iTunes laden würdest, dann hätte ich Dir ein Skript.
Du kannst ja eine zweite Bibliotek anlegen.

Viele Grüße
 
*dummfrag*

wie leg ich ne 2. Bibliothek an?
 
Hallo,

halte die ALT Taste gedrückt, und öffne iTunes. Du bekommst ein Dialogfeld, in dem alles ersichtlich ist.

Viele Grüße

PS: Du benötigst mind. iTunes 7
 
Anbei mein Skript als Applikation.

Anleitung:

- gewünschte Titel in iTunes markieren
- Applikation doppelklicken

Fertig!

Auf dem Schreibtisch ist jetzt eine TXT Datei mit den gewünschten Informatioen.

Für Skripter der Code:

Code:
tell application "iTunes"
	
	set sel to selection
	set trenn to " - "
	
	
	if sel is {} then
		-- Fehlermeldung, wenn keine Tracks aktiviert sind
		display dialog "Die gewünschten Files auswählen!" with title "Meldung" buttons {"OK"} default button 1 with icon 1
	else
		-- sucht und verändert die Covernamen
		with timeout of 30000 seconds
			repeat with naechterTrack in sel
				
				
				set tagNr to track number of naechterTrack as string
				set tagArtist to artist of naechterTrack as text
				set tagName to name of naechterTrack as string
				set tagAlbum to album of naechterTrack as string
				
				try
					set schreibeString to tagNr & trenn & tagArtist & trenn & tagName & trenn & tagAlbum
				end try
				
				set refDatei to (((path to desktop) as string) & "ID3-Info.txt") as file specification
				try
					open for access refDatei with write permission
					write schreibeString & return to refDatei starting at eof
					close access refDatei
				on error
					try
						close access refDatei
					end try
				end try
				
				
			end repeat
		end timeout
	end if
end tell

Viele Grüße
 

Anhänge

  • ID3zuDatei.zip
    25 KB · Aufrufe: 77
Oder Du kannst in iTunes eine Liste oder die ganze Bibliothek auswählen und drucken. Im Druckdialog als PDF abspeichern und Du hast Dein Textfile. :)
 
Zurück
Oben Unten