繁体   English   中英

Android音频/视频流不适用于Wowza服务器

[英]Android audio/video Streaming is not working for Wowza server

我想使用Wowza服务器实现视频流。 那么,是否有Wowza如何在Android设备上运行的教程?

视频存储在服务器端。 因此,要使用URL提取视频并在Android上播放。 我尝试了一些示例,但出现错误“抱歉,无法播放此视频”。 我在enter code here使用URL enter code here definst / mp4:amazons3 / XXX / XXX_42u9Ug_MP4Akon-Beautifulft.ColbyO%27Donis%2CKardinalOffishall(1).mp4 / manifest.f4m“> http://XXXX.amazonaws.com/vods3/ definst / mp4 :amazons3 / XXX / XXX_42u9Ug_MP4Akon-Beautifulft.ColbyO%27Donis%2CKardinalOffishall(1).mp4 / manifest.f4m。

下面是源代码。

@Override
public void onCreate(Bundle icicle) {
    super.onCreate(icicle);
    setContentView(R.layout.main);
    mVideoView = (VideoView) findViewById(R.id.surface_view);

    mPath = (EditText) findViewById(R.id.path);
    mPath.setText("http://XXXX.amazonaws.com/vods3/_definst_/mp4:amazons3/XXX/XXXX_42u9Ug_MP4Akon-Beautifulft.ColbyO%27Donis%2CKardinalOffishall(1).mp4/manifest.f4m");

    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(VideoStreamingDemo.this,
                    "File URL/path is empty", Toast.LENGTH_LONG).show();

        } else {
            // If the path has not changed, just start the media player
            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;
    }
}

要在Android设备上播放视频,请使用“ RTSP”,网址格式为

rtsp://wowzaserveripaddress:1935/applicationname/mp4:directoryname/videofilename.mp4

要么

rtsp://wowzaserveripaddress:1935/applicationname/mp4:videofilename.mp4

例如

rtsp://192.168.1.11:1935/vod/mp4:sample.mp4

测试之前,请确保您的wowza服务器正在运行

在您的本机android播放器或MXPlayer中尝试一下

RTSP确实让人头疼[[ http:// server_ip:1935 / vod / definst / 'foldername'/ mp4:'videoname'.mp4 / playlist.m3u8]例如:我的视频名称“ camness.mp4”位于“趋势”文件夹中。 那么我的网址是[ http:// server_ip:1935 / vod / definst / trend / mp4:camness.mp4 / playlist.m3u8]

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM