在 Android 设备上捕获 RTSP 流

发布于 2024-10-29 23:36:59 字数 996 浏览 3 评论 0原文

我想使用 Nexus S 从网络摄像机捕获 RTSP 视频流。使用 VideoView 和媒体播放器观看流是没有问题的。

我尝试像这样保存它:

                URL url = new URL("rtsp://192.168.4.222:554/ipcam.sdp");
                URLConnection ucon = url.openConnection();
                ucon.connect();
                InputStream is = ucon.getInputStream();
                fos = new FileOutputStream(VideoFile);
                bis = new BufferedInputStream(is);
                isRecording = true;
                baf = new ByteArrayBuffer(50);
                int current = 0;
                FileOutputStream fos = new FileOutputStream(VideoFile);
                while (((current = bis.read()) != -1) & isRecording) {
                        baf.append((byte) current);
                        fos.write(baf.toByteArray());
                        baf.clear();
                }                    
                fos.close();

我收到 MalformedURLException,因为 android 不支持 rtsp:// url。

有人知道如何解决这个问题吗?

I want to capture a RTSP video stream from an ip camera with my Nexus S. To watch the stream with a VideoView and the mediaplayer is no problem.

I tried to save it like this:

                URL url = new URL("rtsp://192.168.4.222:554/ipcam.sdp");
                URLConnection ucon = url.openConnection();
                ucon.connect();
                InputStream is = ucon.getInputStream();
                fos = new FileOutputStream(VideoFile);
                bis = new BufferedInputStream(is);
                isRecording = true;
                baf = new ByteArrayBuffer(50);
                int current = 0;
                FileOutputStream fos = new FileOutputStream(VideoFile);
                while (((current = bis.read()) != -1) & isRecording) {
                        baf.append((byte) current);
                        fos.write(baf.toByteArray());
                        baf.clear();
                }                    
                fos.close();

I get a MalformedURLException, because android doesn't support rtsp:// urls.

Has somebody an idea how to solve this problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

标点 2024-11-05 23:36:59

您可以通过 JNI/NDK 使用 ffmpeg 库来捕获 rtsp 流。这不是很容易,但确实有效。

You can use ffmpeg libraries through JNI/NDK to capture an rtsp stream. It's not very easy, but it does work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文