1.7 KiB
Regenerate thumbnails
We increased the quality of thumbnails from 70px to 95px in Funkwhale 1.0. This action removes visual artifacts that affect lower quality thumbnails. You can run the manage.py
script to generate new thumbnails. If you want to keep thumbnails at their original quality, add THUMBNAIL_JPEG_RESIZE_QUALITY=70
to your .env
file.
If you're using S3 storage, the `__sized__` folder is located in your S3 bucket.
To generate new thumbnails:
::::{tab-set}
:::{tab-item} Debian :sync: debian
-
SSH into your Funkwhale server.
-
Navigate to your Funkwhale directory.
cd /srv/funkwhale
-
Delete the
__sized__
directory inside yourMEDIA_ROOT
directory. By default this is/srv/funkwhale/data/media
. This directory contains the current thumbnails.rm -r __sized__/
-
Run the
manage.py
script to regenerate the thumbnails.poetry run python3 manage.py fw media generate-thumbnails
:::
:::{tab-item} Docker :sync: docker
-
SSH into your Funkwhale server.
-
Navigate to your Funkwhale directory.
cd /srv/funkwhale/
-
Delete the
__sized__
directory inside yourMEDIA_ROOT
directory. By default this is/srv/funkwhale/data/media
. This directory contains the current thumbnails.rm -r data/media/__sized__/
-
Run the
manage.py
script to regenerate the thumbnails.docker-compose run --rm api python3 manage.py fw media generate-thumbnails
::: ::::
The script generates new thumbnails for all album and artist art on your pod.