How to present pvr list in home menu?
#1
I want to put a list of my pvr channel in the home menu,with the names of channels and EPG.
Currently use pvr.iptvsimple.
Is this possible and how?

Thank you in advance for your answers.
Reply
#2
Using dynamic list content (http://kodi.wiki/view/Dynamic_List_Content) you could do something like:

PHP Code:
<content target="video">pvr://channels/tv/All&amp;channels/</content> 

not sure for pvr if you need to set a target, and if so which, but it should work
Reply
#3
Thanks for your response,I'll try with this command.
Reply
#4
I'm trying last two weeks,to solve this puzzle.
With dynamic list content,but I do not see a solution.Actually I want to display pvr channel in the home menu.
I ask for a little help,if someone has the time.


<control type="list" id="403">
<posx>760</posx>
<posy>0</posy>
<width>685</width>
<height>670</height>
<onleft>405</onleft>
<onright>404</onright>
<onup>926</onup>
<ondown></ondown>
<focuspostion>1</focuspostion>
<orientation>vertical</orientation>
<scrolltime>220</scrolltime>
<itemlayout width="807" height="130">
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>110</width>
<height>110</height>
<aspectratio>stretch</aspectratio>
<texture>$INFO[ListItem.Icon]</texture>
</control>
<control type="label">
<posx>170</posx>
<posy>5</posy>
<width>700</width>
<height>62</height>
<info>ListItem.Label</info>
<font>font13_title</font>
<textcolor>white</textcolor>
<align></align>
</control>
</itemlayout>
<focusedlayout width="807" height="130">
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>110</width>
<height>110</height>
<aspectratio>stretch</aspectratio>
<texture>$INFO[ListItem.Icon]</texture>
</control>
<control type="label">
<posx>170</posx>
<posy>5</posy>
<width>700</width>
<height>62</height>
<info>ListItem.Label</info>
<font>font13_title</font>
<textcolor>white</textcolor>
<align></align>
</control>
<control type="image">
<posx>0</posx>
<posy>110</posy>
<width>440</width>
<height>4</height>
<texture>osd/media?guide/line.png</texture>
<aspectratio>stretch</aspectratio>
<colordiffuse>white</colordiffuse>
</control>
</focusedlayout>
<content target="video">pvr://channels/tv/All&amp;channels/</content>
<item id="1">
<label>?</label>
<icon>?</icon>
<onclick>?</onclick>
</item>
<item id="2">
<label>?</label>
<icon>?</icon>
<onclick>?</onclick>
</item>
</content>
</control>
Reply
#5
You don't need to define items, the point of dynamic list containers is to have that done for you.
Reply
#6
Hello Jeroen

My apologies for the late answer to the question,I understand you but I do not understand where to write lines for label and icon.
Or to be more precise I do not know how to make a list.

Thank you in any case,for your reply.
Reply
#7
This is all you need:

http://pastebin.com/Tf3PCe4p

You don't need the

PHP Code:
<item id="1">
<
label>?</label
<
icon>?</icon>
<
onclick>?</onclick>
</
item

You make a normal list control and use the

PHP Code:
<content target="video">pvr://channels/tv/All&amp;channels/</content> 

to "call" the contents of that window, including the icons, labels, etc. and they will fill up the list container you have made. It will fill in all the <label> <icon> <onclick> lines.
Reply
#8
You don't need to as they'll be supplied from the content path.

Remove this code -

Code:
<item id="1">
<label>?</label>
<icon>?</icon>
<onclick>?</onclick>
</item>
<item id="2">
<label>?</label>
<icon>?</icon>
<onclick>?</onclick>
</item>
</content>
Reply
#9
(2015-01-25, 13:22)Jeroen Wrote: This is all you need:

http://pastebin.com/Tf3PCe4p

Thanksssssssssssssss
Now is my Home window fulllll Smile
Image
XBoxMediaCenter (Kodi Matrix ) 19.3 , AndroidBox -Matrix Skin AeonMQ6
Reply
#10
Thank you all for the answers on my question,
or to be precise,to my ignorance thanks again.

Best Regards
Reply
#11
Where do I put this file from this post to have iptv in my home screen?

http://forum.kodi.tv/showthread.php?tid=...pid1903394
Reply
#12
Hello Adebayor

Yet nowhere,I waiting help from Angelinas.Soon I get files from Angelinas,I'll send you a message,where and how to put this file.

Best Regards
Reply

Logout Mark Read Team Forum Stats Members Help
How to present pvr list in home menu?0