0

Video in FAT32 does not run in NTFS



Hi, Using HD-1010 players, a Brightsign script that runs ivideo in FAT32 gives me ten red flashes when runinng on NTFS, will not play. Any suggestions? The show starts within hours...! Thanks, C.

1 comment

  • 0
    Avatar
    RokuLyndon


    We don't currently support writing to ntfs, so if this is a brightauthor project it attempts a copy operation during startup to rename the project file. I found this bug recently.

    To fix it, you can either rename the autoplay----.xml file to just autoplay.xml, or modify the autorun.brs script on the flash card to not do the rename operation.


    Change this line here:

               ' if networking is not in use, the autoplay file is in the root folder.
               success = CopyFile(autoplayFileName$, "autoplay.xml")

    To:

               rem success = CopyFile(autoplayFileName$, "autoplay.xml")
    success=1

    This way the rename doesn't occur.
Please sign in to leave a comment.