使用 GStreamer 进行流式传输

发布于 2024-12-09 08:59:43 字数 475 浏览 0 评论 0 原文

我在 System#1 上有一个高清视频“ed_hd.avi”。希望通过网络进行流式传输并播放 System#2 中的内容。我在 Ubuntu 11.04 上使用 GStreamer,对此进行了很多尝试。各种错误使得该目标难以诊断。将感谢获得 System#1-end 和 System#2-end 的工作命令。

我尝试过的如下:

系统#1:

gst-launch filesrc location=ed_hd.avi!解码! x263enc!视频/x-h264! rtph264支付! udpsink host=127.0.0.1 port=5000

系统#2:

gst-launch udpsrc port=5000! rtph264depay!解码器! xvimagesink

目标是:将 avi 文件转换为原始视频。从第二个 System#2 传输它。

谢谢。

I have got one HD video "ed_hd.avi" on System#1. Would like to stream it over network and play the content from System#2. I am using GStreamer on Ubuntu 11.04, tried a lot on this. Variety of errors makes this objective difficult to diagnose. Will be thankful for getting a working command for the System#1-end and System#2-end.

What I have tried is as follows:

System #1:

gst-launch filesrc location=ed_hd.avi ! decodedin ! x263enc ! video/x-h264 ! rtph264pay ! udpsink host=127.0.0.1 port=5000

System #2:

gst-launch udpsrc port=5000 ! rtph264depay ! decodebin ! xvimagesink

Objective is : Convert avi file to raw video. Stream it from the second System#2.

Thank You.

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

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

发布评论

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

评论(2

相权↑美人 2024-12-16 08:59:43

您可以尝试以下操作

gst-launch filesrc location=ed_hd.avi ! decodebin ! ffenc_mpeg4 ! rtpmp4vpay ! udpsink host=127.0.0.1 port=5000 

如果不起作用,请继续:

您是否尝试过以下操作?您需要将他的音频箱替换为视频箱

http://delog.wordpress.com/2011/06/01/stream-raw-vorbis-audio-over-udp-or-tcp-with-gstreamer/

也看看在

http://pastebin.com/PtD21Bx7

此处替换v4l2src 与您的视频 src

另外

https://metalab.at/wiki/Gstreamer_One_Liners

Could you try the following

gst-launch filesrc location=ed_hd.avi ! decodebin ! ffenc_mpeg4 ! rtpmp4vpay ! udpsink host=127.0.0.1 port=5000 

If that doesn't work then proceed:

Did you try the following? You need to replace his audio bins with video bins

http://delog.wordpress.com/2011/06/01/stream-raw-vorbis-audio-over-udp-or-tcp-with-gstreamer/

Also take a look at

http://pastebin.com/PtD21Bx7

Here replace v4l2src with your video src

Also

https://metalab.at/wiki/Gstreamer_One_Liners

×纯※雪 2024-12-16 08:59:43

我认为您的问题是 127.0.0.1 部分。这是一个环回地址(检查ifconfig lo0以查看127.0.0.1Link encap:Local Loopback地址)。这不能跨两个系统工作,尽管它可能在单个系统上工作得很好。

相反,使用第二台机器公开可见的地址;检查 ip addr showifconfig 输出以查找地址。在系统 #1 的命令行中写入系统 #2 的实际地址。

I think your problem is the 127.0.0.1 portion. That is a loopback address (check ifconfig lo0 to see the Link encap:Local Loopback for the 127.0.0.1 address). This won't work across two systems, though it might work fine on a single system.

Instead, use the address that is publicly visible for the second machine; check ip addr show or ifconfig output to find the address. Write the actual address for System #2 in the command line on System #1.

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