在哪里可以获得实时视频流示例(GStreamer)?
在哪里可以获得实时视频+音频流示例(GStreamer)?例如,从文件或网络摄像头流式传输到某个网址
Where to get live video + audio streaming examples ( GStreamer )? So for example streaming from File or Web camera to some web address
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这来自手册页...
MPEG-1 系统流可以通过 RTP 从一台机器传输到另一台机器。
在接收器上使用此命令
gst-启动 rtprecv media_type=mpeg1_sys ! mpegdemux 名称=解复用器! { 队列 ! mpeg2dec! xvideosink } { 解复用器。 !队列 !疯狂的 ! osssink }
该命令将在发射器上运行
gst-launch filesrc 位置=mpeg1system.mpeg ! mpeg解析! rtpsend ip=IP 或主机名
This comes from the man pages...
An MPEG-1 system stream can be streamed via RTP from one machine to another.
Use this command on the receiver
gst-launch rtprecv media_type=mpeg1_sys ! mpegdemux name=demuxer ! { queue ! mpeg2dec ! xvideosink } { demuxer. ! queue ! mad ! osssink }
This command would be run on the transmitter
gst-launch filesrc location=mpeg1system.mpeg ! mpegparse ! rtpsend ip=IPorHostname
此页面包含一些有关如何使用的示例使用 GStreamer 进行 RTP 流传输。
从您的帖子中尚不清楚 GStreamer 是否确实是必需的,因此仅供参考:使用 VLC 进行直播更容易。
This page contains a few samples on how to do RTP streaming with GStreamer.
It's not clear from your post if GStreamer is really a requirement, so just FYI: live streaming is easier with VLC.