forked from 0x2620/pandora
don't fail if extract.timelines is called from another folder
This commit is contained in:
parent
a2b7cc9744
commit
06dbc277c7
1 changed files with 1 additions and 1 deletions
|
@ -473,7 +473,7 @@ def timeline(video, prefix, modes=None, size=None):
|
|||
size = [64, 16]
|
||||
if isinstance(video, str):
|
||||
video = [video]
|
||||
cmd = ['../bin/oxtimelines',
|
||||
cmd = [os.path.normpath(os.path.join(settings.BASE_DIR, '../bin/oxtimelines')),
|
||||
'-s', ','.join(map(str, reversed(sorted(size)))),
|
||||
'-m', ','.join(modes),
|
||||
'-o', prefix,
|
||||
|
|
Loading…
Reference in a new issue