dont try to extract frames from audio

This commit is contained in:
j 2014-11-14 14:05:45 +00:00
parent 5413e8d8b7
commit a56428620a
1 changed files with 11 additions and 10 deletions

View File

@ -1394,16 +1394,17 @@ class Item(models.Model):
else:
if 'videoRatio' in self.json and self.sort.duration:
width, height = self.json['resolution']
pos = self.sort.duration / 2
for p in map(int, [pos/2, pos, pos+pos/2]):
path = self.frame(p, height)
if path:
frames.append({
'position': p,
'path': path,
'width': width,
'height': height,
})
if width and height:
pos = self.sort.duration / 2
for p in map(int, [pos/2, pos, pos+pos/2]):
path = self.frame(p, height)
if path:
frames.append({
'position': p,
'path': path,
'width': width,
'height': height,
})
return frames
def select_frame(self):