3

I would like to know if there is available any Java library to read a Microsoft Media Server (MMS) stream.

Thanks,

Douglas

Douglas
  • 1,313
  • 1
  • 14
  • 19
  • 1
    Have you managed to find suitable Java MMS library? Maybe you know any relatively fresh library? JavaMMS mentioned in the answer didn't have any update since 2002 ... – Denisigo Jun 17 '15 at 13:57
  • @Denisigo, no, I haven't been able to find a suitable library for MMS processing since I asked this question. – Douglas Jun 17 '15 at 17:52

1 Answers1

1

A google search reveals:

It looks like the time is ripe for someone to make a Java MMS library. ;-)

I've had good experience using the mplayer to dump MMS streams. With a little fiddling around and finding the right command line options. all-streaming-media.com suggests using:

mplayer.exe -dumpstream mms://somehost.com/somedirectory/somefile.wmv

Use the -dumpfile option to name the dumped stream:

mplayer -dumpstream -dumpfile somefile.wav mms://somehost.com/somedirectory/somefile.wmv

Jonathan Wright
  • 14,880
  • 4
  • 24
  • 19