0

我开发了一个应用程序来直播视频,但它不支持 android 版本 2.2 、2.3 等。只能在 android 版本 4.1 (Samsung Galaxy Grand) 上播放视频。我在我的项目中使用 videoview。那你能告诉我确切的原因吗​​?我的代码如下:

mPath.setText("http://iptvshqip.dyndns.tv:8090");       
    mPlay = (ImageButton) findViewById(R.id.play);
    mPause = (ImageButton) findViewById(R.id.pause);
    mReset = (ImageButton) findViewById(R.id.reset);
    mStop = (ImageButton) findViewById(R.id.stop);
            mPlay.setOnClickListener(new OnClickListener() {
        public void onClick(View view) {
            playVideo();
        }
    });
    mPause.setOnClickListener(new OnClickListener() {
        public void onClick(View view) {
            if (mVideoView != null) {
                mVideoView.pause();
            }
        }
    });
    mReset.setOnClickListener(new OnClickListener() {
        public void onClick(View view) {
            if (mVideoView != null) {
                mVideoView.seekTo(0);
            }
        }
    });
    mStop.setOnClickListener(new OnClickListener() {
        public void onClick(View view) {
            if (mVideoView != null) {
                current = null;
                mVideoView.stopPlayback();
            }
        }
    });
    runOnUiThread(new Runnable(){
        public void run() {
            playVideo();
        }
    });
  }
 private void playVideo() {
    try {
        final String path = mPath.getText().toString();
        Log.v(TAG, "path: " + path);
        if (path == null || path.length() == 0) {
            Toast.makeText(MainActivity.this, "File URL/path is empty",
                    Toast.LENGTH_LONG).show();
        } 
        else {
            if (path.equals(current) && mVideoView != null) {
                mVideoView.start();
                mVideoView.requestFocus();
                return;
            }
            current = path;
            mVideoView.setVideoPath(getDataSource(path));
            mVideoView.start();
            mVideoView.requestFocus();
        }
    } catch (Exception e) {
        Log.e(TAG, "error: " + e.getMessage(), e);
        if (mVideoView != null) {
            mVideoView.stopPlayback();
        }
    }
}
   private String getDataSource(String path) throws IOException {
    if (!URLUtil.isNetworkUrl(path)) {
        return path;
    } else {
        URL url = new URL(path);
        URLConnection cn = url.openConnection();
        cn.connect();
        InputStream stream = cn.getInputStream();
        if (stream == null)
            throw new RuntimeException("stream is null");
        File temp = File.createTempFile("mediaplayertmp", "dat");
        temp.deleteOnExit();
        String tempPath = temp.getAbsolutePath();
        FileOutputStream out = new FileOutputStream(temp);
        byte buf[] = new byte[128];
        do {
            int numread = stream.read(buf);
            if (numread <= 0)
                break;
            out.write(buf, 0, numread);
        } while (true);
        try {
            stream.close();
        } catch (IOException ex) {
            Log.e(TAG, "error: " + ex.getMessage(), ex);
        }
        return tempPath;
    }
}
4

2 回答 2

0

Android 从 3.0 开始支持 HTTP Live Stream(HLS)。阅读以下链接。

http://www.longtailvideo.com/blog/31646/the-pain-of-live-streaming-on-android/

他们已经解释了解决方法。

于 2013-07-03T10:38:21.547 回答
0

如前所述,AndroidVideoView从 API 级别 1 就已经存在。

除了:

  • 标志STATUS_BAR_HIDDENSTATUS_BAR_VISIBLE- 在 API 14 中已弃用
  • setBackgroundDrawable(Drawable background)API 16 中不推荐使用的函数
  • 公共方法 - canPause()canSeekBackward()canSeekForward()在 API 5 中添加
  • resume()suspend()在 API 8 中添加
  • onInitializeAccessibilityEvent (AccessibilityEvent event)onInitializeAccessibilityNodeInfo (AccessibilityNodeInfo info)在 API 14 中添加
  • setOnInfoListener (MediaPlayer.OnInfoListener l)在 API 17 中添加

你用过这些吗?无论如何,您的问题可能在其他地方。

请粘贴一些代码并更详细地描述这是如何工作的。

于 2013-07-03T10:38:23.180 回答