use audio timeline for audio files

This commit is contained in:
j 2013-05-07 16:40:37 +00:00
parent 251cc12d38
commit bb1c15e2c0
1 changed files with 3 additions and 0 deletions

View File

@ -1275,6 +1275,9 @@ class Item(models.Model):
icon = self.path('icon.jpg')
self.icon.name = icon
timeline = '%stimelineantialias64p.jpg' % self.timeline_prefix
audio_timeline = '%stimelineaudio64p.jpg' % self.timeline_prefix
if not os.path.exists(timeline) and os.path.exists(audio_timeline):
timeline = audio_timeline
cmd = [settings.ITEM_ICON,
'-i', self.icon.path
]