Page 1 of 1

Serviio Icon on Sony XMB menu

PostPosted: Mon Jul 26, 2010 9:22 am
by Illico
:idea: That's could be cool if we could see the Serviio icon on Sony XMB menu, something like that... ;)
Serviio_server.jpg
Serviio_server.jpg (28.73 KiB) Viewed 4500 times



I think, it's a simple dlna feature to implementin your Xml Device Description:
  Code:
<root>
...
<device>
...
<iconList>
         <icon>
            <mimetype>image/png</mimetype>
            <width>256</width>
            <height>256</height>
            <depth>24</depth>
            <url>/images/Serviio_256.png</url>
         </icon>
      </iconList>
   </device>
</root>


You probably have to add more image mimetype , and different resolution for example MediaTomb had:

  Code:
...
         <icon>
            <mimetype>image/png</mimetype>
            <width>120</width>
            <height>120</height>
            <depth>24</depth>
            <url>/icons/mt-icon120.png</url>
         </icon>
         <icon>
            <mimetype>image/x-ms-bmp</mimetype>
            <width>120</width>
            <height>120</height>
            <depth>24</depth>
            <url>/icons/mt-icon120.bmp</url>
         </icon>
         <icon>
            <mimetype>image/jpeg</mimetype>
            <width>120</width>
            <height>120</height>
            <depth>24</depth>
            <url>/icons/mt-icon120.jpg</url>
         </icon>
         <icon>
            <mimetype>image/png</mimetype>
            <width>48</width>
            <height>48</height>
            <depth>24</depth>
            <url>/icons/mt-icon48.png</url>
         </icon>
         <icon>
            <mimetype>image/x-ms-bmp</mimetype>
            <width>48</width>
            <height>48</height>
            <depth>24</depth>
            <url>/icons/mt-icon48.bmp</url>
         </icon>
         <icon>
            <mimetype>image/jpeg</mimetype>
            <width>48</width>
            <height>48</height>
            <depth>24</depth>
            <url>/icons/mt-icon48.jpg</url>
         </icon>
         <icon>
            <mimetype>image/png</mimetype>
            <width>32</width>
            <height>32</height>
            <depth>8</depth>
            <url>/icons/mt-icon32.png</url>
         </icon>
         <icon>
            <mimetype>image/x-ms-bmp</mimetype>
            <width>32</width>
            <height>32</height>
            <depth>8</depth>
            <url>/icons/mt-icon32.bmp</url>
         </icon>
         <icon>
            <mimetype>image/jpeg</mimetype>
            <width>32</width>
            <height>32</height>
            <depth>8</depth>
            <url>/icons/mt-icon32.jpg</url>
         </icon>
...

Re: Serviio Icon on Sony XMB menu

PostPosted: Mon Jul 26, 2010 9:42 am
by zip
Yess, I know... just was doing stuff with more priority. I have an issue for this on bitbucket.org for ages ;-)