Test Disc Won't Play After Toshiba Firmware 2.0

Upon updating the firmware on the Toshiba player to 2.0, my test discs display player error codes. One change I had to make was the mapping of assets. For example, I changed my manifest file

from:

<Markup src="file:///dvddisc/ADV_OBJ/main.aca/main.xml" />

<Script src=file:///dvddisc/ADV_OBJ/main.aca/main.js" />

<Resource src="file:///dvddisc/ADV_OBJ/main.aca"/>

to:

<Markup src="main.xml" />

<Script src="main.js" />

<Resource src="file:///dvddisc/ADV_OBJ/main.aca"/>

I suppose all references to PNGs in the markup file need to be readdressed as well. Has anyone else had this problem



Answer this question

Test Disc Won't Play After Toshiba Firmware 2.0

  • clint 2

    Go back to the old manifest:

    <Markup src="file:///dvddisc/ADV_OBJ/main.aca/main.xmu" />

    <Script src=file:///dvddisc/ADV_OBJ/main.aca/main.js" />

    <Resource src="file:///dvddisc/ADV_OBJ/main.aca"/>

    And keep the new markup changes:

    "url('somegraphic.png')"

    As long as the markup and png's reside in the same ACA, it will work.


  • Sql4088

    0x4094C00B is related to a resource reference in your playlist. Either 1) the size of a resource is smaller than it actually is (the value can be larger, but not smaller) or 2) the resource is missing all together.

    Run the Microsoft validator that comes with HDiSim on your playlist. It will tell you what the problem in your playlist is.


  • Mario Saccoia

    i made the changes above, but i still get the 0x4094C00B error code (Resource Load Failure). as i mentioned, i remapped PNGs in my markup also...

    before: "url('main.aca/somegraphic.png')"

    after: "url('somegraphic.png')"

    is there something else that i need to address


  • New-Bee

    <Script src="Menu.js"/>
    <Markup src="Menu.xmu" />
    <Resource src="file:///dvddisc/ADV_OBJ/Menu.aca" />


    thats how it should be

    dont trust the simulators.


  • Test Disc Won't Play After Toshiba Firmware 2.0