You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This extension writes podcast subscription cover art to a media player.
6
+
This extension assumes that each podcast has its own folder on device.
7
+
Only folder-wide coverart is written - this extension does not do anything about
8
+
embedded cover art.
9
+
10
+
Cover art is converted to the desired file format and image size
11
+
via the python "pillow" module, and written to the desired filename.
12
+
13
+
Existing files (of the correct name) will be checked to see if they
14
+
need to be overwritten to conform to the size, baseline/progressive,
15
+
and file format parameters.
16
+
17
+
All jpegs will be written as "baseline" (rather than "progressive") type. Rockbox
18
+
only supports baseline jpegs.
19
+
20
+
## Dependencies
21
+
22
+
Requires python modules `pillow` and `filelock`. These are available on pip.
23
+
24
+
## Settings
25
+
26
+
| setting | value | description |
27
+
|---------|-------|-------------|
28
+
| extensions.rockbox_coverart.art_name_on_device | cover.jpg | Desired filename on device. Only jpg, jpeg, and png filetypes allowed. |
29
+
| extensions.rockbox_coverart.convert_and_resize_art |**True**/False | Enable conversion and resize operations |
30
+
| extensions.rockbox_coverart.convert_size | 500 | Cover art will be resized to this size (square). If convert_allow_upscale_art=False, art smaller than this size will retain its size. Only used if convert_and_resize_art=True. |
31
+
| extensions.rockbox_coverart.convert_allow_upscale_art | True/**False**| Allow upscaling of art. If set to true, will allow images smaller than convert_size (square) to be upscaled to convert_size. Only used if convert_and_resize_art=True. |
0 commit comments