Pychromecast pause() function is very slowCalling a function of a module by using its name (a string)How to flush output of print function?Using global variables in a functionHow to make a chain of function decorators?Python progression path - From apprentice to guruPeak detection in a 2D arrayHow to play hls from android sender to chromecastUnable to stop casting on Chromecast after wifi interruptionHow to update Chromecast MediaMetadata during radio stream?Google Cast slow for some streams

How could indestructible materials be used in power generation?

Blender 2.8 I can't see vertices, edges or faces in edit mode

What does it mean to describe someone as a butt steak?

Forgetting the musical notes while performing in concert

Neighboring nodes in the network

A reference to a well-known characterization of scattered compact spaces

Is it inappropriate for a student to attend their mentor's dissertation defense?

How do I write bicross product symbols in latex?

Twin primes whose sum is a cube

Did Shadowfax go to Valinor?

Is there a hemisphere-neutral way of specifying a season?

Why are electrically insulating heatsinks so rare? Is it just cost?

SSH "lag" in LAN on some machines, mixed distros

Today is the Center

In Romance of the Three Kingdoms why do people still use bamboo sticks when papers are already invented?

How can I prevent hyper evolved versions of regular creatures from wiping out their cousins?

What's the point of deactivating Num Lock on login screens?

How can saying a song's name be a copyright violation?

Is it possible to run Internet Explorer on OS X El Capitan?

90's TV series where a boy goes to another dimension through portal near power lines

Is it possible to create light that imparts a greater proportion of its energy as momentum rather than heat?

How can I tell someone that I want to be his or her friend?

Memorizing the Keyboard

Why can't we play rap on piano?



Pychromecast pause() function is very slow


Calling a function of a module by using its name (a string)How to flush output of print function?Using global variables in a functionHow to make a chain of function decorators?Python progression path - From apprentice to guruPeak detection in a 2D arrayHow to play hls from android sender to chromecastUnable to stop casting on Chromecast after wifi interruptionHow to update Chromecast MediaMetadata during radio stream?Google Cast slow for some streams






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I wrote (mostly borrowed) this code to pause an existing chromecast stream.



import pychromecast
device_friendly_name = "GCC"
chromecasts = pychromecast.get_chromecasts()
cast = next(cc for cc in chromecasts if cc.device.friendly_name ==
device_friendly_name)
mc = cast.media_controller
mc.block_until_active()
mc.pause()


It works just fine, but it takes up to six seconds to finally pause. Same with the play function. I have experimented with code and removed everything that wasn't needed. I suspect it's the next loop that sets the cast variable that is causing the problem. I wonder if there is a faster way to set that value, like pointing to an IP instead of device_friendly_name, but I am not able to find a way to make that work.



Does anyone have any wisdom about speeding things up?










share|improve this question






























    0















    I wrote (mostly borrowed) this code to pause an existing chromecast stream.



    import pychromecast
    device_friendly_name = "GCC"
    chromecasts = pychromecast.get_chromecasts()
    cast = next(cc for cc in chromecasts if cc.device.friendly_name ==
    device_friendly_name)
    mc = cast.media_controller
    mc.block_until_active()
    mc.pause()


    It works just fine, but it takes up to six seconds to finally pause. Same with the play function. I have experimented with code and removed everything that wasn't needed. I suspect it's the next loop that sets the cast variable that is causing the problem. I wonder if there is a faster way to set that value, like pointing to an IP instead of device_friendly_name, but I am not able to find a way to make that work.



    Does anyone have any wisdom about speeding things up?










    share|improve this question


























      0












      0








      0








      I wrote (mostly borrowed) this code to pause an existing chromecast stream.



      import pychromecast
      device_friendly_name = "GCC"
      chromecasts = pychromecast.get_chromecasts()
      cast = next(cc for cc in chromecasts if cc.device.friendly_name ==
      device_friendly_name)
      mc = cast.media_controller
      mc.block_until_active()
      mc.pause()


      It works just fine, but it takes up to six seconds to finally pause. Same with the play function. I have experimented with code and removed everything that wasn't needed. I suspect it's the next loop that sets the cast variable that is causing the problem. I wonder if there is a faster way to set that value, like pointing to an IP instead of device_friendly_name, but I am not able to find a way to make that work.



      Does anyone have any wisdom about speeding things up?










      share|improve this question
















      I wrote (mostly borrowed) this code to pause an existing chromecast stream.



      import pychromecast
      device_friendly_name = "GCC"
      chromecasts = pychromecast.get_chromecasts()
      cast = next(cc for cc in chromecasts if cc.device.friendly_name ==
      device_friendly_name)
      mc = cast.media_controller
      mc.block_until_active()
      mc.pause()


      It works just fine, but it takes up to six seconds to finally pause. Same with the play function. I have experimented with code and removed everything that wasn't needed. I suspect it's the next loop that sets the cast variable that is causing the problem. I wonder if there is a faster way to set that value, like pointing to an IP instead of device_friendly_name, but I am not able to find a way to make that work.



      Does anyone have any wisdom about speeding things up?







      python chromecast






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 8 at 0:01







      Robert Baker

















      asked Mar 7 at 23:55









      Robert BakerRobert Baker

      238




      238






















          0






          active

          oldest

          votes












          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',
          autoActivateHeartbeat: false,
          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%2f55054694%2fpychromecast-pause-function-is-very-slow%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55054694%2fpychromecast-pause-function-is-very-slow%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

          1928 у кіно

          Захаров Федір Захарович

          Ель Греко