WebMoviePlayer from binary file/memoryblock

Hi all,
I’m trying to recall video for playback in a webmovieplayer from a binary blob in a sql database. Any tips for how to play directly from the database?

Thanks!
James

I would recommend a better file delivery method, but to answer your question:

  1. Read the BLOB into a MemoryBlock with BlobValue
  2. Load the MemoryBlock into a WebFile
  3. Store the WebFile somewhere it won’t go out of scope (a Session property would suffice)
  4. Load the WebFile.URL into the WebMoviePlayer.MovieURL
1 Like