Wowza Community

Is it possible to stream video from sql-server filestream with wowza?

We currently have all of our video and audio stored in a sql server database as FileStream. Would it be possible to let Wowza use this Sql Filestream to Stream video and audio?

Wowza has an abstraction for the file system. The interface is IRandomAccess reader. You can write your own IRandomAccessReader implementation that reads from a database. Here are two sample IRandomAccessReader implementations:

FileRandomAccessReader.zip

HTTPRandomAccessReader.zip

They both include source code.

Charlie