forked from TagStudioDev/TagStudio
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add JXL thumbnail and animated APNG + WEBP support (port TagStu…
…dioDev#344 and partially port TagStudioDev#357) (TagStudioDev#549) * feat: add JXL image thumbnail support Co-Authored-By: BPplays <[email protected]> * feat: add animated previews for webp and apng Co-Authored-By: BPplays <[email protected]> --------- Co-authored-by: BPplays <[email protected]>
- Loading branch information
Showing
4 changed files
with
41 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,20 @@ | ||
chardet==5.2.0 | ||
ffmpeg-python==0.2.0 | ||
humanfriendly==10.0 | ||
mutagen==1.47.0 | ||
numpy==1.26.4 | ||
numpy==1.26.4 | ||
opencv_python>=4.8.0.74,<=4.9.0.80 | ||
pillow-heif==0.16.0 | ||
pillow-jxl-plugin==1.2.6 | ||
Pillow==10.3.0 | ||
PySide6==6.7.1 | ||
pydub==0.25.1 | ||
PySide6_Addons==6.7.1 | ||
PySide6_Essentials==6.7.1 | ||
typing_extensions>=3.10.0.0,<=4.11.0 | ||
ujson>=5.8.0,<=5.9.0 | ||
numpy==1.26.4 | ||
PySide6==6.7.1 | ||
rawpy==0.21.0 | ||
pillow-heif==0.16.0 | ||
chardet==5.2.0 | ||
structlog==24.4.0 | ||
SQLAlchemy==2.0.34 | ||
pydub==0.25.1 | ||
mutagen==1.47.0 | ||
numpy==1.26.4 | ||
ffmpeg-python==0.2.0 | ||
vtf2img==0.1.0 | ||
structlog==24.4.0 | ||
typing_extensions>=3.10.0.0,<=4.11.0 | ||
ujson>=5.8.0,<=5.9.0 | ||
vtf2img==0.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -193,7 +193,6 @@ class MediaCategories: | |
".apng", | ||
".gif", | ||
".webp", | ||
".jxl", | ||
} | ||
_IMAGE_RAW_SET: set[str] = { | ||
".arw", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters