How to integrate amazon-ivs-player into flutter Mobile App?

1.4k Views Asked by At

I tried aws ivs player integration based on below mentioned docs. but I can't integrate into flutter mobile app.

Docs : Amazon Interactive Video Service Player: SDK for Android Guide.

2

There are 2 best solutions below

1
On
  final _channel = IOWebSocketChannel.connect(
    Uri.parse('wss://edge.ivschat.ap-northeast-1.amazonaws.com'),
    headers: {
     
      'Upgrade': 'websocket',
      'Connection': 'Upgrade',
      'sec-websocket-protocol': "your token",
      'Sec-WebSocket-Version': 13
    },
  );

It work fine.

0
On

AWS currently doesn't have an official Flutter SDK for the IVS Player. To fill the gap, I've created a custom plugin for the AWS IVS Player SDK that you can use in your app. Feel free to check it out and make any modifications you need:

https://github.com/ferns-it/flutter_ivs_player_sdk