Mercurial > libervia-backend
comparison sat/plugins/plugin_xep_0264.py @ 3709:09f5ac48ffe3
merge bookmark @
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 12 Nov 2021 17:21:24 +0100 |
parents | 2dab494e56fc |
children | 524856bd7b19 |
comparison
equal
deleted
inserted
replaced
3684:8353cc3b8db9 | 3709:09f5ac48ffe3 |
---|---|
71 class XEP_0264(object): | 71 class XEP_0264(object): |
72 SIZE_SMALL = (320, 320) | 72 SIZE_SMALL = (320, 320) |
73 SIZE_MEDIUM = (640, 640) | 73 SIZE_MEDIUM = (640, 640) |
74 SIZE_BIG = (1280, 1280) | 74 SIZE_BIG = (1280, 1280) |
75 SIZE_FULL_SCREEN = (2560, 2560) | 75 SIZE_FULL_SCREEN = (2560, 2560) |
76 SIZES = (SIZE_SMALL, SIZE_MEDIUM, SIZE_FULL_SCREEN) | 76 # FIXME: SIZE_FULL_SCREEN is currently discarded as the resulting files are too big |
77 # for BoB | |
78 # TODO: use an other mechanism than BoB for bigger files | |
79 SIZES = (SIZE_SMALL, SIZE_MEDIUM, SIZE_BIG) | |
77 | 80 |
78 def __init__(self, host): | 81 def __init__(self, host): |
79 log.info(_("Plugin XEP_0264 initialization")) | 82 log.info(_("Plugin XEP_0264 initialization")) |
80 self.host = host | 83 self.host = host |
81 host.trigger.add("XEP-0234_buildFileElement", self._addFileThumbnails) | 84 host.trigger.add("XEP-0234_buildFileElement", self._addFileThumbnails) |