Input_select and friendly names possible for options?

I am using this input_select:

input_select:
  kodi_instance:
    name: kodiselect
    options:
     - 192.168.1.25
     - 192.168.1.8
    initial: 192.168.1.25
    icon: mdi:kodi

I wonder if it is somehow possible to show 192.168.1.25 in the frontend like “Living Room”
But still uses 192.168.1.25 in a shell command like this:

shell_command:
  play_video: 'php -f /home/pi/youtube_to_kodi.php UCtinbF-Q-fVthA0qrFQTgXQ {{states.input_select.kodi_instance.state}} 8080 {{states.input_select.yt_offset.state}} {{states.input_select.play_queue.state}}''

it is solved. I just needed to make an second input select and automations which changes the original input select.

alias: "Kodi - Woonkamer selectie"
trigger:
   platform: state
   entity_id: 'input_select.kodi' 
   to: "Woonkamer"  
action:
    service: input_select.select_option
    data:
      entity_id: input_select.kodi_instance
      option: "192.168.1.25"

Hi @ Mister-Espria

I’ve done something along these lines. Have a look here: