diff --git a/subprojects/gst-examples/webrtc/README.md b/subprojects/gst-examples/webrtc/README.md index 7818e70151..f09709deba 100644 --- a/subprojects/gst-examples/webrtc/README.md +++ b/subprojects/gst-examples/webrtc/README.md @@ -61,7 +61,7 @@ Build outputs will be placed in the directory `_builddir`. ### sendrecv: Send and receive audio and video -* Serve the `js/` directory on the root of your website, or open https://webrtc.nirbheek.in +* Serve the `js/` directory on the root of your website, or open https://webrtc.gstreamer.net - The JS code assumes the signalling server is on port 8443 of the same server serving the HTML * Open the website in a browser and ensure that the status is "Registered with server, waiting for call", and note the `id` too. @@ -93,7 +93,7 @@ You can pass a --server argument to all versions, for example `--server=wss://12 `./gradlew build`\ `java -jar build/libs/gst-java.jar --peer-id=ID` with the `id` from the browser. -You can optionally specify the server URL too (it defaults to wss://webrtc.nirbheek.in:8443): +You can optionally specify the server URL too (it defaults to wss://webrtc.gstreamer.net:8443): `java -jar build/libs/gst-java.jar --peer-id=1 --server=ws://localhost:8443` diff --git a/subprojects/gst-examples/webrtc/android/app/src/main/jni/webrtc.c b/subprojects/gst-examples/webrtc/android/app/src/main/jni/webrtc.c index c22eaafc65..b272dd9355 100644 --- a/subprojects/gst-examples/webrtc/android/app/src/main/jni/webrtc.c +++ b/subprojects/gst-examples/webrtc/android/app/src/main/jni/webrtc.c @@ -38,7 +38,7 @@ GST_DEBUG_CATEGORY_STATIC (debug_category); #define GST_CAT_DEFAULT debug_category -#define DEFAULT_SIGNALLING_SERVER "wss://webrtc.nirbheek.in:8443" +#define DEFAULT_SIGNALLING_SERVER "wss://webrtc.gstreamer.net:8443" #define GET_CUSTOM_DATA(env, thiz, fieldID) (WebRTC *)(gintptr)(*env)->GetLongField (env, thiz, fieldID) #define SET_CUSTOM_DATA(env, thiz, fieldID, data) (*env)->SetLongField (env, thiz, fieldID, (jlong)(gintptr)data) diff --git a/subprojects/gst-examples/webrtc/android/app/src/main/res/layout/main.xml b/subprojects/gst-examples/webrtc/android/app/src/main/res/layout/main.xml index 14156bcfcd..ac3718e935 100644 --- a/subprojects/gst-examples/webrtc/android/app/src/main/res/layout/main.xml +++ b/subprojects/gst-examples/webrtc/android/app/src/main/res/layout/main.xml @@ -38,7 +38,7 @@ android:layout_height="wrap_content" android:layout_margin="8dp" android:inputType="textUri" - android:text="wss://webrtc.nirbheek.in:8443" /> + android:text="wss://webrtc.gstreamer.net:8443" />