Some of the images are stored within the channel that's on the Roku and some are retrieved from the server. Eventually I'd like to move them all to the server, but that's why you see the "settings" poster but not some of the others (although that particular poster will always be part of the channel).
Let's try this experiment. With the server running, browse to
http://localhost:8001/feed. If the directories are setup properly in config.ini you should see links for "My Music", "My Videos", "My Photos", and "My Streams". If the links for "My Videos" and/or "My Photos" don't appear then the corresponding directory isn't set properly in config.ini. I believe "My Music" and "My Streams" will always appear. If you click on "My Music", does your music appear?
To further the experiment, save the
http://localhost:8001/feed page as an XML file. If you open it in a text editor you should see something like this:
<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
<channel>
<title>MyMusic Feed</title>
<item>
<title>My Music</title>
<description>Folder</description>
<image>http://192.168.1.3:8001/media?res=223%2C200&name=images%2Fmusic_square.jpg&key=client</image>
<link>http://192.168.1.3:8001/feed?key=music&dir=.</link>
</item>
<item>
<title>My Videos</title>
<description>Folder</description>
<image>http://192.168.1.3:8001/media?res=223%2C200&name=images%2Fvideos_square.jpg&key=client</image>
<link>http://192.168.1.3:8001/feed?key=video&dir=.</link>
</item>
<item>
<title>My Photos</title>
<description>Folder</description>
<image>http://192.168.1.3:8001/media?res=223%2C200&name=images%2Fphotos_square.jpg&key=client</image>
<link>http://192.168.1.3:8001/feed?key=photo&dir=.</link>
</item>
<item>
<title>My Streams</title>
<description>Folder</description>
<image>http://192.168.1.3:8001/media?res=223%2C200&name=images%2Fstreams_square.jpg&key=client</image>
<link>http://192.168.1.3:8001/remotes</link>
</item>
</channel>
</rss>
You'll notice the links for the My Music, My Videos, etc. posters (<image>) in the XML. For example, for my case the link to the My Music poster is:
http://192.168.1.3:8001/media?res=223%2C200&name=images%2Fmusic_square.jpg&key=client
First, take a look at the link and see if the IP address is what you expect. Then, copy and paste the link into your browser and see if the image appears.
Let us know how it goes.
-JT
Roku Community Streaming Expert
Help others find this answer and click "Accept as Solution."
If you appreciate my answer, maybe give me a Kudo.
I am not a Roku employee.