如何使用 VLC 流式传输图像/文件?
所以我知道有很多 libVLC.dll 的包装器。但我只是不知道谁准备好做我需要的事情...
我需要的很简单...
- 在我的 C# 程序中我创建一些位图(每秒一次或两次)...
- 我现在想要流式传输位图使用 VLC 以视频形式(以 VLC 可以提供的某种格式)传输到某些 http:localhost:port/...
如何做到这一点?
So I know there are lot of wrappers of libVLC.dll . But I just do not know what one is ready to do what I need...
What I need is simple...
- in my C# program I create some bitmap (once or twice per second)...
- I now want to stream bitmaps live as video (in some format VLC can to offer me) to some http:localhost:port/ using VLC...
How to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要使用以下代码来流式传输图像。
You need to use following code to stream a image.
您可以使用 VLC 站点上提供的 NativeLibVlc.cs 文件。
要流式传输位图文件,请
使用以下代码 要在端口 1234 上通过 UPD 流式传输网络摄像头,
请使用以下代码 要在端口 1234 上流式传输视频,请使用以下代码
要在本地主机端口 1234 上流式传输图像,请使用以下代码
You can use the NativeLibVlc.cs file available at VLC site.
To stream the bitmap file use following code
To stream webcam over UPD on port 1234 use following code
To stream a video on port 1234 use following code
To stream a image on localhost port 1234 use following code