Skip to content

Commit

Permalink
Changelog update
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkvdb committed Sep 29, 2019
1 parent 330f569 commit c25af5c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 3 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FFmpegThumbnailer 2.x.x
FFmpegThumbnailer 2.2.1
- CMake improvements: required CMake version is now 3.5 or newer
- Fix anamorphic height (thanks to cmrd-senya)
- Fix libffmpegthumbnailer.pc to work with multilib systems (thanks to orbea)
Expand All @@ -8,6 +8,8 @@ FFmpegThumbnailer 2.x.x
- Check for https as well when skipping stat call (thanks to HearstCorp)
- Support specifying the size as string using the c api
- Support raw rgb data as image type
- Print warnings on stderr instead of stdout
- Support for continuous thumbnail creation

FFmpegThumbnailer 2.2.0
- New option to prefer embedded image metadata over video content (command line argument: -m)
Expand Down
5 changes: 1 addition & 4 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,10 +153,7 @@ int main(int argc, char** argv)
VideoThumbnailer videoThumbnailer(0, workaroundIssues, maintainAspectRatio, imageQuality, smartFrameSelection);
videoThumbnailer.setThumbnailSize(thumbnailSize);
videoThumbnailer.setLogCallback([](ThumbnailerLogLevel lvl, const std::string& msg) {
if (lvl == ThumbnailerLogLevelInfo)
std::cout << msg << std::endl;
else
std::cerr << msg << std::endl;
std::cerr << msg << std::endl;
});

FilmStripFilter* filmStripFilter = nullptr;
Expand Down

0 comments on commit c25af5c

Please sign in to comment.