Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/talogo.py
diff options
context:
space:
mode:
authorWalter Bender <walter@walter-laptop.(none)>2009-05-17 16:20:38 (GMT)
committer Walter Bender <walter@walter-laptop.(none)>2009-05-17 16:20:38 (GMT)
commitd0da89b020e7b4b7553cb05595cb0d489706764d (patch)
tree7ab8562ff694a2fb181885442353de53b644d12d /talogo.py
parent6210e9135f3098238d7b50556b672df18978191d (diff)
added mpeg support, window destroy
Diffstat (limited to 'talogo.py')
-rw-r--r--talogo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/talogo.py b/talogo.py
index eba6c3b..83edce9 100644
--- a/talogo.py
+++ b/talogo.py
@@ -564,7 +564,7 @@ def show_picture(lc, media, x, y, w, h):
raise logoerror("#nomedia")
# check to see if it is a movie
print dsobject.file_path
- if dsobject.file_path[-4:] == '.ogv':
+ if dsobject.file_path[-4:] == '.ogv' or dsobject.file_path[-4:] == '.vob':
print "playing movie x:" + str(x) + " y:" + str(y) + " w:" \
+ str(w) + " h:" + str(h)
play_dsobject(lc, dsobject, int(x), int(y), int(w), int(h))