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
|
#!/usr/bin/python
## Copyright (C) 2006 Nick Piper <nick-gtkpod at nickpiper co uk>
## Part of the gtkpod project.
## URL: http://www.gtkpod.org/
## URL: http://gtkpod.sourceforge.net/
## The code contained in this file is free software; you can redistribute
## it and/or modify it under the terms of the GNU Lesser General Public
## License as published by the Free Software Foundation; either version
## 2.1 of the License, or (at your option) any later version.
## This file is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## Lesser General Public License for more details.
## You should have received a copy of the GNU Lesser General Public
## License along with this code; if not, write to the Free Software
## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# this file is just a little example to see how you could add music
import os, os.path
import gpod
import sys
from optparse import OptionParser
import eyeD3
import urlparse, urllib2
import tempfile
import shutil
def download(path):
print "Downloading %s" % path
remotefile = urllib2.urlopen(path)
try:
size = int(remotefile.info()['Content-Length'])
except KeyError:
size = None
hndl, tempfilename = tempfile.mkstemp()
temp = open(tempfilename,"wb")
fetched = 0
while 1:
buf = remotefile.read(1024*10)
if not buf: break
temp.write(buf)
fetched += len(buf)
if size:
sys.stdout.write("%.02f%% of %s Bytes\r" % (100*fetched / float(size), size))
else:
sys.stdout.write(" Fetched %d bytes\r" % fetched)
sys.stdout.flush()
temp.close()
remotefile.close()
return tempfilename
parser = OptionParser()
parser.add_option("-m", "--mountpoint", dest="mountpoint",
default="/mnt/ipod",
help="use iPod at MOUNTPOINT", metavar="MOUNTPOINT")
parser.add_option("-p", "--podcast",
dest="ispodcast",
action="store_true",
default=False,
help="add to podcast playlist")
(options, args) = parser.parse_args()
if len(args) == 0:
parser.error("Requires an mp3 to add.")
itdb = gpod.itdb_parse(options.mountpoint, None)
if not itdb:
print "Failed to read iPod at %s" % options.mountpoint
sys.exit(2)
itdb.mountpoint = options.mountpoint
for path in args:
deleteWhenDone = []
transport = urlparse.urlsplit(path)[0]
if transport:
path = download(path)
deleteWhenDone.append(path)
if not eyeD3.isMp3File(path):
sys.stderr.write("%s it not recognised as an mp3 file by eyeD3 tag library.\n" % path)
if transport:
sys.stderr.write("Leaving for inspection.\n")
deleteWhenDone.pop()
continue
track = gpod.itdb_track_new()
audiofile = eyeD3.Mp3AudioFile(path)
tag = audiofile.getTag()
track.artist= str(tag.getArtist())
track.album = str(tag.getAlbum())
track.title = str(tag.getTitle())
track.filetype = 'mp3'
track.tracklen = audiofile.getPlayTime() * 1000 # important to add!, iPod uses ms.
if options.ispodcast:
track.flag1 = 0x02 # unknown
track.flag2 = 0x01 # skip when shuffling
track.flag3 = 0x01 # remember playback position
track.flag4 = 0x01 # Show Title/Album on the 'Now Playing' page
playlists = [gpod.itdb_playlist_podcasts(itdb)]
print "Adding Podcast %s (Title: %s)" % (path,track.title)
else:
track.flag1 = 0x02 # unknown
track.flag2 = 0x00 # do not skip when shuffling
track.flag3 = 0x00 # do not remember playback position
track.flag4 = 0x00 # Show Title/Album/Artist on the 'New Playing' page
playlists = [gpod.itdb_playlist_mpl(itdb)]
print "Adding Song %s (Title: %s)" % (path,track.title)
gpod.itdb_track_add(itdb, track, -1)
for playlist in playlists:
gpod.itdb_playlist_add_track(playlist, track, -1)
if gpod.itdb_cp_track_to_ipod(track, path, None) == 1:
print "Copied to %s" % gpod.itdb_filename_on_ipod(track)
else:
print "Copy failed"
[os.unlink(f) for f in deleteWhenDone]
gpod.itdb_write(itdb, None)
print "Saved db"
|