Skip to content

Instantly share code, notes, and snippets.

@svagionitis
Created May 24, 2013 15:40
Show Gist options
  • Select an option

  • Save svagionitis/5644411 to your computer and use it in GitHub Desktop.

Select an option

Save svagionitis/5644411 to your computer and use it in GitHub Desktop.
Set mute
title Set mute
participant JavaScript
participant WebKitPlayer
participant IrisPlayer
note right of WebKitPlayer: readyState >= HAVE_METADATA
JavaScript ->+ WebKitPlayer: muted(true)
WebKitPlayer ->+ IrisPlayer: sesnSetAudioMute(true)
IrisPlayer -->- WebKitPlayer:
WebKitPlayer-->- JavaScript:
WebKitPlayer -> JavaScript: volumechange
JavaScript ->+ WebKitPlayer: muted(false)
WebKitPlayer ->+ IrisPlayer: sesnSetAudioMute(false)
IrisPlayer -->- WebKitPlayer:
WebKitPlayer-->- JavaScript:
WebKitPlayer -> JavaScript: volumechange
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment