My client uploads MP4s to a folder behind the web root for internal usage. They would like to play these directly for some users from a web page rather than download. Is that even possible?
I can get the list of MP4s via the following, but of course I cannot directly load those as a src in a video tag.
set fs = Server.CreateObject("Scripting.FileSystemObject")
set fo = fs.GetFolder(folderpath)
for each x in fo.files
next
Is it possible to either load that file into a video tag or link to an ASP page that directly outputs MP4 format?
Thanks