forked from 0x2620/pandora
symlink does not like unicode, pass utf-8
This commit is contained in:
parent
fd518a8844
commit
375a6ed659
1 changed files with 8 additions and 2 deletions
|
@ -1079,7 +1079,10 @@ class Item(models.Model):
|
||||||
quote(filename.encode('utf-8')))
|
quote(filename.encode('utf-8')))
|
||||||
video = "%s.webm" % base
|
video = "%s.webm" % base
|
||||||
v = streams[0]
|
v = streams[0]
|
||||||
os.symlink(v.media.path, video)
|
media_path = v.media.path
|
||||||
|
if isinstance(media_path, unicode):
|
||||||
|
media_path = media_path.encode('utf-8')
|
||||||
|
os.symlink(media_path, video)
|
||||||
size = v.media.size
|
size = v.media.size
|
||||||
duration = v.duration
|
duration = v.duration
|
||||||
else:
|
else:
|
||||||
|
@ -1089,7 +1092,10 @@ class Item(models.Model):
|
||||||
for v in streams:
|
for v in streams:
|
||||||
video = "%s/%s.Part %d.webm" % (base, filename, part)
|
video = "%s/%s.Part %d.webm" % (base, filename, part)
|
||||||
part += 1
|
part += 1
|
||||||
os.symlink(v.media.path, video)
|
media_path = v.media.path
|
||||||
|
if isinstance(media_path, unicode):
|
||||||
|
media_path = media_path.encode('utf-8')
|
||||||
|
os.symlink(media_path, video)
|
||||||
size += v.media.size
|
size += v.media.size
|
||||||
duration += v.duration
|
duration += v.duration
|
||||||
video = base
|
video = base
|
||||||
|
|
Loading…
Reference in a new issue