try to use mini movie for files where gstreamer is not able to seek
This commit is contained in:
parent
fcfe8b446b
commit
f44fad40a1
1 changed files with 4 additions and 1 deletions
|
@ -512,7 +512,10 @@ class ArchiveFile(SQLObject):
|
||||||
|
|
||||||
def extractPosterStill(self, position):
|
def extractPosterStill(self, position):
|
||||||
oxdb_makedir(dirname(self.posterStillFile))
|
oxdb_makedir(dirname(self.posterStillFile))
|
||||||
extract_poster_still(self.absolutePath, self.posterStillFile, position)
|
mFile = self.absolutePath
|
||||||
|
if mFile.endswith('.mov') or mFile.endswith('.mpg'):
|
||||||
|
mFile = self.mini_movie_file
|
||||||
|
extract_poster_still(mFile, self.posterStillFile, position)
|
||||||
|
|
||||||
def extractClipMovie(self, force = False):
|
def extractClipMovie(self, force = False):
|
||||||
if self.broken:
|
if self.broken:
|
||||||
|
|
Loading…
Reference in a new issue