terrabythia / dart_chromecast

Dart package to play videos to a chromecast device
MIT License
62 stars 66 forks source link

Set Volume not working #28

Closed gerry05 closed 3 years ago

gerry05 commented 3 years ago

using setVolume doesn't work.

snaeji commented 3 years ago

I changed the following function in cast_sender:

  void setVolume(double volume) {
    if (null != _receiverChannel) {
      _receiverChannel.sendMessage({
        'type': 'SET_VOLUME',
        "volume": { 'level': min(volume, 1)},
      });
    }
  }