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:
They both include source code.
Charlie