resolution/4k.jpg font and background asset? #667
Replies: 2 comments 3 replies
-
Hi @planetrocky The font used is Comfortaa Medium, The colour I believe is #8A46CF The defaults are now all automatically created by a powershell script, which can be found here: https://github.com/bullmoose20/Plex-Stuff/tree/main/create_defaults |
Beta Was this translation helpful? Give feedback.
-
Thanks. I've been looking through bullmoose's repo, and it's very comprehensive. The PoweShell script function
The closest font I can find is ################################################################################
# Function: CreateResolution
# Description: Creates Resolution
################################################################################
Function CreateResolution {
Write-Host "Creating Resolution"
Set-Location $script_path
# Find-Path "$script_path\resolution"
#[SNIP]
$myArray = @(
'key_name| logo| logo_offset| logo_resize| text_offset| font| font_size| font_color| border| border_width| border_color| avg_color_image| out_name| base_color| gradient| clean| avg_color| white_wash',
'resolutions_other| transparent.png| +0| 1600| +0| ComfortAa-Medium| | #FFFFFF| 0| 15| #FFFFFF| | other| #FF2000| 1| 1| 0| 1'
) | ConvertFrom-Csv -Delimiter '|'
#[SNIP]
$myArray = @(
'key_name| logo| logo_offset| logo_resize| text_offset| font| font_size| font_color| border| border_width| border_color| avg_color_image| out_name| base_color| gradient| clean| avg_color| white_wash',
'| 4K.png| +0| 1800| +0| ComfortAa-Medium| | #FFFFFF| 0| 15| #FFFFFF| | 4k| #8A46CF| 1| 1| 0| 1',
'| 8K.png| +0| 1800| +0| ComfortAa-Medium| | #FFFFFF| 0| 15| #FFFFFF| | 8k| #95BCDC| 1| 1| 0| 1',
'| 144p.png| +0| 1800| +0| ComfortAa-Medium| | #FFFFFF| 0| 15| #FFFFFF| | 144| #F0C5E5| 1| 1| 0| 1',
'| 240p.png| +0| 1800| +0| ComfortAa-Medium| | #FFFFFF| 0| 15| #FFFFFF| | 240| #DFA172| 1| 1| 0| 1',
'| 360p.png| +0| 1800| +0| ComfortAa-Medium| | #FFFFFF| 0| 15| #FFFFFF| | 360| #6D3FDC| 1| 1| 0| 1',
'| 480p.png| +0| 1800| +0| ComfortAa-Medium| | #FFFFFF| 0| 15| #FFFFFF| | 480| #3996D3| 1| 1| 0| 1',
'| 576p.png| +0| 1800| +0| ComfortAa-Medium| | #FFFFFF| 0| 15| #FFFFFF| | 576| #DED1B2| 1| 1| 0| 1',
'| 720p.png| +0| 1800| +0| ComfortAa-Medium| | #FFFFFF| 0| 15| #FFFFFF| | 720| #30DC76| 1| 1| 0| 1',
'| 1080p.png| +0| 1800| +0| ComfortAa-Medium| | #FFFFFF| 0| 15| #FFFFFF| | 1080| #D60C0C| 1| 1| 0| 1'
) | ConvertFrom-Csv -Delimiter '|' |
Beta Was this translation helpful? Give feedback.
-
Kometa repository
Default-Images
has collection posters for resolution. There also exist a Photoshop template for generating posters.What I'm looking for, are (which are not in the photoshop template):
resolution/4k.jpg
I found a purple "4K HDR" poster, perhaps in bullmoose's files, but I can't find it again.
I'm looking to make for example "4K SDR" etc.
Beta Was this translation helpful? Give feedback.
All reactions