Denna delen av 99 uppdateras inte längre utan har arkiverats inför framtiden som ett museum.
Här kan du läsa mer om varför.
Mac-nyheter hittar du på Macradion.com och forumet hittar du via Applebubblan.

Exportera låtar ur en spelllista i iTunes?

Tråden skapades och har fått 2 svar. Det senaste inlägget skrevs .
1
  • Medlem
  • Motala
  • 2009-07-25 03:59

Precis som topic. Sitter och försöker exportera ett par låtar i en spellista jag har till en specifierad mapp. Hittade den här guiden och försökte mig på att använda den:
macosxhints.com - Export an iTunes playlist in play order using Automator

Får dock bara en varning: Åtgärden "Hämta valda iTunes-objekt" fick ej begärda data.

Någon idé om hur jag kan lösa det eller om ni har något annat tips på hur jag kan exportera spellistor eller markerade låtar?

  • Medlem
  • På ett berg norr om Gävle men söder om Luleå.
  • 2009-07-25 10:14

Jag löste det problemet i förra veckan med hjälp av ett applescript jag hittade på Doug's AppleScripts for iTunes ♫ - dougscripts.com

(*
"Sync Playlist Files to Folder" for iTunes
written by Doug Adams
[email protected]

v1.0 August 12 2005
- initial release

Get more free AppleScripts and info on writing your own
at Doug's AppleScripts for iTunes
http://www.dougscripts.com/itunes/
*)

-- USER SETTINGS:

-- this must be the EXACT name of the playlist--keeping in quotes:
property the_playlist : "PLAYLIST"

-- this should be a string of the path to the folder you want to use--keeping in quotes:
property path_to_folder : "Macintosh HD:Users:USERNAME:Music:export:"

-- =========================================

-- if iTunes is not running, then exit
tell application "System Events" to if (name of every process) does not contain "iTunes" then return

-- init some lists...
set filenames_in_folder to {}
set track_filenames to {}
set track_locations to {}


tell application "Finder"
	try
		repeat with this_file_alias in (get every file of folder (path_to_folder))
			set end of filenames_in_folder to my get_filename_from_filepath(this_file_alias as string)
		end repeat
	end try
end tell

tell application "iTunes"
	repeat with this_track in (get every track of playlist the_playlist)
		if class of this_track is file track then
			try
				set loc to this_track's location
				set end of track_locations to (loc as string)
				set end of track_filenames to my get_filename_from_filepath(loc)
			end try
		end if -- not file track
	end repeat
end tell

-- check if any files in folder are in the playlist...otherwise delete
repeat with this_file in filenames_in_folder
	if this_file is not in track_filenames then delete_from_folder(this_file)
end repeat

-- check if any file tracks are in the folder...otherwise add to folder
repeat with i from 1 to length of track_filenames
	set this_file_track to item i of track_filenames
	if this_file_track is not in filenames_in_folder then add_to_folder(item i of track_locations)
end repeat


-- HANDLERS

to get_filename_from_filepath(fp)
	if (class of fp) is not string then set fp to (fp as string)
	tell application "Finder" to return name of (get info for file fp)
end get_filename_from_filepath

to delete_from_folder(this_file)
	try
		do shell script "cd " & (quoted form of POSIX path of path_to_folder) & "; rm " & (quoted form of this_file)
	on error m
		log m
	end try
end delete_from_folder

to add_to_folder(this_file)
	try
		do shell script "cp " & (quoted form of POSIX path of this_file) & " " & (quoted form of POSIX path of path_to_folder)
	on error m
		log m
	end try
end add_to_folder

Du måste redigera "property the_playlist" och "property path_to_folder" så de matchar en playlist i itunes och en mapp på din dator. Lägg scriptet i ~/Library/iTunes/Scripts/

Se till så den exportmapp du valt existerar. Starta iTunes, se till så playlisten existerar och har innehåll. På script-menyn (ser ut som en pergamentrulle) hittar du sedan ditt exportscript.

Notera att scriptet inte lägger till låtar i mappen. Varje gång du kör scriptet ersätts allt innehåll i mappen med det som finns i playlisten.

Vill du exportera fler playliists till andra mappar skapar du bara en kopia av scriptet och byter ut värdena för "property the_playlist" och "property path_to_folder" till nåt annat.

  • Medlem
  • Motala
  • 2009-07-26 17:15

Tack, funkade perfekt!

1
Bevaka tråden