i save a video on mysql as longblob, but i cannot retrieve and play the video since the AxWindowsMediaP layer1.URL requires a URL but my file inside DB is longblob stream.

Code:
Dim dtko As Byte() = DirectCast(READER("video"), Byte())
Dim msko As New MemoryStream(dtko)
AxWindowsMediaPlayer1.URL = ??????

since the file i have retrieve is still a stream byte, what should i do to play it on AxWindowsM...