将 Windows 网络摄像头流式传输到 iPhone

发布于 2024-11-25 08:13:48 字数 422 浏览 0 评论 0原文

我正在尝试将视频(无音频)从 Windows 网络摄像头 DirectShow 流式传输到 iPhone 浏览器。我想使用 VLC 通过 HTTP 将视频转码为 MJPEG 流,并在浏览器中打开它。

我尝试使用以下 VLC 命令来执行此操作: vlc -vvv dshow:// :sout=#transcode{vcodec=MJPG,vb=2000,scale=1}:duplicate{dst=std{access=http,mux=mpjpeg,dst=192.168.1.178:8080/stream。 mpjpg}}

当我尝试在移动 Safari 中打开此流时,收到消息“Safari 无法打开文件”。

有人对成功将网络摄像头流式传输到 iPhone 有什么建议吗?我正在寻找修改上述代码的建议,或者为我执行此转码和流传输的软件解决方案的建议。

谢谢。

I am attempting to stream video (no audio) from a Windows webcam DirectShow to the iPhone browser. I am thinking that I will want to use VLC to transcode the video to an MJPEG stream over HTTP and open it in the browser.

I attempted to do this using this VLC command:
vlc -vvv dshow:// :sout=#transcode{vcodec=MJPG,vb=2000,scale=1}:duplicate{dst=std{access=http,mux=mpjpeg,dst=192.168.1.178:8080/stream.mpjpg}}

When I attempt to open this stream in mobile Safari, I get the message "Safari cannot open file."

Does anyone have any suggestions for successfully streaming a webcam to the iPhone? I am looking for either suggestions for modifying the above code, or suggestions for software solutions that will preform this transcoding and streaming for me.

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

与君绝 2024-12-02 08:13:48

我目前正在使用 ffserver 和 ffmpeg (http://ffmpeg.org/)。

# ffserver -f ffserver.conf & ffmpeg -s 320x240 -f video4linux2 -i /dev/video0 http://localhost:8090/webcam.ffm

启动服务器。我的 ffserver.conf 是

Port 8090
BindAddress 0.0.0.0
MaxHTTPConnections 2000
MaxClients 1000
MaxBandwidth 1000
CustomLog -
NoDaemon
<Feed webcam.ffm>
  File /tmp/webcam.ffm
  FileMaxSize 50M
</Feed>

<Stream webcam.mjpeg>
  Feed webcam.ffm
  Format mpjpeg
  VideoSize qvga
  VideoFrameRate 15
  VideoBitRate 128
  VideoBufferSize 40000
  VideoQMin 1
  VideoQMax 10
  VideoIntraOnly
  Noaudio
  Strict -1
</Stream>

mjpeg 流可以直接在 safari 中打开,或者如果您正在开发,则可以嵌入到 UIWebView 中。

I am currently using ffserver and ffmpeg (http://ffmpeg.org/) for this.

# ffserver -f ffserver.conf & ffmpeg -s 320x240 -f video4linux2 -i /dev/video0 http://localhost:8090/webcam.ffm

starts the server. My ffserver.conf is

Port 8090
BindAddress 0.0.0.0
MaxHTTPConnections 2000
MaxClients 1000
MaxBandwidth 1000
CustomLog -
NoDaemon
<Feed webcam.ffm>
  File /tmp/webcam.ffm
  FileMaxSize 50M
</Feed>

<Stream webcam.mjpeg>
  Feed webcam.ffm
  Format mpjpeg
  VideoSize qvga
  VideoFrameRate 15
  VideoBitRate 128
  VideoBufferSize 40000
  VideoQMin 1
  VideoQMax 10
  VideoIntraOnly
  Noaudio
  Strict -1
</Stream>

The mjpeg stream can be opened directly in safari, or embedded in a UIWebView if you are developing.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文