Giter Club home page Giter Club logo

advanced-interactive-broadcasting's People

Contributors

brianxcli avatar cmder avatar dubian0608 avatar guohai avatar jamesneimanconsulting avatar matrixbirds avatar mgtheboss-1 avatar plutoless avatar prwrl avatar qiuchenglei avatar sbd021 avatar shellgrace avatar sidsharma27 avatar smallercc avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

advanced-interactive-broadcasting's Issues

Live Streaming RTMP URL

Where can I find RTMP URL for Live streaming commenting? Comments not send and receive without RTMP URL. I am getting an error in the RTMP URL. Should I use the RTM SDK for live streaming Commenting?

Timeout

Live stream failures because of timeout errors

AgoraRtcEngineKit vs AgoraRtcKit

There is no AgoraRtcEngineKit framework module in the current iOS video SDK. Instead, the framework is called AgoraRtcKit. Please correct them in the iOS projects. I am testing AgoraInjectStreaming right now.

Android issues

•	minSdkVersion in the build.gradle needed to be updated to 16 to compile
•	Use of the number 666 is not culturally friendly in the US

for iOS Live Streaming Injection

•	Small typos like updateButtonsVisiablity() and ServerHelperDelagate
•	Use of 666 is not US friendly
•	Project opens in Xcode 8, so the prerequisites have been updated.

onJoinChannelSuccess vs. onUserJoined for multiple user interactive broadcast (Android)

I have some questions regarding these two functions in the file, "VideoActivity."

    @Override
    public void onJoinChannelSuccess(String channel, final int uid, int elapsed) {
        super.onJoinChannelSuccess(channel, uid, elapsed);
        sendMsg("-->onJoinChannelSuccess<--" + channel + "  -->uid<--" + uid);
        runOnUiThread(new Runnable() {
            @Override
            public void run() {
                mBigUserId = uid;

                UserInfo mUI = new UserInfo();
                mUI.view = mBigView;
                mUI.uid = mBigUserId;
                mUI.view.setZOrderOnTop(true);
                mUserInfo.put(mBigUserId, mUI);
            }
        });
    }

    @Override
    public void onUserJoined(final int uid, int elapsed) {
        super.onUserJoined(uid, elapsed);
        sendMsg("-->onUserJoined<--" + uid);
        runOnUiThread(new Runnable() {
            @Override
            public void run() {
                UserInfo mUI = new UserInfo();
                mUI.view = RtcEngine.CreateRendererView(VideoActivity.this);
                mUI.uid = uid;
                mUI.view.setZOrderOnTop(true);
                mUserInfo.put(uid, mUI);
                mSmallAdapter.update(getSmallVideoUser(mUserInfo, mBigUserId));
                mRtcEngine.setupRemoteVideo(new VideoCanvas(mUI.view, Constants.RENDER_MODE_HIDDEN, uid));
                setTranscoding();
            }
        });
    }

When user first starts the activity and joins the channel, then onJoinChannelSuccess is call and the first user is set up as mBigUserId which is added here (mUserInfo.put(mBigUserId, mUI);).

Since it is an interactive broadcast, when the second user joins, then onJoinChannelSuccess is called again and the second user is added as mBiguserId again. That doesn't seem right.

Moreover, when onUserJoined is called when the second interactive broadcaster joins, then the person enters in mSmallAdapter.

My question is: is onJoinChannelSuccess called when primary broadcaster enters broadcast as well as when other interactive broadcasters (or subbroadcasters) enter broadcast? Is onUserJoined called after onJoinChannelSuccess always when any user enters broadcast? The code only seems logical if onJoinChannelSuccess is only called once when primary user enter broadcasts and then only onUserJoined is called when secondary broadcasters enter broadcast without onJoinChannelSuccess being called again. Please let me know if that is the case as it is most logical.

IAgoraMediaEngine.h missing - Build failed

