Do you have a recommended drive format for large files. I can format HFS, HFS+, NTFS, ext3?
My project consists of 2 videos: a 1080p25, 412MB, 24mbps h.264 .mov; and a 1080p29.97, 6GB, 21mbps h.264 .mov. Each on its own card, looping, on its own new HD220 player. Firmware v4.0.3.3. The 6GB file needs its SD card formatted.
I'm using a simple script instead of the BrightAuthor software. I've yet to determine the display resolution, but here is my script. Please check that my script is good. Thank you.
videomode$="1920x1080x29.97p"
v=CreateObject("roVideoPlayer")
vmode = createobject("roVideoMode")
vmode.SetMode(videomode$)
v.SetLoopMode(true)
list=matchfiles(".","*.mov")
v.PlayFile(list.RemoveHead())
while true
sleep(1000)
end while