dont store useless path in stream info
This commit is contained in:
parent
a58f981706
commit
6a8e82fe0e
1 changed files with 2 additions and 0 deletions
|
@ -584,6 +584,8 @@ class Stream(models.Model):
|
||||||
def save(self, *args, **kwargs):
|
def save(self, *args, **kwargs):
|
||||||
if self.media and not self.info:
|
if self.media and not self.info:
|
||||||
self.info = ox.avinfo(self.media.path)
|
self.info = ox.avinfo(self.media.path)
|
||||||
|
if 'path' in self.info:
|
||||||
|
del self.info['path']
|
||||||
self.oshash = self.info.get('oshash')
|
self.oshash = self.info.get('oshash')
|
||||||
self.duration = self.info.get('duration', 0)
|
self.duration = self.info.get('duration', 0)
|
||||||
if 'video' in self.info and self.info['video']:
|
if 'video' in self.info and self.info['video']:
|
||||||
|
|
Loading…
Reference in a new issue