forked from 0x2620/pandora
dont fail for clips without color
This commit is contained in:
parent
09f30b3c5a
commit
f244476138
1 changed files with 1 additions and 1 deletions
|
@ -1279,7 +1279,7 @@ class Item(models.Model):
|
|||
n = streams.count()
|
||||
for s in streams:
|
||||
self.data['volume'] += s.volume * s.duration
|
||||
color = map(lambda a,b: (a+b)/n, color,ox.image.getRGB(s.color))
|
||||
color = map(lambda a,b: (a+b)/n, color, ox.image.getRGB(s.color or [0.0] * 3))
|
||||
offset += s.duration
|
||||
self.data['hue'], self.data['saturation'], self.data['lightness'] = ox.image.getHSL(color)
|
||||
if offset:
|
||||
|
|
Loading…
Reference in a new issue