123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481 |
- 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:agora_rtc_engine_example/examples/config/voice_changer.config.dart';
- import 'package:flutter/cupertino.dart';
- import 'package:flutter/foundation.dart';
- import 'package:flutter/material.dart';
- import 'package:permission_handler/permission_handler.dart';
- /// VoiceChange Example
- class VoiceChange extends StatefulWidget {
- @override
- State<StatefulWidget> createState() => _State();
- }
- class _State extends State<VoiceChange> {
- late final RtcEngine _engine;
- bool isJoined = false;
- List<int> remoteUids = [];
- int? uidMySelf;
- int? selectedVoiceToolBtn;
- AudioEffectPreset currentAudioEffectPreset = AudioEffectPreset.AudioEffectOff;
- bool isEnableSlider1 = false, isEnableSlider2 = false;
- String sliderTitle1 = '', sliderTitle2 = '';
- double minimumValue1 = 0,
- maximumValue1 = 0,
- minimumValue2 = 0,
- maximumValue2 = 0;
- double? sliderValue1, sliderValue2;
- Map selectedFreq = FreqOptions[0];
- Map selectedReverbKey = ReverbKeyOptions[0];
- double voicePitchValue = 0.5;
- double bandGainValue = 0;
- double reverbValue = 1;
- @override
- void initState() {
- super.initState();
- }
- @override
- void dispose() {
- super.dispose();
- _engine.destroy();
- }
- _initEngine() async {
- if (defaultTargetPlatform == TargetPlatform.android) {
- await Permission.microphone.request();
- }
- _engine = await RtcEngine.createWithContext(RtcEngineContext(config.appId));
- this._addListener();
- // make this room live broadcasting room
- await _engine.setChannelProfile(ChannelProfile.LiveBroadcasting);
- await _engine.setClientRole(ClientRole.Broadcaster);
- // Set audio route to speaker
- await _engine.setDefaultAudioRoutetoSpeakerphone(true);
- // start joining channel
- // 1. Users can only see each other after they join the
- // same channel successfully using the same app id.
- // 2. If app certificate is turned on at dashboard, token is needed
- // when joining channel. The channel name and uid used to calculate
- // the token has to match the ones used for channel join
- await _engine.joinChannel(config.token, config.channelId, null, 0, null);
- }
- _addListener() {
- _engine.setEventHandler(RtcEngineEventHandler(warning: (warningCode) {
- log('Warning ${warningCode}');
- }, error: (errorCode) {
- log('Warning ${errorCode}');
- }, joinChannelSuccess: (channel, uid, elapsed) {
- log('joinChannelSuccess ${channel} ${uid} ${elapsed}');
- ;
- setState(() {
- isJoined = true;
- uidMySelf = uid;
- });
- }, userJoined: (uid, elapsed) {
- log('userJoined $uid $elapsed');
- this.setState(() {
- remoteUids.add(uid);
- });
- }, userOffline: (uid, reason) {
- log('userOffline $uid $reason');
- this.setState(() {
- remoteUids.remove(uid);
- });
- }));
- }
- _onPressBFButton(dynamic type, int index) async {
- switch (index) {
- case 0:
- case 1:
- await _engine.setVoiceBeautifierPreset(type as VoiceBeautifierPreset);
- this._updateSliderUI(AudioEffectPreset.AudioEffectOff);
- break;
- case 2:
- case 3:
- case 4:
- case 5:
- await _engine.setAudioEffectPreset(type as AudioEffectPreset);
- this._updateSliderUI(type);
- break;
- default:
- break;
- }
- }
- _updateSliderUI(AudioEffectPreset type) {
- this.setState(() {
- currentAudioEffectPreset = type;
- switch (type) {
- case AudioEffectPreset.RoomAcoustics3DVoice:
- isEnableSlider1 = true;
- isEnableSlider2 = false;
- sliderTitle1 = 'Cycle';
- minimumValue1 = 1;
- sliderValue1 = 1;
- maximumValue1 = 3;
- break;
- case AudioEffectPreset.PitchCorrection:
- isEnableSlider1 = true;
- isEnableSlider2 = true;
- sliderTitle1 = 'Tonic Mode';
- sliderTitle2 = 'Tonic Pitch';
- minimumValue1 = 1;
- sliderValue1 = 1;
- maximumValue1 = 3;
- minimumValue2 = 1;
- sliderValue2 = 1;
- maximumValue2 = 12;
- break;
- default:
- isEnableSlider1 = false;
- isEnableSlider2 = false;
- break;
- }
- });
- }
- _onAudioEffectUpdate({
- double? value1,
- double? value2,
- }) async {
- this.setState(() {
- if (value1 != null) {
- sliderValue1 = value1;
- }
- if (value2 != null) {
- sliderValue2 = value2;
- }
- _engine.setAudioEffectParameters(
- currentAudioEffectPreset,
- (isEnableSlider1 ? sliderValue1 ?? minimumValue1 : 0).toInt(),
- (isEnableSlider2 ? sliderValue2 ?? minimumValue2 : 0).toInt());
- });
- }
- _onPressChangeFreq() {
- return showDialog(
- context: context,
- barrierDismissible: false,
- builder: (BuildContext context) {
- return AlertDialog(
- title: Text('Set Band Frequency'),
- actions: <Widget>[
- for (var freqOpt in FreqOptions)
- TextButton(
- child: Text(freqOpt['text'] as String),
- onPressed: () {
- setState(() {
- selectedFreq = freqOpt;
- _engine.setLocalVoiceEqualization(
- freqOpt['type'] as AudioEqualizationBandFrequency,
- bandGainValue.toInt());
- });
- Navigator.of(context).pop();
- },
- ),
- ],
- );
- },
- );
- }
- _onPressChangeReverbKey() {
- return showDialog(
- context: context,
- barrierDismissible: false,
- builder: (BuildContext context) {
- return AlertDialog(
- title: Text('Set Reverb Key'),
- actions: <Widget>[
- for (var reverbKey in ReverbKeyOptions)
- TextButton(
- child: Text(reverbKey['text'] as String),
- onPressed: () {
- setState(() {
- selectedReverbKey = reverbKey;
- });
- Navigator.of(context).pop();
- },
- ),
- ],
- );
- },
- );
- }
- _renderToolBar() {
- return Padding(
- padding: EdgeInsets.symmetric(horizontal: 8, vertical: 0),
- child: Column(
- children: [
- Row(children: [
- Text('Voice Beautifier & Effects Preset',
- style: TextStyle(fontWeight: FontWeight.bold))
- ]),
- Container(
- width: MediaQuery.of(context).size.width,
- child: Wrap(children: [
- for (var i = 0; i < VoiceChangeConfig.length; i++)
- _renderBtnItem(VoiceChangeConfig[i], i)
- ])),
- if (isEnableSlider1)
- Row(
- mainAxisAlignment: MainAxisAlignment.end,
- mainAxisSize: MainAxisSize.max,
- children: [
- Expanded(
- child: Text(sliderTitle1),
- flex: 1,
- ),
- Expanded(
- child: Slider(
- value: sliderValue1!,
- min: minimumValue1,
- max: maximumValue1,
- divisions: 5,
- label: sliderTitle1,
- onChanged: (double value) {
- _onAudioEffectUpdate(value1: value);
- },
- ),
- flex: 2,
- )
- ],
- ),
- if (isEnableSlider2)
- Row(
- mainAxisAlignment: MainAxisAlignment.end,
- mainAxisSize: MainAxisSize.max,
- children: [
- Expanded(child: Text(sliderTitle2), flex: 1),
- Expanded(
- child: Slider(
- value: sliderValue2!,
- min: minimumValue2,
- max: maximumValue2,
- divisions: 5,
- label: sliderTitle1,
- onChanged: (double value) {
- _onAudioEffectUpdate(value2: value);
- },
- ),
- flex: 2)
- ],
- ),
- Row(children: [
- Text('Customize Voice Effects',
- style: TextStyle(fontWeight: FontWeight.bold))
- ]),
- Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- Text('Pitch:'),
- Slider(
- value: voicePitchValue,
- min: 0.5,
- max: 2,
- divisions: 5,
- onChanged: (double value) {
- setState(() {
- voicePitchValue = value;
- });
- _engine.setLocalVoicePitch(value);
- },
- )
- ],
- ),
- Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- Text('BandFreq'),
- TextButton(
- child: Text(selectedFreq['text']),
- onPressed: _onPressChangeFreq,
- )
- ],
- ),
- Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- Text('BandGain:'),
- Slider(
- value: bandGainValue,
- min: 0,
- max: 9,
- divisions: 5,
- onChanged: (double value) async {
- this.setState(() {
- bandGainValue = value;
- });
- _engine.setLocalVoiceEqualization(
- selectedFreq['type'], value.toInt());
- },
- )
- ],
- ),
- Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- Text('BandKey'),
- TextButton(
- child: Text(selectedReverbKey['text']),
- onPressed: _onPressChangeReverbKey,
- )
- ],
- ),
- Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- Text('ReverbValue:'),
- Slider(
- value: reverbValue,
- min: selectedReverbKey['min'],
- max: selectedReverbKey['max'],
- divisions: 5,
- onChanged: (double value) async {
- setState(() {
- reverbValue = value;
- });
- await _engine.setLocalVoiceReverb(
- selectedReverbKey['type'], value.toInt());
- },
- )
- ],
- ),
- ],
- ));
- }
- _renderBtnItem(Map<String, dynamic> config, int index) {
- return _CusBtn(
- config['alertTitle'], selectedVoiceToolBtn != index, config['options'],
- (type) {
- setState(() {
- selectedVoiceToolBtn = index;
- });
- _onPressBFButton(type, index);
- });
- }
- @override
- Widget build(BuildContext context) {
- return Stack(
- children: [
- Column(
- children: [
- !isJoined
- ? Row(
- children: [
- Expanded(
- flex: 1,
- child: ElevatedButton(
- onPressed: _initEngine,
- child: Text('Join channel'),
- ),
- )
- ],
- )
- : _renderUserUid(),
- if (isJoined) _renderToolBar()
- ],
- ),
- ],
- );
- }
- _renderUserUid() {
- final size = MediaQuery.of(context).size;
- var list = [uidMySelf, ...remoteUids];
- return Container(
- width: size.width,
- height: 200,
- child: ListView.builder(
- itemCount: list.length,
- itemBuilder: (context, index) {
- return Center(
- child: Padding(
- child: Text(
- 'AUDIO ONLY ${index == 0 ? 'LOCAL' : 'REMOTE'} UID: ${list[index]}',
- style: TextStyle(fontSize: 14, color: Colors.black),
- ),
- padding: EdgeInsets.all(4.0),
- ),
- );
- },
- ),
- );
- }
- }
- class _CusBtn extends StatefulWidget {
- String alertTitle;
- dynamic options;
- bool isOff = false;
- void Function(dynamic type) onPressed;
- _CusBtn(this.alertTitle, this.isOff, this.options, this.onPressed);
- @override
- State<StatefulWidget> createState() => _CusBtnState(isOff);
- }
- class _CusBtnState extends State<_CusBtn> {
- String title = "Off";
- bool isEnable;
- _CusBtnState(this.isEnable);
- @override
- void didUpdateWidget(covariant _CusBtn oldWidget) {
- super.didUpdateWidget(oldWidget);
- this.setState(() {
- isEnable = !widget.isOff;
- });
- }
- @override
- Widget build(BuildContext context) {
- return TextButton(
- child: Text(isEnable ? title : 'Off'),
- onPressed: _showMyDialog,
- );
- }
- Future<void> _showMyDialog() async {
- return showDialog(
- context: context,
- barrierDismissible: false,
- builder: (BuildContext context) {
- return AlertDialog(
- title: Text(widget.alertTitle),
- actions: <Widget>[
- for (var option in widget.options)
- TextButton(
- child: Text(option['text']),
- onPressed: () {
- setState(() {
- isEnable = true;
- title = option['text'];
- widget.onPressed(option['type']);
- });
- Navigator.of(context).pop();
- },
- ),
- ],
- );
- },
- );
- }
- }
|