aboutsummaryrefslogtreecommitdiffstats
path: root/mvc/video.py
diff options
context:
space:
mode:
authorJesús Eduardo <heckyel@hyperbola.info>2017-08-17 17:22:33 -0500
committerJesús Eduardo <heckyel@hyperbola.info>2017-08-17 17:22:33 -0500
commit753cad357ec8f311b493bf350d9cd4663d3511d9 (patch)
tree5e7111d0624b96e0afa2b547b7c3387bc370fe81 /mvc/video.py
parent2b3ba8c0de8bb3d928d2537550743fd7aeea0582 (diff)
downloadlibrevideoconverter-753cad357ec8f311b493bf350d9cd4663d3511d9.tar.lz
librevideoconverter-753cad357ec8f311b493bf350d9cd4663d3511d9.tar.xz
librevideoconverter-753cad357ec8f311b493bf350d9cd4663d3511d9.zip
fixed thumbnail
Diffstat (limited to 'mvc/video.py')
-rw-r--r--mvc/video.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mvc/video.py b/mvc/video.py
index 576286d..0b89b63 100644
--- a/mvc/video.py
+++ b/mvc/video.py
@@ -263,8 +263,8 @@ def get_thumbnail(filename, width, height, output, completion, skip=0):
def run():
rv = get_thumbnail_synchronous(filename, width, height, output, skip)
idle_add(lambda: completion(rv))
- t = threading.Thread(target=run, name=name)
- t.start()
+ t = threading.Thread(target=run, name=name)
+ t.start()
def get_thumbnail_synchronous(filename, width, height, output, skip=0):
executable = get_ffmpeg_executable_path()