-
Notifications
You must be signed in to change notification settings - Fork 1
/
NOTES
142 lines (125 loc) · 3.58 KB
/
NOTES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
iTunes Music Library.xml
========================
Music Folder" = "file://localhost/Local/Music/";
Tracks = {
7571 = {
Album = Karma;
Artist = Moshcircus;
"Artwork Count" = 1;
BPM = 232;
"Bit Rate" = 128;
"Date Added" = 2006-03-11 11:42:23 +0100;
"Date Modified" = 2006-03-27 17:35:22 +0200;
"File Creator" = 1752133483;
"File Folder Count" = 4;
"File Type" = 1295270176;
Genre = Metal;
Kind = "AAC audio file";
"Library Folder Count" = 1;
Location = "file://localhost/Local/Music/Moshcircus/Karma/04%20Karma.m4a";
Name = Karma;
"Persistent ID" = DA09BE8A0BA99515;
"Play Count" = 60;
"Play Date" = 3247846331;
"Play Date UTC" = 2006-12-01 18:32:11 +0100;
"Sample Rate" = 44100;
Size = 4082013;
"Total Time" = 245270;
"Track Count" = 11;
"Track ID" = 7571;
"Track Number" = 4;
"Track Type" = File;
Year = 2006;
};
Playlists = (
{
"All Items" = 1;
Master = 1;
Name = Library;
"Playlist ID" = 9181;
"Playlist Items" = ({"Track ID" = 9059; });
"Playlist Persistent ID" = 800DBB44BA8E31C5;
Visible = 0;
},
{
"All Items" = 1;
Name = "Moshcircus - Karma (orig)";
"Parent Persistent ID" = E7FF551986B26ED8;
"Playlist ID" = 26121;
"Playlist Items" = ({"Track ID" = 7571; });
"Playlist Persistent ID" = 7A0FE2A0B4C1DDFA;
}
);
Hierarchical Playlists
======================
<dict>
<key>Name</key><string>self</string>
<key>Playlist ID</key><integer>37700</integer>
<key>Playlist Persistent ID</key><string>C04DA2199D66B45A</string>
<key>All Items</key><true/>
<key>Folder</key><true/>
<key>Playlist Items</key>
<array>
<dict>
<key>Track ID</key><integer>8314</integer>
</dict>
...
</array>
</dict>
<dict>
<key>Name</key><string>Intros</string>
<key>Playlist ID</key><integer>38805</integer>
<key>Playlist Persistent ID</key><string>E7FF551986B26EDA</string>
<key>Parent Persistent ID</key><string>E7FF551986B26ED9</string>
<key>All Items</key><true/>
<key>Folder</key><true/>
<key>Playlist Items</key>
<array>
<dict>
<key>Track ID</key><integer>14310</integer>
</dict>
...
</array>
</dict>
Spotlight
=========
"public.audio" = {
allattrs = (
kMDItemAlbum,
kMDItemTitle,
kMDItemMusicalGenre,
kMDItemRecordingDate,
kMDItemAuthors,
kMDItemComposer
);
displayattrs = (
kMDItemAlbum,
kMDItemTitle,
kMDItemMusicalGenre,
kMDItemRecordingDate,
kMDItemAuthors,
kMDItemComposer,
kMDItemRecordingYear
);
iTunes localization
===================
/Applications/iTunes.app/Contents/Resources/English.lproj/Localizable.strings
"135.014" = "WIEDERGABELISTEN";
"128.006" = "Compilations";
"kSearchMenuItemAlbums" = "Alben";
"kSearchMenuItemArtists" = "Interpreten";
"kSearchMenuItemSongs" = "Songs";
"3102.020" = "Unbekannt";
"kSearchMenuItemAll" = "Alle";
Sharing via Apache2/DAV
=======================
<Directory "/Volumes/iTunesFS/">
Options Indexes
AllowOverride All
Order allow,deny
Allow from all
</Directory>
Alias /iTunesFS /Volumes/iTunesFS
<Location /iTunesFS>
Dav On
</Location>