8

似乎 videoView 只支持几种播放视频的方法,但它们都不支持最通用的播放形式,这很奇怪(因为我认为所有其他方法都使用它)。

我的问题:如何将 videoView 设置为播放 inputStream(任何类型的 inputStream,甚至是我自己定制的)?

是否可以不实际将数据复制到文件然后播放它或有某种技巧来“管道”数据?

我认为音频缺少同样的东西,但我不确定。

4

1 回答 1

-1

试试这个:

public static String getDataSource(InputStream inputStream) throws IOException {
        if (!URLUtil.isNetworkUrl(path)) {
            return path;
       } else {
           URL url = new URL(path);
           URLConnection cn = url.openConnection();
           cn.connect();
            InputStream stream = inputStream;
            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();
                out.close();
            } catch (IOException ex) {
              //  Log.e(TAG, "error: " + ex.getMessage(), ex);
            }
            return tempPath;
        }
    }
于 2013-07-20T11:21:56.533 回答