Silverlight 从启用 samba 的远程服务器播放文件
我目前正在开发 Silverlight 应用程序,该应用程序位于我们的 ASP.NET 网页上。 我想用远程 Linux 机器上的(音频 wav)文件的名称填充列表框。 我还希望能够使用 MediaElement 播放这些文件。
我想知道是否有可能获取远程启用 samba 的 Linux 服务器的流。
谢谢,寻求答案
Im currently working on Silverlight app, which resides on our ASP.NET webpage.
I want to populate listbox with names of (audio wav) files that are on remote linux machine.
I also want to be able to play those files using MediaElement.
Im wondering if it is possible to get stream of remote samba enabled linux server.
thx, for answers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不可以,除非您允许 ASP.NET 应用程序访问远程 Linux 计算机的文件并有效地代理它们。您需要在 HTTP 上提供这些文件。
另一种选择可能是在 Linux 计算机上运行 Apache 或其他 HTTP 服务器并以这种方式提供音乐。
No, unless you enable your ASP.NET application to access the remote Linux machine's files and effectively proxy them. You need to have the files available on HTTP.
Another option may be to run Apache or another HTTP server on the Linux machine and offer up the music that way.