srt fix, only extract streams from video

This commit is contained in:
j 2010-09-27 10:55:37 +02:00
commit f1ccb72542
2 changed files with 2 additions and 1 deletions

View file

@ -195,6 +195,7 @@ class File(models.Model):
encoding = _detectEncoding(f)
data = f.read()
f.close()
data = data.replace('\r\n', '\n')
try:
data = unicode(data, encoding)
except: