-3

我最近下载了 live555 的包以使用 rtsp 流式传输剪辑。我不知道如何使用它。请帮助我。对于 Ubuntu

谢谢

4

2 回答 2

3

虽然问题已经很老了,我相信你可能已经解决了它,但我仍然发布了这个为 linux 配置 live555 的分步指南,供那些可能面临同样问题的人使用。所以这里是:

1)cd to the live555 folder.
2)user$ ./genMakefiles linux
3)user$ make

(这是假设您在 linux 发行版中设置了 gcc/g++ 及其路径设置)。

然后,您可以简单地使用 testProgs 文件夹中的一个测试程序来检查它是否工作。

我假设您需要测试您下载或制作的示例 x264 文件。为此,最简单的方法是(我总是向初学者建议):

1)Copy the x264 file to live/testProgs folder.
2)Rename it to test.264 (testH264VideoStreamer by default is set to stream a file named test).
3)go to terminal and type ./testH264VideoStreamer 
4)Copy the rtsp link (rtsp://xxx.xxx.xxx.xxx:8554/abcd) to your vlc player to stream.
5) Further you can check the QoS parameters and stream profile by downloading openRTSP and use openRTSP -Q rtsp://xxx.xxx.xxx.xxx:8554/abcd to view these parameters. 

希望能帮助到你。

于 2014-12-03T04:19:46.933 回答
3
  1. 确保使用适当的编译器。

$ sudo apt-get install build-essential

  1. 确认您的系统没有 live555 库。

$ sudo apt-get 删除 liblivemedia-dev

  1. 下载并安装库。

$ cd $首页

$ wget http://www.live555.com/liveMedia/public/live555-latest.tar.gz

$ tar xvf live555-latest.tar.gz

$ cd 直播

$ ./genMakefiles linux

$ 制作

$ sudo cp -r $HOME/live /usr/lib

$ 清理

于 2016-06-03T09:13:08.617 回答