Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

improved handling of animated images #357

Closed
wants to merge 42 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
28a970c
feat: add JXL image thumbnail support
CyanVoxel Oct 17, 2024
878a873
feat: add animated previews for webp and apng
CyanVoxel Oct 19, 2024
1bfd2e7
added more checks and file ext options
BPplays Oct 20, 2024
2572f4d
fixed frame number check
BPplays Oct 20, 2024
c3dd683
fixed args
BPplays Oct 20, 2024
0a23e21
ruff format
BPplays Oct 20, 2024
fcc0606
optimized file reads
BPplays Oct 20, 2024
c622a52
changed variable names
BPplays Oct 20, 2024
e36db15
used correct logging
BPplays Oct 20, 2024
36e5c87
added more logging
BPplays Oct 20, 2024
d6a71ce
added more logging
BPplays Oct 20, 2024
8cb5166
ruff format
BPplays Oct 20, 2024
3de2db9
changed variable names
BPplays Oct 20, 2024
606fcd8
moved animated image preview to it's own func
BPplays Oct 20, 2024
50643ef
ruff format
BPplays Oct 20, 2024
2fe376c
removed unneeded code
BPplays Oct 20, 2024
599aa25
added self.preview_anim_img.movie().stop() everywhere self.preview_vi…
BPplays Oct 21, 2024
951ca30
added base type for preview window and changed the hiding and showing…
BPplays Oct 21, 2024
d4480b1
added more logging
BPplays Oct 21, 2024
98b6f09
formatting changes
BPplays Oct 21, 2024
83fd20a
ruff format
BPplays Oct 21, 2024
6b00f28
changed code to have less duplication
BPplays Oct 21, 2024
a4a08db
added to preview_anim_img_pil_known_good
BPplays Oct 26, 2024
74ec8e1
added to preview_anim_img_pil_known_good
BPplays Oct 26, 2024
e096371
programmatically checked what image types pillow supports
BPplays Oct 26, 2024
da28dbc
changed stuff for mypy and ruff
BPplays Oct 26, 2024
38b4544
changed wording on logs from 'converting to' to 'transcoding to' to h…
BPplays Oct 26, 2024
51fc921
changed sort order
BPplays Oct 26, 2024
c61b617
changed sort order
BPplays Oct 26, 2024
e942d55
added comments
BPplays Oct 26, 2024
a955676
ruff format
BPplays Oct 26, 2024
c3ebae1
added comments
BPplays Oct 26, 2024
acae7da
fixed gif being the wrong size for one-ish frame
BPplays Oct 26, 2024
f1ac673
testing threading
BPplays Oct 26, 2024
e168655
done base threading
BPplays Oct 26, 2024
9f1e87b
made code better
BPplays Oct 26, 2024
fc225a1
fixed bug
BPplays Oct 26, 2024
ba7a153
testing mp
BPplays Oct 26, 2024
314157a
testing
BPplays Oct 26, 2024
6a60fad
an actually ok threading implimentation
BPplays Oct 27, 2024
f880dc0
an actually ok threading implimentation
BPplays Oct 27, 2024
0129e07
fixed caching issues
BPplays Oct 27, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 13 additions & 12 deletions requirements.txt
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
3 changes: 2 additions & 1 deletion tagstudio/src/core/media_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,10 +189,11 @@ class MediaCategories:
".woff2",
}
_IMAGE_ANIMATED_SET: set[str] = {
".png",
".jxl",
".apng",
".gif",
".webp",
".jxl",
}
_IMAGE_RAW_SET: set[str] = {
".arw",
Expand Down
Loading
Loading