vlc-android-sdk - 无法查看RTSP直播视频

时间:2016-01-06 12:33:16

标签: android vlc libvlc vlc-android

我一直致力于通过RTSP显示直播视频的Android应用程序。 假设我有一个运行良好的RTSP服务器传递h264数据包,并且要查看流我们应该连接到rtsp://1.2.3.4:5555/stream

所以我尝试使用原生的MediaPlayer \ VideoView,但没有运气(视频在播放2-3秒后卡住了,所以我加载了mrmaffen的vlc-android-sdk(可以找到here)和使用以下代码:

            ArrayList<String> options = new ArrayList<String>();
            options.add("--no-drop-late-frames");
            options.add("--no-skip-frames");
            options.add("-vvv");
            videoVlc = new LibVLC(options);

            newVideoMediaPlayer = new org.videolan.libvlc.MediaPlayer(videoVlc);
            final IVLCVout vOut = newVideoMediaPlayer.getVLCVout();
            vOut.addCallback(this);
            vOut.setVideoView(videoView); //videoView is a pre-defined view which is part of the layout
            vOut.attachViews();
            newVideoMediaPlayer.setEventListener(this);

            Media videoMedia = new Media (videoVlc, Uri.parse(mVideoPath));
            newVideoMediaPlayer.setMedia(videoMedia);
            newVideoMediaPlayer.play();

问题是我看到一个空白的屏幕。

请记住,当我将RTSP链接仅用于音频流时,它可以正常工作。

有人喜欢这个sdk并对这个问题有所了解吗? 提前致谢

2 个答案:

答案 0 :(得分:1)

我使用以下代码播放rtsp流媒体

try {
        Uri rtspUri=Uri.parse("rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov");


        final MediaWrapper mw = new MediaWrapper(rtspUri);
        mw.removeFlags(MediaWrapper.MEDIA_FORCE_AUDIO);
        mw.addFlags(MediaWrapper.MEDIA_VIDEO);

        MediaWrapperListPlayer.getInstance().getMediaList().add(mw);

        VLCInstance.getMainMediaPlayer().setEventListener(this);
    VLCInstance.get().setOnHardwareAccelerationError(this);


    final IVLCVout vlcVout = VLCInstance.getMainMediaPlayer().getVLCVout();
    vlcVout.addCallback(this);
    vlcVout.setVideoView(mSurfaceView);
    vlcVout.attachViews();
    final SharedPreferences pref = PreferenceManager.getDefaultSharedPreferences(this);
    final String aout = VLCOptions.getAout(pref);
    VLCInstance.getMainMediaPlayer().setAudioOutput(aout);
    MediaWrapperListPlayer.getInstance().playIndex(this, 0);

    } catch (Exception e) {
        Log.e(TAG, e.toString());
    }

当您开始播放活动时,您需要启用视频播放。

private void onPlaying() {
    stopLoadingAnimation();
    VLCInstance.getMainMediaPlayer().setVideoTrackEnabled(true);
}

这可能对你有所帮助

答案 1 :(得分:0)

尝试添加此选项:

--rtsp-tcp