我正在尝试通过使用VLC的网站在本地网络上传输RTSP源(来自ABUS相机)。我试图应用我在这里或其他地方找到的所有解决方案,直到现在都没有成功。
我需要从 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:showIn="@layout/activity_my"
android:orientation="horizontal">
<EditText
android:id="@+id/edit_message"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="@string/edit_message" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_send"
android:onClick="sendMessage"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/test"
android:onClick="testActivity" />
</LinearLayout>
捕获Feed并将其与VLC转换为rtsp://192.168.0.2:554/stream1
文件。 VLC保持崩溃。没有转码它不会崩溃,但我没有流文件。
我在Windows 7和10上使用XAMP(以及WAMP)作为网络服务器。无论我在尝试什么,我都无法使其工作。作为HTML播放器,我正在使用Projekktor,这是我的代码行:
192.168.0.2:1234/stream.ogg
任何帮助将不胜感激!谢谢!
答案 0 :(得分:1)
我找到了解决方案,使用Flash播放器和VLC浏览器插件。
<embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org" version="VideoLAN.VLCPlugin.2" width="100%" height="100%" id="vlc" loop="yes" autoplay="yes" controls="false" target="rtsp://192.168.0.2:554/stream1"></embed>