1 import subprocess
, os
, random
, re
, shutil
, socket
, sys
, urllib
, time
, cgi
3 from plugins
.video
.transcode
import kill
4 from Cheetah
.Template
import Template
5 from Cheetah
.Filters
import Filter
6 from plugin
import Plugin
, quote
, unquote
7 from xml
.sax
.saxutils
import escape
8 from lrucache
import LRUCache
9 from urlparse
import urlparse
12 SCRIPTDIR
= os
.path
.dirname(__file__
)
15 return config
.get('Server', 'ffmpeg')
19 PLAYLISTS
= ('.m3u', '.m3u8', '.ram', '.pls', '.b4s', '.wpl', '.asx',
22 TRANSCODE
= ('.mp4', '.m4a', '.flc', '.ogg', '.wma', '.aac', '.wav',
23 '.aif', '.aiff', '.au', '.flac')
25 # Search strings for different playlist types
26 asxfile
= re
.compile('ref +href *= *"(.+)"', re
.IGNORECASE
).search
27 wplfile
= re
.compile('media +src *= *"(.+)"', re
.IGNORECASE
).search
28 b4sfile
= re
.compile('Playstring="file:(.+)"').search
29 plsfile
= re
.compile('[Ff]ile(\d+)=(.+)').match
30 plstitle
= re
.compile('[Tt]itle(\d+)=(.+)').match
31 plslength
= re
.compile('[Ll]ength(\d+)=(\d+)').match
33 # Duration -- parse from ffmpeg output
34 durre
= re
.compile(r
'.*Duration: (.{2}):(.{2}):(.{2})\.(.),').search
36 # Preload the templates
37 tfname
= os
.path
.join(SCRIPTDIR
, 'templates', 'container.tmpl')
38 tpname
= os
.path
.join(SCRIPTDIR
, 'templates', 'm3u.tmpl')
39 folder_template
= file(tfname
, 'rb').read()
40 playlist_template
= file(tpname
, 'rb').read()
43 # subprocess is broken for me on windows so super hack
44 def patchSubprocess():
45 o
= subprocess
.Popen
._make
_inheritable
47 def _make_inheritable(self
, handle
):
48 if not handle
: return subprocess
.GetCurrentProcess()
49 return o(self
, handle
)
51 subprocess
.Popen
._make
_inheritable
= _make_inheritable
53 mswindows
= (sys
.platform
== "win32")
58 def __init__(self
, name
, isdir
):
61 self
.isplay
= os
.path
.splitext(name
)[1].lower() in PLAYLISTS
65 class EncodeUnicode(Filter
):
66 def filter(self
, val
, **kw
):
67 """Encode Unicode strings, by default in UTF-8"""
69 if kw
.has_key('encoding'):
70 encoding
= kw
['encoding']
74 if type(val
) == type(u
''):
75 filtered
= val
.encode(encoding
)
82 CONTENT_TYPE
= 'x-container/tivo-music'
88 media_data_cache
= LRUCache(300)
89 recurse_cache
= LRUCache(5)
90 dir_cache
= LRUCache(10)
92 def send_file(self
, handler
, container
, name
):
96 path
, query
= handler
.path
.split('?')
100 opts
= cgi
.parse_qs(query
)
102 seek
= int(opts
['Seek'][0])
103 if 'Duration' in opts
:
104 seek
= int(opts
['Duration'][0])
106 fname
= os
.path
.join(os
.path
.normpath(container
['path']),
107 unquote(path
)[len(name
) + 2:])
108 fname
= unicode(fname
, 'utf-8')
110 needs_transcode
= os
.path
.splitext(fname
)[1].lower() in TRANSCODE \
113 handler
.send_response(200)
114 handler
.send_header('Content-Type', 'audio/mpeg')
115 if not needs_transcode
:
116 fsize
= os
.path
.getsize(fname
)
117 handler
.send_header('Content-Length', fsize
)
118 handler
.send_header('Connection', 'close')
119 handler
.end_headers()
123 fname
= fname
.encode('iso8859-1')
124 cmd
= [ffmpeg_path(), '-i', fname
, '-acodec', 'libmp3lame', '-ab',
125 '320k', '-ar', '44100', '-f', 'mp3', '-']
127 cmd
[-1:] = ['-ss', '%.3f' % (seek
/ 1000.0), '-']
129 cmd
[-1:] = ['-t', '%.3f' % (duration
/ 1000.0), '-']
131 ffmpeg
= subprocess
.Popen(cmd
, stdout
=subprocess
.PIPE
)
133 shutil
.copyfileobj(ffmpeg
.stdout
, handler
.wfile
)
137 f
= file(fname
, 'rb')
139 shutil
.copyfileobj(f
, handler
.wfile
)
143 def QueryContainer(self
, handler
, query
):
145 def AudioFileFilter(f
, filter_type
=None):
148 filter_start
= filter_type
.split('/')[0]
150 filter_start
= filter_type
153 ftype
= self
.DIRECTORY
155 elif eyeD3
.isMp3File(f
):
157 elif os
.path
.splitext(f
)[1].lower() in PLAYLISTS
:
158 ftype
= self
.PLAYLIST
159 elif os
.path
.splitext(f
)[1].lower() in TRANSCODE
:
164 if filter_start
== self
.AUDIO
:
165 if ftype
== self
.AUDIO
:
173 if f
.name
in self
.media_data_cache
:
174 return self
.media_data_cache
[f
.name
]
177 item
['path'] = f
.name
178 item
['part_path'] = f
.name
.replace(local_base_path
, '', 1)
179 item
['name'] = os
.path
.split(f
.name
)[1]
180 item
['is_dir'] = f
.isdir
181 item
['is_playlist'] = f
.isplay
182 item
['params'] = 'No'
185 item
['Title'] = f
.title
188 item
['Duration'] = f
.duration
190 if f
.isdir
or f
.isplay
or '://' in f
.name
:
191 self
.media_data_cache
[f
.name
] = item
194 if os
.path
.splitext(f
.name
)[1].lower() in TRANSCODE
:
195 # If the format is: (track #) Song name...
196 #artist, album, track = f.name.split(os.path.sep)[-3:]
197 #track = os.path.splitext(track)[0]
198 #if track[0].isdigit:
199 # track = ' '.join(track.split(' ')[1:])
201 #item['SongTitle'] = track
202 #item['AlbumTitle'] = album
203 #item['ArtistName'] = artist
204 fname
= unicode(f
.name
, 'utf-8')
206 fname
= fname
.encode('iso8859-1')
207 cmd
= [ffmpeg_path(), '-i', fname
]
208 ffmpeg
= subprocess
.Popen(cmd
, stderr
=subprocess
.PIPE
,
209 stdout
=subprocess
.PIPE
,
210 stdin
=subprocess
.PIPE
)
212 # wait 10 sec if ffmpeg is not back give up
213 for i
in xrange(200):
215 if not ffmpeg
.poll() == None:
218 if ffmpeg
.poll() != None:
219 output
= ffmpeg
.stderr
.read()
222 millisecs
= (int(d
.group(1)) * 3600 + \
223 int(d
.group(2)) * 60 + \
224 int(d
.group(3))) * 1000 + \
225 int(d
.group(4)) * 100
228 item
['Duration'] = millisecs
231 audioFile
= eyeD3
.Mp3AudioFile(unicode(f
.name
, 'utf-8'))
232 item
['Duration'] = audioFile
.getPlayTime() * 1000
234 tag
= audioFile
.getTag()
235 artist
= tag
.getArtist()
236 title
= tag
.getTitle()
237 if artist
== 'Various Artists' and '/' in title
:
238 artist
, title
= title
.split('/')
239 item
['ArtistName'] = artist
.strip()
240 item
['SongTitle'] = title
.strip()
241 item
['AlbumTitle'] = tag
.getAlbum()
242 item
['AlbumYear'] = tag
.getYear()
243 item
['MusicGenre'] = tag
.getGenre().getName()
244 except Exception, msg
:
247 if 'Duration' in item
:
248 item
['params'] = 'Yes'
250 self
.media_data_cache
[f
.name
] = item
253 subcname
= query
['Container'][0]
254 cname
= subcname
.split('/')[0]
255 local_base_path
= self
.get_local_base_path(handler
, query
)
257 if not handler
.server
.containers
.has_key(cname
) or \
258 not self
.get_local_path(handler
, query
):
259 handler
.send_response(404)
260 handler
.end_headers()
263 if os
.path
.splitext(subcname
)[1].lower() in PLAYLISTS
:
264 t
= Template(playlist_template
, filter=EncodeUnicode
)
265 t
.files
, t
.total
, t
.start
= self
.get_playlist(handler
, query
)
267 t
= Template(folder_template
, filter=EncodeUnicode
)
268 t
.files
, t
.total
, t
.start
= self
.get_files(handler
, query
,
270 t
.files
= map(media_data
, t
.files
)
277 handler
.send_response(200)
278 handler
.send_header('Content-Type', 'text/xml')
279 handler
.send_header('Content-Length', len(page
))
280 handler
.send_header('Connection', 'close')
281 handler
.end_headers()
282 handler
.wfile
.write(page
)
284 def parse_playlist(self
, list_name
, recurse
):
286 ext
= os
.path
.splitext(list_name
)[1].lower()
289 url
= list_name
.index('http://')
290 list_name
= list_name
[url
:]
291 list_file
= urllib
.urlopen(list_name
)
293 list_file
= open(unicode(list_name
, 'utf-8'))
294 local_path
= os
.path
.sep
.join(list_name
.split(os
.path
.sep
)[:-1])
296 if ext
in ('.m3u', '.pls'):
297 charset
= 'iso-8859-1'
301 if ext
in ('.wpl', '.asx', '.wax', '.wvx', '.b4s'):
303 for line
in list_file
:
304 line
= unicode(line
, charset
).encode('utf-8')
312 playlist
.append(FileData(s
.group(1), False))
315 names
, titles
, lengths
= {}, {}, {}
316 for line
in list_file
:
317 line
= unicode(line
, charset
).encode('utf-8')
320 names
[s
.group(1)] = s
.group(2)
324 titles
[s
.group(1)] = s
.group(2)
328 lengths
[s
.group(1)] = int(s
.group(2))
331 f
= FileData(names
[key
], False)
333 f
.title
= titles
[key
]
335 f
.duration
= lengths
[key
]
338 else: # ext == '.m3u' or '.m3u8' or '.ram'
339 duration
, title
= 0, ''
341 for line
in list_file
:
342 line
= unicode(line
.strip(), charset
).encode('utf-8')
344 if line
.startswith('#EXTINF:'):
346 duration
, title
= line
[8:].split(',')
347 duration
= int(duration
)
351 elif not line
.startswith('#'):
352 f
= FileData(line
, False)
353 f
.title
= title
.strip()
354 f
.duration
= duration
356 duration
, title
= 0, ''
360 # Expand relative paths
361 for i
in xrange(len(playlist
)):
362 if not '://' in playlist
[i
].name
:
363 name
= playlist
[i
].name
364 if not os
.path
.isabs(name
):
365 name
= os
.path
.join(local_path
, name
)
366 playlist
[i
].name
= os
.path
.normpath(name
)
372 newlist
.extend(self
.parse_playlist(i
.name
, recurse
))
380 def get_files(self
, handler
, query
, filterFunction
=None):
383 def __init__(self
, files
):
389 def build_recursive_list(path
, recurse
=True):
391 path
= unicode(path
, 'utf-8')
393 for f
in os
.listdir(path
):
394 f
= os
.path
.join(path
, f
)
395 isdir
= os
.path
.isdir(f
)
396 f
= f
.encode('utf-8')
397 if recurse
and isdir
:
398 files
.extend(build_recursive_list(f
))
400 fd
= FileData(f
, isdir
)
401 if recurse
and fd
.isplay
:
402 files
.extend(self
.parse_playlist(f
, recurse
))
403 elif isdir
or filterFunction(f
, file_type
):
410 if x
.isdir
== y
.isdir
:
411 if x
.isplay
== y
.isplay
:
412 return name_sort(x
, y
)
414 return y
.isplay
- x
.isplay
416 return y
.isdir
- x
.isdir
419 return cmp(x
.name
, y
.name
)
421 subcname
= query
['Container'][0]
422 cname
= subcname
.split('/')[0]
423 path
= self
.get_local_path(handler
, query
)
425 file_type
= query
.get('Filter', [''])[0]
427 recurse
= query
.get('Recurse',['No'])[0] == 'Yes'
429 if recurse
and path
in self
.recurse_cache
:
430 filelist
= self
.recurse_cache
[path
]
431 elif not recurse
and path
in self
.dir_cache
:
432 filelist
= self
.dir_cache
[path
]
434 filelist
= SortList(build_recursive_list(path
, recurse
))
437 self
.recurse_cache
[path
] = filelist
439 self
.dir_cache
[path
] = filelist
444 sortby
= query
.get('SortOrder', ['Normal'])[0]
445 if 'Random' in sortby
:
446 if 'RandomSeed' in query
:
447 seed
= query
['RandomSeed'][0]
449 if 'RandomStart' in query
:
450 start
= query
['RandomStart'][0]
453 if filelist
.unsorted
or filelist
.sortby
!= sortby
:
454 if 'Random' in sortby
:
455 self
.random_lock
.acquire()
458 random
.shuffle(filelist
.files
)
459 self
.random_lock
.release()
461 local_base_path
= self
.get_local_base_path(handler
, query
)
462 start
= unquote(start
)
463 start
= start
.replace(os
.path
.sep
+ cname
,
465 filenames
= [x
.name
for x
in filelist
.files
]
467 index
= filenames
.index(start
)
468 i
= filelist
.files
.pop(index
)
469 filelist
.files
.insert(0, i
)
471 print 'Start not found:', start
473 filelist
.files
.sort(dir_sort
)
475 filelist
.sortby
= sortby
476 filelist
.unsorted
= False
478 files
= filelist
.files
[:]
481 files
, total
, start
= self
.item_count(handler
, query
, cname
, files
,
483 filelist
.last_start
= start
484 return files
, total
, start
486 def get_playlist(self
, handler
, query
):
487 subcname
= query
['Container'][0]
488 cname
= subcname
.split('/')[0]
491 url
= subcname
.index('http://')
492 list_name
= subcname
[url
:]
494 list_name
= self
.get_local_path(handler
, query
)
496 recurse
= query
.get('Recurse',['No'])[0] == 'Yes'
497 playlist
= self
.parse_playlist(list_name
, recurse
)
500 return self
.item_count(handler
, query
, cname
, playlist
)