Build command failed.
Error while executing process C:\Users\shrad\AppData\Local\Android\Sdk\ndk-bundle\ndk-build.cmd with arguments {NDK_PROJECT_PATH=null APP_BUILD_SCRIPT=C:\Users\shrad\Desktop\Advanced-Interactive-Broadcasting\Client-Side-AV-Capturing\Agora-client-side-AV-capturing-for-streaming-Android\app\src\main\cpp\Android.mk NDK_APPLICATION_MK=C:\Users\shrad\Desktop\Advanced-Interactive-Broadcasting\Client-Side-AV-Capturing\Agora-client-side-AV-capturing-for-streaming-Android\app\src\main\cpp\Application.mk APP_ABI=armeabi-v7a NDK_ALL_ABIS=armeabi-v7a NDK_DEBUG=1 APP_PLATFORM=android-16 NDK_OUT=C:/Users/shrad/Desktop/Advanced-Interactive-Broadcasting/Client-Side-AV-Capturing/Agora-client-side-AV-capturing-for-streaming-Android/app/build/intermediates/ndkBuild/debug/obj NDK_LIBS_OUT=C:\Users\shrad\Desktop\Advanced-Interactive-Broadcasting\Client-Side-AV-Capturing\Agora-client-side-AV-capturing-for-streaming-Android\app\build\intermediates\ndkBuild\debug\lib NDK_APPLICATION_MK:=src/main/cpp/Application.mk C:/Users/shrad/Desktop/Advanced-Interactive-Broadcasting/Client-Side-AV-Capturing/Agora-client-side-AV-capturing-for-streaming-Android/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/libapm-plugin-audio-video-preprocessing.so}
[armeabi-v7a] Compile++ thumb: apm-plugin-audio-video-preprocessing <= audio_video_preprocessing_plugin_jni.cpp

C:/Users/shrad/Desktop/Advanced-Interactive-Broadcasting/Client-Side-AV-Capturing/Agora-client-side-AV-capturing-for-streaming-Android/app/src/main/cpp/audio_video_preprocessing_plugin_jni.cpp:9:10: fatal error: '../include/agora/IAgoraMediaEngine.h' file not found
#include "../include/agora/IAgoraMediaEngine.h"
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1 error generated.
make: *** [C:/Users/shrad/Desktop/Advanced-Interactive-Broadcasting/Client-Side-AV-Capturing/Agora-client-side-AV-capturing-for-streaming-Android/app/build/intermediates/ndkBuild/debug/obj/local/armeabi-v7a/objs/apm-plugin-audio-video-preprocessing/audio_video_preprocessing_plugin_jni.o] Error 1

手动集成,编译报错

Agora-client-side-AV-capturing-for-streaming-Android 项目手动集成lib报错

步骤如下:
1. 下载Agora_Native_SDK_for_Android_v3_0_0_1_FULL.zip
2. 将libs中的agora-rtc-sdk.jar放进对应PLACEHOLDER中
3. 将so文件放进相应的PLACEHOLDER
4. 将include文件放进cpp\include\agora中
5. 项目build, 报错

错误如下

  1. RtcEngine enableAudioVolumeIndication方法参数不匹配
  2. ndkBuild/debug/obj/local/armeabi-v7a/objs/apm-plugin-audio-video-preprocessing/VMUtil.o缺失

channel media relay fails in pk mode

During PK mode I get the error "channel media relay fails", my broadcasting video working fine and user can join and watch the broadcaster but when try to start PK mode other broadcaster video not streaming (It's black screen), the data for RelayConfig I provide is Loca relayConfig data (UID, Token, channelName) is the data of local broadcaster while Remote and Proxy relayConfig data I provide is the data of other side broadcaster who have to be shown on right side but I get black screen. no video feed and also getting the error in console "channel media relay fails".

Where am I mistaking? Please guide and thanks in advance.

Unable to use and run sample project

I downloaded Advanced-Interactive-Broadcasting sample project unable to run it properly as it invitation don't work it say use not online while I invite the online user from other mobile.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.