0

NTFS vs ext3

Hi I have a simple project consisting of a single 9GB 1920x1080@25fps .mov and an autorun.brs on a BSHD120 with the newest firmware. It just needs to reliably autoplay and loop. Which drive format is preferred: NTFS or ext3? 

My script is just a the simple stock playall1080 script from this site with the videomode altered:

debug=false
VideoResolution$="1920x1080x25p"

v=CreateObject("roVideoPlayer")
p=createobject("roMessagePort")
v.SetPort(p)
v.SetVolume(50)

mode = CreateObject("roVideoMode")
mode.SetMode(VideoResolution$)

count=0
playcount=0
countFound=0
countMax=100
DIM mylist[countMax]

read:
list=ListDir("/")

for each file in list
if ucase(right(file,3)) = "MOV" or ucase(right(file,3)) = "MP4" or ucase(right(file,3)) = "MPG" or ucase(right(file,3)) = "VOB" or ucase(right(file,2)) = "TS" then
mylist[countFound]=file
countFound=countFound+1
endif
next


play:
if countfound=0 then goto read
if debug print mylist[count]
ok=v.PlayFile(mylist[count])
playcount=playcount+1

'advancing count
if count = countFound-1 then
count=0
else
count = count+1
endif

 

if ok=0 then
if debug then print "Playback failed"
goto play
endif

 

loop:
msg=wait(0,p)
if debug print type(msg)
if type(msg) = "roVideoEvent" then
if msg.GetInt() = 8 then
goto play
endif
endif

goto loop

1 comment

Please sign in to leave a comment.