我正在尝试使用vlcj将rtsp流存储到文件中。

我已经完成了一些教程,研究了他们的一些测试项目,但还没有做到这一点。

有任何想法吗?提前致谢!



编辑

找到了一个An example of transcoding and saving video from a capture device.尝试使其工作。在mediaPlayer.playMedia(mrl, options);中寻找有关“选项”部分的一些文档。

最佳答案

有人在视频局域网论坛check it out上回答了我。

我的相关代码如下,其中最重要的部分是vlc媒体播放器":file{dst=C:/Users/the man/yahoo.mp4}"的附加选项。

    mFactory = new MediaPlayerFactory();
    mPlayer = mFactory.newHeadlessMediaPlayer();

    String mrl = "rtsp://@" + addressStr + ":" + mPhoneRTSPPort;

    String options = ":sout=#transcode{vcodec=h264,venc=x264{cfr=16},scale=1,acodec=mp4a,ab=160,channels=2,samplerate=44100}"
            + ":file{dst=C:/Users/the man/yahoo.mp4}";

    mPlayer.playMedia(mrl, options);

10-08 00:44