123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267 |
- import 'dart:async';
- import 'dart:developer';
- import 'package:agora_rtc_engine/rtc_engine.dart';
- import 'package:agora_rtc_engine_example/config/agora.config.dart' as config;
- import 'package:flutter/cupertino.dart';
- import 'package:flutter/foundation.dart';
- import 'package:flutter/material.dart';
- import 'package:permission_handler/permission_handler.dart';
- /// JoinChannelAudio Example
- class JoinChannelAudio extends StatefulWidget {
- @override
- State<StatefulWidget> createState() => _State();
- }
- class _State extends State<JoinChannelAudio> {
- late final RtcEngine _engine;
- String channelId = config.channelId;
- bool isJoined = false,
- openMicrophone = true,
- enableSpeakerphone = true,
- playEffect = false;
- bool _enableInEarMonitoring = false;
- double _recordingVolume = 0, _playbackVolume = 0, _inEarMonitoringVolume = 0;
- TextEditingController? _controller;
- @override
- void initState() {
- super.initState();
- _controller = TextEditingController(text: channelId);
- this._initEngine();
- }
- @override
- void dispose() {
- super.dispose();
- _engine.destroy();
- }
- _initEngine() async {
- _engine = await RtcEngine.createWithContext(RtcEngineContext(config.appId));
- this._addListeners();
- await _engine.enableAudio();
- await _engine.setChannelProfile(ChannelProfile.LiveBroadcasting);
- await _engine.setClientRole(ClientRole.Broadcaster);
- }
- _addListeners() {
- _engine.setEventHandler(RtcEngineEventHandler(
- joinChannelSuccess: (channel, uid, elapsed) {
- log('joinChannelSuccess ${channel} ${uid} ${elapsed}');
- setState(() {
- isJoined = true;
- });
- },
- leaveChannel: (stats) async {
- log('leaveChannel ${stats.toJson()}');
- setState(() {
- isJoined = false;
- });
- },
- ));
- }
- _joinChannel() async {
- if (defaultTargetPlatform == TargetPlatform.android) {
- await Permission.microphone.request();
- }
- await _engine
- .joinChannel(config.token, config.channelId, null, config.uid)
- .catchError((onError) {
- print('error ${onError.toString()}');
- });
- }
- _leaveChannel() async {
- await _engine.leaveChannel();
- }
- _switchMicrophone() {
- _engine.enableLocalAudio(!openMicrophone).then((value) {
- setState(() {
- openMicrophone = !openMicrophone;
- });
- }).catchError((err) {
- log('enableLocalAudio $err');
- });
- }
- _switchSpeakerphone() {
- _engine.setEnableSpeakerphone(!enableSpeakerphone).then((value) {
- setState(() {
- enableSpeakerphone = !enableSpeakerphone;
- });
- }).catchError((err) {
- log('setEnableSpeakerphone $err');
- });
- }
- _switchEffect() async {
- if (playEffect) {
- _engine.stopEffect(1).then((value) {
- setState(() {
- playEffect = false;
- });
- }).catchError((err) {
- log('stopEffect $err');
- });
- } else {
- _engine
- .playEffect(
- 1,
- await (_engine.getAssetAbsolutePath("assets/Sound_Horizon.mp3")
- as FutureOr<String>),
- -1,
- 1,
- 1,
- 100,
- true)
- .then((value) {
- setState(() {
- playEffect = true;
- });
- }).catchError((err) {
- log('playEffect $err');
- });
- }
- }
- _onChangeInEarMonitoringVolume(double value) {
- setState(() {
- _inEarMonitoringVolume = value;
- });
- _engine.setInEarMonitoringVolume(value.toInt());
- }
- _toggleInEarMonitoring(value) {
- setState(() {
- _enableInEarMonitoring = value;
- });
- _engine.enableInEarMonitoring(value);
- }
- @override
- Widget build(BuildContext context) {
- return Stack(
- children: [
- Column(
- children: [
- TextField(
- controller: _controller,
- decoration: InputDecoration(hintText: 'Channel ID'),
- onChanged: (text) {
- setState(() {
- channelId = text;
- });
- },
- ),
- Row(
- children: [
- Expanded(
- flex: 1,
- child: ElevatedButton(
- onPressed:
- isJoined ? this._leaveChannel : this._joinChannel,
- child: Text('${isJoined ? 'Leave' : 'Join'} channel'),
- ),
- )
- ],
- ),
- ],
- ),
- Align(
- alignment: Alignment.bottomRight,
- child: Padding(
- child: Column(
- mainAxisSize: MainAxisSize.min,
- crossAxisAlignment: CrossAxisAlignment.end,
- children: [
- ElevatedButton(
- onPressed: this._switchMicrophone,
- child: Text('Microphone ${openMicrophone ? 'on' : 'off'}'),
- ),
- ElevatedButton(
- onPressed: this._switchSpeakerphone,
- child:
- Text(enableSpeakerphone ? 'Speakerphone' : 'Earpiece'),
- ),
- ElevatedButton(
- onPressed: this._switchEffect,
- child: Text('${playEffect ? 'Stop' : 'Play'} effect'),
- ),
- Row(
- mainAxisAlignment: MainAxisAlignment.end,
- children: [
- Text('RecordingVolume:'),
- Slider(
- value: _recordingVolume,
- min: 0,
- max: 400,
- divisions: 5,
- label: 'RecordingVolume',
- onChanged: (double value) {
- setState(() {
- _recordingVolume = value;
- });
- _engine.adjustRecordingSignalVolume(value.toInt());
- },
- )
- ],
- ),
- Row(
- mainAxisAlignment: MainAxisAlignment.end,
- children: [
- Text('PlaybackVolume:'),
- Slider(
- value: _playbackVolume,
- min: 0,
- max: 400,
- divisions: 5,
- label: 'PlaybackVolume',
- onChanged: (double value) {
- setState(() {
- _playbackVolume = value;
- });
- _engine.adjustPlaybackSignalVolume(value.toInt());
- },
- )
- ],
- ),
- Column(
- mainAxisSize: MainAxisSize.min,
- crossAxisAlignment: CrossAxisAlignment.end,
- children: [
- Row(mainAxisSize: MainAxisSize.min, children: [
- Text('InEar Monitoring Volume:'),
- Switch(
- value: _enableInEarMonitoring,
- onChanged: _toggleInEarMonitoring,
- activeTrackColor: Colors.grey[350],
- activeColor: Colors.white,
- )
- ]),
- if (_enableInEarMonitoring)
- Container(
- width: 300,
- child: Slider(
- value: _inEarMonitoringVolume,
- min: 0,
- max: 100,
- divisions: 5,
- label: 'InEar Monitoring Volume',
- onChanged: _onChangeInEarMonitoringVolume,
- ))
- ],
- ),
- ],
- ),
- padding: EdgeInsets.symmetric(vertical: 20, horizontal: 0),
- ))
- ],
- );
- }
- }
|