XMBML Mountpoints
Jump to navigation
Jump to search
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
|