问题描述
我想知道是否有任何 Java 库可以读取 Microsoft 媒体服务器(MMS) 流.
I would like to know if there is available any Java library to read a Microsoft Media Server (MMS) stream.
谢谢,
道格拉斯
推荐答案
谷歌搜索显示:
- JavaMMS 早在 2002 年就有一个0.5 - 初始版本"
- Velocity Reviewers 的论坛早在 2004 年就讨论了 [Java MMS 库],这导致了
- sdp.ppona.com 一个下载彩信流的工具,有一个故事:
- 微软终于发布了 MMS 协议规范!,2008 年 2 月
- [MS-MMSP]:Microsoft 媒体服务器 (MMS) 协议规范
- JavaMMS with a one and only "0.5 - Initial release" back in 2002
- Velocity Reviewers' forum discusses [Java MMS libraries] back in 2004, which leads on to
- sdp.ppona.com a tool for download mms streams, which has a story:
- Microsoft have finally released its MMS protocol specification!, Feb 2008
- [MS-MMSP]: Microsoft Media Server (MMS) Protocol Specification
看起来有人制作 Java MMS 库的时机已经成熟.;-)
It looks like the time is ripe for someone to make a Java MMS library. ;-)
我在使用 mplayer 转储 MMS 流方面有很好的经验.稍微摆弄一下并找到正确的命令行选项.all-streaming-media.com 建议使用:
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
使用 -dumpfile 选项命名转储的流:
Use the -dumpfile option to name the dumped stream:
mplayer -dumpstream -dumpfile somefile.wav mms://somehost.com/somedirectory/somefile.wmv
这篇关于用于读取 Microsoft 媒体服务器 (MMS) 流的 Java 库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!