Siprix VoIP SDK plugin for embedding voice and video communication (based on SIP/RTP protocols) into Flutter applications. It contains native SIP client implementations for 5 platforms: Android, iOS, MacOS, Windows, and single unified API for all them.
Example application contains ready to use SIP VoIP Client. It has ability to:
- Add multiple SIP accounts
- Send/receive multiple calls (Audio and Video)
- Manage calls with (hold, mute microphone/camera, play sound to call from file, send/receive DTMF,...)
Application's UI may not contain all the features, avialable in the SDK, they can be added later or manually in scope of the own application.
void main() async {
AccountsModel accountsModel = AccountsModel();
CallsModel callsModel = CallsModel(accountsModel);
runApp(
MultiProvider(providers:[
ChangeNotifierProvider(create: (context) => accountsModel),
ChangeNotifierProvider(create: (context) => callsModel),
],
child: const MyApp(),
));
}
class _MyAppState extends State<MyApp> {
@override
void initState() {
super.initState();
_initializeSiprix();
}
void _initializeSiprix([LogsModel? logsModel]) async {
InitData iniData = InitData();
iniData.license = "...license-credentials...";
iniData.logLevelFile = LogLevel.info;
SiprixVoipSdk().initialize(iniData, logsModel);
}
Widget buildBody() {
final accounts = context.watch<AccountsModel>();
final calls = context.watch<CallsModel>();
return Column(children: [
ListView.separated(shrinkWrap: true,
itemCount: accounts.length,
separatorBuilder: (BuildContext context, int index) => const Divider(height: 1),
itemBuilder: (BuildContext context, int index) {
AccountModel acc = accounts[index];
return
ListTile(title: Text(acc.uri, style: Theme.of(context).textTheme.titleSmall),
subtitle: Text(acc.regText),
tileColor: Colors.blue
);
},
),
ElevatedButton(onPressed: _addAccount, child: const Icon(Icons.add_card)),
ElevatedButton(onPressed: _addCall, child: const Icon(Icons.add_call)),
...
}
void _addAccount() {
AccountModel account = AccountModel();
account.sipServer = "192.168.0.122";
account.sipExtension = "1016";
account.sipPassword = "12345";
account.expireTime = 300;
context.read<AccountsModel>().addAccount(account)
.catchError(showSnackBar);
}
void _addCall() {
final accounts = context.read<AccountsModel>();
if(accounts.selAccountId==null) return;
CallDestination dest = CallDestination("1012", accounts.selAccountId!, false);
context.read<CallsModel>().invite(dest)
.catchError(showSnackBar);
}
More detailed integration guide
Siprix doesn't provide VoIP services, but in the same time doesn't have backend limitations and can connect to any SIP (Server) PBX or make direct calls between clients. For testing app you need an account(s) credentials from a SIP service provider(s). Some features may be not supported by all SIP providers.
Attached Siprix SDK works in trial mode and has limited call duration - it drops call after 60sec. Upgrading to a paid license removes this restriction, enabling calls of any length.
Please contact sales@siprix-voip.com for more details.
Product web site: siprix-voip.com
Manual: docs.siprix-voip.com
| | | | | |