forked from 0x2620/pandora
avoid negative pixels
This commit is contained in:
parent
92d5c6e763
commit
f5becafad4
1 changed files with 3 additions and 1 deletions
|
@ -151,8 +151,10 @@ class File(models.Model):
|
|||
self.sampleate = 0
|
||||
self.channels = 0
|
||||
|
||||
if self.framerate:
|
||||
if self.framerate and self.duration > 0:
|
||||
self.pixels = int(self.width * self.height * float(utils.parse_decimal(self.framerate)) * self.duration)
|
||||
else:
|
||||
self.pixels = 0
|
||||
|
||||
def get_path_info(self):
|
||||
data = {}
|
||||
|
|
Loading…
Reference in a new issue