playing f4v files in FMS3.1
I thought that FMS3.1 supported f4v files but I cannot get mine to play. It says it cannot find the stream specified but the file is right where all my other files are that do play fine (both flv and mp4 files). Am I incorrect in thinking that FMS3.1 supports f4v files or do I have the wrong code? Thank you.
var vidfile = String(playerData.videoName);
if (playerData.videoStreamType == "MP4")
vidfile = "mp4:" + vidfile + ".mp4";
else if (playerData.videoStreamType == "F4V")
vidfile = "mp4:" + vidfile + ".f4v";
ns.play(vidfile, 0, -1);
