Example usage for com.google.gwt.tok.client PublishProperties setPublishVideo

List of usage examples for com.google.gwt.tok.client PublishProperties setPublishVideo

Introduction

In this page you can find the example usage for com.google.gwt.tok.client PublishProperties setPublishVideo.

Prototype

public final native void setPublishVideo(Boolean publishVideo) ;

Source Link

Document

Whether to initially publish video for the stream (default: true).

Usage

From source file:com.google.gwt.tok.test.client.widget.PublisherPanel.java

@UiHandler("publishButton")
protected void onPublishClicked(ClickEvent event) {
    if (publishing) {
        EVENT_BUS.fireEvent(new UnpublishEvent());
    } else {/*from  w  ww .  j  a  v  a  2  s  . c o  m*/
        PublishProperties publishProperties = PublishProperties.get();
        publishProperties.setHeight(Integer.valueOf(height.getValue()));
        publishProperties.setWidth(Integer.valueOf(width.getValue()));
        publishProperties.setMicrophoneGain(Integer.valueOf(microphoneGain.getValue()));
        publishProperties.setMirror(mirror.getValue());
        publishProperties.setPublishAudio(publishAudio.getValue());
        publishProperties.setPublishVideo(publishVideo.getValue());

        EVENT_BUS.fireEvent(new PublishEvent(publisherDiv.getId(), publishProperties));
    }
}