| Summary: | Include .flv Flash Videos in KPhotoAlbum database | ||
|---|---|---|---|
| Product: | [Applications] kphotoalbum | Reporter: | Rainer Frey <rainerfrey> |
| Component: | Backend | Assignee: | KPhotoAlbum Bugs <kphotoalbum-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | wishlist | ||
| Priority: | NOR | ||
| Version First Reported In: | 3.0 | ||
| Target Milestone: | --- | ||
| Platform: | Ubuntu | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Rainer Frey
2007-05-13 01:05:29 UTC
I tested this with the source package from Kubuntu 7.04, with just this one change, and it works - the files are recocknized by the new image scan, play from within KPhotoalbum, and are thumbnailed with video thumbnail support. SVN commit 666155 by jkt:
BUG: 145366
Adding .flv (Flash video) to the list of video extensions
M +1 -0 Util.cpp
--- trunk/extragear/graphics/kphotoalbum/Utilities/Util.cpp #666154:666155
@@ -715,6 +715,7 @@
videoExtensions.insert( QString::fromLatin1( "wmv" ) );
videoExtensions.insert( QString::fromLatin1( "ogm" ) );
videoExtensions.insert( QString::fromLatin1( "rm" ) );
+ videoExtensions.insert( QString::fromLatin1( "flv" ) );
}
QFileInfo fi( fileName );
|