使用Videoview或mediaplayer播放http直播视频是LAG

时间:2013-10-12 14:53:03

标签: java android android-videoview

首先,我使用videoview构建了一个小应用程序,在三星Galaxt S2上播放mp4格式的hls视频。凭借SD质量,视频流畅。但高清质量,视频滞后。然后,我构建了一个更大的应用程序,使用相同的videoview或mediaplayer android播放hls视频。当我播放视频时,视频因SD和HD质量而滞后。

在小应用程序中,我有一个用于存储URL的字符串数组。我的应用程序允许用户选择一个URL并按下按钮以使用videoview播放活动以播放视频: 在小应用程序中使用videoview的代码:

        VideoView vd = (VideoView)findViewById(R.id.videoView1);
        MediaController mc = new MediaController(this);
        mc.setAnchorView(vd);
        Uri uri = Uri.parse(URL_link);
        vd.setMediaController(mc);
        vd.setVideoURI(uri);
        vd.start();

在较大的应用程序中,我使用listfragment显示所有URls。用户选择一个URL,然后使用videoview将活动投放到playvideo。活动中的代码:

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_channel_detail);
    TextView tv = (TextView) findViewById(R.id.tvVideoPlayer);
    Bundle extras = getIntent().getExtras();
    if (extras != null) {
        channel_id = extras.getInt(ChannelDetailActivity.CHANNEL_ID);
    }
    tv.setText("Video is playing...");
}
@Override
protected void onStart() {
    super.onStart();
    getChannelInfo();
}
private void getChannelInfo( ) {
    TimeTVApiCaller.getInstance().getChannel(channel_id, this,
            new AjaxCallback<ChannelInfo>() {
                @Override
                public void callback(String url, ChannelInfo object,
                        AjaxStatus status) {
                    if (object != null) {
                        Urlvideo = object.getChannelUrls().get(0).getPath();
                        getURLfull(Urlvideo);
                    }
                }
            });
}
    //get a full URL
protected void getURLfull(String url)
{
    TimeTVApiCaller.getInstance().getChannelStream(url, this, new AjaxCallback<String>()
            {
               @Override
            public void callback(String url, String object,
                    AjaxStatus status) {
            String Urlfull = object.replace("\"", "");
            Urltoken = Urlfull;
           //Using the same videoview
            VideoView vd = (VideoView) findViewById(R.id.videoView1);
            MediaController mc = new MediaController(ChannelDetailActivity.this);
            mc.setAnchorView(vd);
            Uri uri = Uri.parse(Urltoken);
            vd.setMediaController(mc);
            vd.setVideoURI(uri);
            vd.start();
            //vd.requestFocus();
            }
            });
}
   }

我有两个问题:

  1. 为什么视频观看或媒体播放器播放hls视频滞后?

  2. 如何自定义视频视频或媒体播放器以顺畅播放hls视频?

2 个答案:

答案 0 :(得分:0)

HLS中的每个分段HTTP Live Streaming通常为10秒。

播放器测量获取每个片段所需的时间,如果花费的时间太长,它会尝试选择一个带宽,在播放之前它可以获得一段或更多片段。最常见的错误是缓冲延迟。 您应该查看日志文件以查看播放内容时播放器正在执行的操作。

如果上述内容无效,this可能会有所帮助。

答案 1 :(得分:0)

我认为HD质量至少为720p,并且h.264 / avc编码的比特流超过1.5 mbps。我最好的猜测是S2硬件不支持它。