[PR #172] [MERGED] Add webp thumbnail conversion task to optimize performance of fast scrolling #8501

Closed
opened 2026-02-05 13:48:22 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/immich-app/immich/pull/172
Author: @alextran1502
Created: 5/22/2022
Status: Merged
Merged: 5/22/2022
Merged by: @alextran1502

Base: mainHead: dev/webp-thumbnail


📝 Commits (5)

  • 9c88a7c Update readme
  • 209ae1e Added webp to table and entity
  • 6581d20 Added cronjob and sharp dependencies
  • ba6e880 Added conversion of webp every 10 minutes
  • b3f2d07 Added conversion of webp every 5 minutes and server webp image if exist

📊 Changes

11 files changed (+731 additions, -21 deletions)

View changed files

📝 README.md (+12 -1)
📝 server/package-lock.json (+602 -16)
📝 server/package.json (+4 -0)
📝 server/src/api-v1/asset/asset.service.ts (+10 -2)
📝 server/src/api-v1/asset/entities/asset.entity.ts (+3 -0)
📝 server/src/app.module.ts (+14 -0)
📝 server/src/config/app.config.ts (+1 -0)
📝 server/src/constants/server_version.constant.ts (+2 -2)
server/src/migration/1653214255670-UpdateAssetTableWithWebpPath.ts (+19 -0)
server/src/modules/schedule-tasks/image-conversion.service.ts (+52 -0)
server/src/modules/schedule-tasks/schedule-tasks.module.ts (+12 -0)

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/immich-app/immich/pull/172 **Author:** [@alextran1502](https://github.com/alextran1502) **Created:** 5/22/2022 **Status:** ✅ Merged **Merged:** 5/22/2022 **Merged by:** [@alextran1502](https://github.com/alextran1502) **Base:** `main` ← **Head:** `dev/webp-thumbnail` --- ### 📝 Commits (5) - [`9c88a7c`](https://github.com/immich-app/immich/commit/9c88a7cb6aab58ba8b021f832a99aa9ff8dce377) Update readme - [`209ae1e`](https://github.com/immich-app/immich/commit/209ae1ee0f7d9c4e0a83f22837dc04489e7fd71c) Added webp to table and entity - [`6581d20`](https://github.com/immich-app/immich/commit/6581d203a8943cfe58079ca981677666fd971d5b) Added cronjob and sharp dependencies - [`ba6e880`](https://github.com/immich-app/immich/commit/ba6e8800e23e9dde5ffdb23271302f6e78df0aa6) Added conversion of webp every 10 minutes - [`b3f2d07`](https://github.com/immich-app/immich/commit/b3f2d07e62958eedf1c9c081150d83173dbad264) Added conversion of webp every 5 minutes and server webp image if exist ### 📊 Changes **11 files changed** (+731 additions, -21 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+12 -1) 📝 `server/package-lock.json` (+602 -16) 📝 `server/package.json` (+4 -0) 📝 `server/src/api-v1/asset/asset.service.ts` (+10 -2) 📝 `server/src/api-v1/asset/entities/asset.entity.ts` (+3 -0) 📝 `server/src/app.module.ts` (+14 -0) 📝 `server/src/config/app.config.ts` (+1 -0) 📝 `server/src/constants/server_version.constant.ts` (+2 -2) ➕ `server/src/migration/1653214255670-UpdateAssetTableWithWebpPath.ts` (+19 -0) ➕ `server/src/modules/schedule-tasks/image-conversion.service.ts` (+52 -0) ➕ `server/src/modules/schedule-tasks/schedule-tasks.module.ts` (+12 -0) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-05 13:48:22 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#8501