From 97a88a534fffc9c4bf1179f7c5946f93e8619310 Mon Sep 17 00:00:00 2001 From: Bruce Date: Fri, 22 Dec 2023 09:54:20 +0800 Subject: [PATCH] Update README.md --- README.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 4c6cbf3..ee92eea 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ - [x] 3. encode with openh264. - [ ] 4. echo cancellation in software. Maybe need libspeex. -## what it did: +## What It Does:
click to expand. @@ -70,17 +70,15 @@ your computer has no NDK 16. **2. Testing with a RTMP server:** -You may not have a RTMP server. -You need to establish a RTMP server which receives app pushed RTMP stream transmits stream to -other players. +You must have a RTMP server which receives stream app pushed. The RTMP server can also transfer data to video players. I had written a blog to teach someone else how to establish it. You can look into the [blog](https://github.com/BruceWind/BruceWind.github.io/blob/master/md/establish-RTMP-server-with-docker.md). -**3. Pushing.** +**3. Pushing stream.** -modify this code in `MainActivity` to target your rtmp server: +modify this code line below in `MainActivity` to point to your rtmp server: ``` java private String mRtmpPushUrl = "rtmp://192.168.50.14/live/live"; ```