XMBML Mountpoints: Difference between revisions
Jump to navigation
Jump to search
(overall cleanup) |
mNo edit summary |
||
(11 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{ | {{wikify}} | ||
== xmlbddatamgmt == | == xmlbddatamgmt == | ||
This is an example of an [[XMBML | This is an example of an [[XMBML Coding|XMBML]] file | ||
Add this query in category_video.xml in the position you want it to appear | Add this query in category_video.xml in the position you want it to appear | ||
{{Boxcode| | {{Boxcode|code=<syntaxhighlight lang="xml"> | ||
<View id="root"> | <View id="root"> | ||
<Items> | |||
<Query class="type:x-xmb/folder-pixmap" key="videoiso" src="#seg_videoiso_mgmt"/> | |||
</Items> | |||
</View> | </View> | ||
</syntaxhighlight>}} | </syntaxhighlight>}} | ||
And add this at the bottom | And add this segments at the bottom | ||
{{Boxcode| | {{Boxcode|code=<syntaxhighlight lang="xml"> | ||
<View id="seg_videoiso_mgmt"> | |||
<Attributes> | <Attributes> | ||
<Table key=" | <Table key="videoiso_mgmt"> | ||
<Pair key="mode"><String>mgmt</String></Pair> | <Pair key="mode"><String>mgmt</String></Pair> | ||
<Pair key="genre"><String>msg_tools_ISO</String></Pair> | <Pair key="genre"><String>msg_tools_ISO</String></Pair> <!-- this is wrong, mistmatched key and probably other keys missing --> | ||
</Table> | </Table> | ||
</Attributes> | </Attributes> | ||
<Items> | <Items> | ||
<Item class="type:x-xmb/xmlbddatamgmt" key=" | <Item class="type:x-xmb/xmlbddatamgmt" key="videoiso_mgmt" attr="videoiso_mgmt" src="#seg_videoiso_paths"/> | ||
</Items> | </Items> | ||
</View> | </View> | ||
</syntaxhighlight>}} | |||
{{Boxcode|code=<syntaxhighlight lang="xml"> | |||
<View id="seg_videoiso_paths"> | |||
<Items> | <Items> | ||
<Query class="type:x-xmb/folder-pixmap" key="host_provider_hdd0_DVDISO" src="host://localhost/q?path=/dev_hdd0/DVDISO&suffix=.iso&subclass=x-host/xmlbddatamgmt"/> | <Query class="type:x-xmb/folder-pixmap" key="host_provider_hdd0_DVDISO" src="host://localhost/q?path=/dev_hdd0/DVDISO&suffix=.iso&subclass=x-host/xmlbddatamgmt"/> | ||
Line 38: | Line 42: | ||
**Adding of Videos: BDISO from /dev_hdd0/BDISO/[name].iso, and DVDISO from /dev_hdd0/DVDISO/[name].iso | **Adding of Videos: BDISO from /dev_hdd0/BDISO/[name].iso, and DVDISO from /dev_hdd0/DVDISO/[name].iso | ||
**After selecting in [videos]/[name.iso] must play through ps3 vidplayer | **After selecting in [videos]/[name.iso] must play through ps3 vidplayer | ||
{{File Formats}}<noinclude>[[Category:Main]]</noinclude> |
Latest revision as of 04:57, 30 August 2021
This article is marked for rewrite/restructuring in proper wiki format. You can help PS3 Developer wiki by editing it. |
xmlbddatamgmt[edit | edit source]
This is an example of an XMBML file
Add this query in category_video.xml in the position you want it to appear
<View id="root"> <Items> <Query class="type:x-xmb/folder-pixmap" key="videoiso" src="#seg_videoiso_mgmt"/> </Items> </View>
And add this segments at the bottom
<View id="seg_videoiso_mgmt"> <Attributes> <Table key="videoiso_mgmt"> <Pair key="mode"><String>mgmt</String></Pair> <Pair key="genre"><String>msg_tools_ISO</String></Pair> <!-- this is wrong, mistmatched key and probably other keys missing --> </Table> </Attributes> <Items> <Item class="type:x-xmb/xmlbddatamgmt" key="videoiso_mgmt" attr="videoiso_mgmt" src="#seg_videoiso_paths"/> </Items> </View>
<View id="seg_videoiso_paths"> <Items> <Query class="type:x-xmb/folder-pixmap" key="host_provider_hdd0_DVDISO" src="host://localhost/q?path=/dev_hdd0/DVDISO&suffix=.iso&subclass=x-host/xmlbddatamgmt"/> <Query class="type:x-xmb/folder-pixmap" key="host_provider_hdd0_BDISO" src="host://localhost/q?path=/dev_hdd0/BDISO&suffix=.iso&subclass=x-host/xmlbddatamgmt"/> </Items> </View>
- Ideas
- Adding of Videos: BDISO from /dev_hdd0/BDISO/[name].iso, and DVDISO from /dev_hdd0/DVDISO/[name].iso
- After selecting in [videos]/[name.iso] must play through ps3 vidplayer
|