Ticker Images not shown

Hello,

I use an Instagram RSS Feed (https://web.stagram.com/rss/tag/tree) for displaying picture with the hashtag i.e. “tree”. This RSS Feed is set as RSS Url in a Ticker. The template I am using is the “Image overlaid with title” but I customized it:

The Code is:
<div class="image" style="font-size:0pt">[Content]</div>

The Css Code is:
.image img { width:1080px;height:1080px;}

Font size = 0 because I do not want to display the text of the instagram posts.

My andoird player is set to portrait mode (Android Z64, Docker Xibo 1.8.1 ). But no Image is shown on the display. The preview und layout designer show the images!

Solution:
When I changed my Android player to landscape and rotate the image by 270 deg via css all is working fine.

The Code is:
<div class="image" style="font-size:0pt">[Content]</div>

The Css Code is:

.image img { width:1080px;height:1080px;
-moz-transform: rotate(270deg); 
-webkit-transform: rotate(270deg);
-o-transform: rotate(270deg); 
-ms-transform: rotate(270deg); 
transform: rotate(270deg);

}

The export of the layout:
layout.json:
{"layout":"Instagram RSS","description":null,"regions":{"33":"Instagram RSS-1"}}

dataset.json:
[]

mapping.json:
[]

layout.xml:

Is there a possibility to show the images in portrait mode’ or any other solutions?

Thanks, Mark

This feed does display images for me - does not matter if the layout / display profile / device is set to landscape or portrait orientation.

Although if your device is set to portrait and your display profile assigned to this device is set to portrait as well, then you might want to use portrait layout and not the landscape one to make it look better.

Do you see any errors in android status window when it does not display any images?

I’ve recently noticed that my ticker images are not working in 1.8.1 but haven’t had a chance to investigate. @Peter could you give me a RSS feed you are using to see if it is just my feed or install.

In this specific topic I was using the feed that OP mentioned (instagram one) and that worked for me just fine as well, there are multiple examples on Xibo community forums, with nasa feed being definitely the largest one, as their images are rather high quality (it takes time to download them).

It’s definitely not a general issue with 1.8.1, that I’m sure.

If you have some feed that does not work for you, feel free to share it with me here or via private message and I’ll take a look.