Author: duncan
Date: Wed Nov 7 14:03:55 2007
New Revision: 10089
Log:
[ 1827182 ] video thumbnails
Patch from Andrea Mennucc applied
Modified:
branches/rel-1-7/freevo/ChangeLog
branches/rel-1-7/freevo/src/util/videothumb.py
branches/rel-1/freevo/ChangeLog
branches/rel-1/freevo/src/util/videothumb.py
Modified: branches/rel-1-7/freevo/ChangeLog
==============================================================================
--- branches/rel-1-7/freevo/ChangeLog (original)
+++ branches/rel-1-7/freevo/ChangeLog Wed Nov 7 14:03:55 2007
@@ -51,6 +51,7 @@
* Fixed recordserver sometimes corrupting the record schedule (B#1827184)
* Fixed screensaver crashing after a long run when an event is read
(B#1778894)
* Fixed tvmenu crashing because of the search plug-in (B#1774544)
+ * Fixed video thumbnail not creating an image (B#1827182)
== Release 1.7.3 (2007-08-01) ==
--------------------------------
Modified: branches/rel-1-7/freevo/src/util/videothumb.py
==============================================================================
--- branches/rel-1-7/freevo/src/util/videothumb.py (original)
+++ branches/rel-1-7/freevo/src/util/videothumb.py Wed Nov 7 14:03:55 2007
@@ -35,7 +35,7 @@
import sys, os, glob, shutil
from stat import *
-import kaa.metadata as mmpython
+import kaa
import config
import util
@@ -135,7 +135,7 @@
position = sys.argv[4]
except IndexError:
try:
- mminfo = mmpython.parse(filename)
+ mminfo = kaa.metadata.parse(filename)
position = str(int(mminfo.video[0].length / 2.0))
if hasattr(mminfo, 'type'):
if mminfo.type in ('MPEG-TS', 'MPEG-PES'):
Modified: branches/rel-1/freevo/ChangeLog
==============================================================================
--- branches/rel-1/freevo/ChangeLog (original)
+++ branches/rel-1/freevo/ChangeLog Wed Nov 7 14:03:55 2007
@@ -56,6 +56,7 @@
* Fixed recordserver sometimes corrupting the record schedule (B#1827184)
* Fixed screensaver crashing after a long run when an event is read
(B#1778894)
* Fixed tvmenu crashing because of the search plug-in (B#1774544)
+ * Fixed video thumbnail not creating an image (B#1827182)
== Release 1.7.3 (2007-08-01) ==
--------------------------------
Modified: branches/rel-1/freevo/src/util/videothumb.py
==============================================================================
--- branches/rel-1/freevo/src/util/videothumb.py (original)
+++ branches/rel-1/freevo/src/util/videothumb.py Wed Nov 7 14:03:55 2007
@@ -35,7 +35,7 @@
import sys, os, glob, shutil
from stat import *
-import kaa.metadata as mmpython
+import kaa
import config
import util
@@ -135,7 +135,7 @@
position = sys.argv[4]
except IndexError:
try:
- mminfo = mmpython.parse(filename)
+ mminfo = kaa.metadata.parse(filename)
position = str(int(mminfo.video[0].length / 2.0))
if hasattr(mminfo, 'type'):
if mminfo.type in ('MPEG-TS', 'MPEG-PES'):
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog