React Opentok how to update publisher resolution?











up vote
0
down vote

favorite












I have an opentok-react implementation for which I would like to be able to update the publisher resolution. Unfortunately, it seems that OTPublisher will only update when certain values change, and resolution is not one of them. I see in the documentation that getPublisher() should be used to update the publisher after it is initialized, but I am not seeing any examples of how this is done. Here is the component I need to update:



import React, { Component } from 'react';
import { OTSession, OTPublisher } from 'opentok-react';

const styles = {
publisherWindow: {
height: '155px',
width: '230px',
style: { buttonDisplayMode: 'off' },
},
};

type Props = {
sessionId: string,
sessionToken: string,
apiKey: string,
muted: boolean,
style?: Object,
onError: Function,
eventHandlers: Object,
lowerResolution: boolean,
};

type State = {
publish: boolean,
};

class TokboxPublisher extends Component<Props, State> {
state = {
publish: true,
};

static SURVEYOR_STREAM_NAME = 'Surveyor Stream';

componentWillMount() {
this.retryTimeout = setTimeout(this.retry, 6000);
};

componentWillUnmount() {
if (this.retryTimeout) {
clearTimeout(this.retryTimeout);
}
};

onPublish = () => {
console.log('Publishing...');
if (this.retryTimeout) {
clearTimeout(this.retryTimeout);
}
};

retry = () => {
this.retryTimeout = undefined;
console.log('Retrying publish...');
this.setState({ publish: false }, () => this.setState({ publish: true }));
};

render() {
if (!this.state.publish) {
return null;
}
console.log('lowerResolution: ', this.props.lowerResolution);
return (
<OTSession
apiKey={this.props.apiKey}
sessionId={this.props.sessionId}
token={this.props.sessionToken}
eventHandlers={this.props.eventHandlers}
>
<OTPublisher
ref={this.otPublisher}
properties={{
publishAudio: !this.props.muted,
resolution: this.props.lowerResolution ? '320x240' : '640x480',
frameRate: this.props.lowerResolution ? 1 : 30,
name: TokboxPublisher.SURVEYOR_STREAM_NAME,
...styles.publisherWindow,
...this.props.style,
}}
onPublish={this.onPublish}
onError={this.props.onError}
/>
</OTSession>
);
}
}

export default TokboxPublisher;


How would I use getPublisher() in this code to get the resolution to update when the lowerResolution prop changes to 'true'?










share|improve this question


























    up vote
    0
    down vote

    favorite












    I have an opentok-react implementation for which I would like to be able to update the publisher resolution. Unfortunately, it seems that OTPublisher will only update when certain values change, and resolution is not one of them. I see in the documentation that getPublisher() should be used to update the publisher after it is initialized, but I am not seeing any examples of how this is done. Here is the component I need to update:



    import React, { Component } from 'react';
    import { OTSession, OTPublisher } from 'opentok-react';

    const styles = {
    publisherWindow: {
    height: '155px',
    width: '230px',
    style: { buttonDisplayMode: 'off' },
    },
    };

    type Props = {
    sessionId: string,
    sessionToken: string,
    apiKey: string,
    muted: boolean,
    style?: Object,
    onError: Function,
    eventHandlers: Object,
    lowerResolution: boolean,
    };

    type State = {
    publish: boolean,
    };

    class TokboxPublisher extends Component<Props, State> {
    state = {
    publish: true,
    };

    static SURVEYOR_STREAM_NAME = 'Surveyor Stream';

    componentWillMount() {
    this.retryTimeout = setTimeout(this.retry, 6000);
    };

    componentWillUnmount() {
    if (this.retryTimeout) {
    clearTimeout(this.retryTimeout);
    }
    };

    onPublish = () => {
    console.log('Publishing...');
    if (this.retryTimeout) {
    clearTimeout(this.retryTimeout);
    }
    };

    retry = () => {
    this.retryTimeout = undefined;
    console.log('Retrying publish...');
    this.setState({ publish: false }, () => this.setState({ publish: true }));
    };

    render() {
    if (!this.state.publish) {
    return null;
    }
    console.log('lowerResolution: ', this.props.lowerResolution);
    return (
    <OTSession
    apiKey={this.props.apiKey}
    sessionId={this.props.sessionId}
    token={this.props.sessionToken}
    eventHandlers={this.props.eventHandlers}
    >
    <OTPublisher
    ref={this.otPublisher}
    properties={{
    publishAudio: !this.props.muted,
    resolution: this.props.lowerResolution ? '320x240' : '640x480',
    frameRate: this.props.lowerResolution ? 1 : 30,
    name: TokboxPublisher.SURVEYOR_STREAM_NAME,
    ...styles.publisherWindow,
    ...this.props.style,
    }}
    onPublish={this.onPublish}
    onError={this.props.onError}
    />
    </OTSession>
    );
    }
    }

    export default TokboxPublisher;


    How would I use getPublisher() in this code to get the resolution to update when the lowerResolution prop changes to 'true'?










    share|improve this question
























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I have an opentok-react implementation for which I would like to be able to update the publisher resolution. Unfortunately, it seems that OTPublisher will only update when certain values change, and resolution is not one of them. I see in the documentation that getPublisher() should be used to update the publisher after it is initialized, but I am not seeing any examples of how this is done. Here is the component I need to update:



      import React, { Component } from 'react';
      import { OTSession, OTPublisher } from 'opentok-react';

      const styles = {
      publisherWindow: {
      height: '155px',
      width: '230px',
      style: { buttonDisplayMode: 'off' },
      },
      };

      type Props = {
      sessionId: string,
      sessionToken: string,
      apiKey: string,
      muted: boolean,
      style?: Object,
      onError: Function,
      eventHandlers: Object,
      lowerResolution: boolean,
      };

      type State = {
      publish: boolean,
      };

      class TokboxPublisher extends Component<Props, State> {
      state = {
      publish: true,
      };

      static SURVEYOR_STREAM_NAME = 'Surveyor Stream';

      componentWillMount() {
      this.retryTimeout = setTimeout(this.retry, 6000);
      };

      componentWillUnmount() {
      if (this.retryTimeout) {
      clearTimeout(this.retryTimeout);
      }
      };

      onPublish = () => {
      console.log('Publishing...');
      if (this.retryTimeout) {
      clearTimeout(this.retryTimeout);
      }
      };

      retry = () => {
      this.retryTimeout = undefined;
      console.log('Retrying publish...');
      this.setState({ publish: false }, () => this.setState({ publish: true }));
      };

      render() {
      if (!this.state.publish) {
      return null;
      }
      console.log('lowerResolution: ', this.props.lowerResolution);
      return (
      <OTSession
      apiKey={this.props.apiKey}
      sessionId={this.props.sessionId}
      token={this.props.sessionToken}
      eventHandlers={this.props.eventHandlers}
      >
      <OTPublisher
      ref={this.otPublisher}
      properties={{
      publishAudio: !this.props.muted,
      resolution: this.props.lowerResolution ? '320x240' : '640x480',
      frameRate: this.props.lowerResolution ? 1 : 30,
      name: TokboxPublisher.SURVEYOR_STREAM_NAME,
      ...styles.publisherWindow,
      ...this.props.style,
      }}
      onPublish={this.onPublish}
      onError={this.props.onError}
      />
      </OTSession>
      );
      }
      }

      export default TokboxPublisher;


      How would I use getPublisher() in this code to get the resolution to update when the lowerResolution prop changes to 'true'?










      share|improve this question













      I have an opentok-react implementation for which I would like to be able to update the publisher resolution. Unfortunately, it seems that OTPublisher will only update when certain values change, and resolution is not one of them. I see in the documentation that getPublisher() should be used to update the publisher after it is initialized, but I am not seeing any examples of how this is done. Here is the component I need to update:



      import React, { Component } from 'react';
      import { OTSession, OTPublisher } from 'opentok-react';

      const styles = {
      publisherWindow: {
      height: '155px',
      width: '230px',
      style: { buttonDisplayMode: 'off' },
      },
      };

      type Props = {
      sessionId: string,
      sessionToken: string,
      apiKey: string,
      muted: boolean,
      style?: Object,
      onError: Function,
      eventHandlers: Object,
      lowerResolution: boolean,
      };

      type State = {
      publish: boolean,
      };

      class TokboxPublisher extends Component<Props, State> {
      state = {
      publish: true,
      };

      static SURVEYOR_STREAM_NAME = 'Surveyor Stream';

      componentWillMount() {
      this.retryTimeout = setTimeout(this.retry, 6000);
      };

      componentWillUnmount() {
      if (this.retryTimeout) {
      clearTimeout(this.retryTimeout);
      }
      };

      onPublish = () => {
      console.log('Publishing...');
      if (this.retryTimeout) {
      clearTimeout(this.retryTimeout);
      }
      };

      retry = () => {
      this.retryTimeout = undefined;
      console.log('Retrying publish...');
      this.setState({ publish: false }, () => this.setState({ publish: true }));
      };

      render() {
      if (!this.state.publish) {
      return null;
      }
      console.log('lowerResolution: ', this.props.lowerResolution);
      return (
      <OTSession
      apiKey={this.props.apiKey}
      sessionId={this.props.sessionId}
      token={this.props.sessionToken}
      eventHandlers={this.props.eventHandlers}
      >
      <OTPublisher
      ref={this.otPublisher}
      properties={{
      publishAudio: !this.props.muted,
      resolution: this.props.lowerResolution ? '320x240' : '640x480',
      frameRate: this.props.lowerResolution ? 1 : 30,
      name: TokboxPublisher.SURVEYOR_STREAM_NAME,
      ...styles.publisherWindow,
      ...this.props.style,
      }}
      onPublish={this.onPublish}
      onError={this.props.onError}
      />
      </OTSession>
      );
      }
      }

      export default TokboxPublisher;


      How would I use getPublisher() in this code to get the resolution to update when the lowerResolution prop changes to 'true'?







      reactjs opentok






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 21 at 19:40









      mlaramore

      64




      64
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote













          TokBox Developer Evangelist here.



          When you call the getPublisher() method of the OTPublisher component, a Publisher object will be returned. You can then call videoWidth() and videoHeight() methods on the Publisher object at any given time to know the publisher's resolution. For more information on the Publisher methods, please visit: https://tokbox.com/developer/sdks/js/reference/Publisher.html#methods






          share|improve this answer





















            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














             

            draft saved


            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53419426%2freact-opentok-how-to-update-publisher-resolution%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            0
            down vote













            TokBox Developer Evangelist here.



            When you call the getPublisher() method of the OTPublisher component, a Publisher object will be returned. You can then call videoWidth() and videoHeight() methods on the Publisher object at any given time to know the publisher's resolution. For more information on the Publisher methods, please visit: https://tokbox.com/developer/sdks/js/reference/Publisher.html#methods






            share|improve this answer

























              up vote
              0
              down vote













              TokBox Developer Evangelist here.



              When you call the getPublisher() method of the OTPublisher component, a Publisher object will be returned. You can then call videoWidth() and videoHeight() methods on the Publisher object at any given time to know the publisher's resolution. For more information on the Publisher methods, please visit: https://tokbox.com/developer/sdks/js/reference/Publisher.html#methods






              share|improve this answer























                up vote
                0
                down vote










                up vote
                0
                down vote









                TokBox Developer Evangelist here.



                When you call the getPublisher() method of the OTPublisher component, a Publisher object will be returned. You can then call videoWidth() and videoHeight() methods on the Publisher object at any given time to know the publisher's resolution. For more information on the Publisher methods, please visit: https://tokbox.com/developer/sdks/js/reference/Publisher.html#methods






                share|improve this answer












                TokBox Developer Evangelist here.



                When you call the getPublisher() method of the OTPublisher component, a Publisher object will be returned. You can then call videoWidth() and videoHeight() methods on the Publisher object at any given time to know the publisher's resolution. For more information on the Publisher methods, please visit: https://tokbox.com/developer/sdks/js/reference/Publisher.html#methods







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 23 at 2:40









                Manik

                560113




                560113






























                     

                    draft saved


                    draft discarded



















































                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53419426%2freact-opentok-how-to-update-publisher-resolution%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    What visual should I use to simply compare current year value vs last year in Power BI desktop

                    Alexandru Averescu

                    Trompette piccolo