Skip to content

This is a sample app for agora video call implementation with angular

License

Notifications You must be signed in to change notification settings

dilipwk/angular-agora-video-call

Repository files navigation

angular-agora-video-call

This is a sample app for agora implementation with angular

Prerequisites

Before using the Library, you need to:

  1. Get a valid Agora account. (Sign up for free.)
  2. Create a project in Agora Console and choose APP ID for authentication.

Demo

https://vcallagora.web.app/

Setup

git clone https://github.com/dilipwk/angular-agora-video-call
 cd angular-agora-video-call 
 npm i 
npm i ngx-agora-sdk-ng --save 
ng serve

  • Replace your own appId in agora-appId. in app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { NgxAgoraSdkNgModule } from 'ngx-agora-sdk-ng';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    NgxAgoraSdkNgModule.forRoot({
      AppID: 'replace-agora-appId',
      Video: { codec: 'h264', mode: 'rtc', role: 'host' }
    })
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

Made with ❤️

Email [email protected] for any development related support.

Allude https://github.com/ChapterII/ngx-agora-sdk-ng

Thanks

About

This is a sample app for agora video call implementation with angular

Topics

Resources

License

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published