• Products
    • Isadora
    • Get It
    • ADD-ONS
    • IzzyCast
    • Get It
  • Forum
  • Help
  • Werkstatt
  • Newsletter
  • Impressum
  • Dsgvo
  • Press
  • Isadora
  • Get It
  • ADD-ONS
  • IzzyCast
  • Get It
  • Press
  • Dsgvo
  • Impressum

Navigation

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    • Tags
    1. Home
    2. Tags
    3. zoomosc
    Log in to post
    • All categories
    • R

      ZoomOSC alternative?
      How To... ? • zoomosc • • RL

      8
      1
      Votes
      8
      Posts
      661
      Views

      Armando

      @jhoepffner Always right on the spot, Jacques !

    • liminal_andy

      Making Graphics from Zoom Chat
      Showcase • zoom zoomosc streaming events • • liminal_andy

      2
      6
      Votes
      2
      Posts
      737
      Views

      Armando

      Can't believe I didn't see that before. Thanks David and Andy !

    • peuclid

      example streaming theatre with isadora, zoomosc, qlab
      Showcase • theatre zoomosc • • peuclid

      2
      3
      Votes
      2
      Posts
      557
      Views

      bonemap

      @peuclid

      That looks like a great resource Bernie, thanks for taking the time to package it up and sharing.

      Best wishes

      Russell

    • liminal_andy

      ZoomISO is now available!
      Third Party Software • ndi syphon zoom zoomosc • • liminal_andy

      1
      2
      Votes
      1
      Posts
      434
      Views

      liminal_andy

      ZoomISO is now fully available! Big thanks to all of the Isadora users who helped us test the beta. 

      More info at: 

      https://www.liminalet.com/zoom...

    • Woland

      User Actor Text Comparator (useful for ZoomOSC Chat Parsing)
      Showcase • osc zoomosc user actor zoom virtual theatre • • Woland

      2
      2
      Votes
      2
      Posts
      568
      Views

      liminal_andy

      @woland Super useful, thanks so much

    • Woland

      How to Generate a Word Cloud from Chat
      How To... ? • glsl shader text draw zoomosc virtual theatre javascript • • Woland

      4
      2
      Votes
      4
      Posts
      1025
      Views

      DusX

      You may also want to find a monospace font to use, this way you can calculate the space required for the word, since each letter will take up equal space. That should allow for a grid like layout to become possible. Rotation will be another monster.

    • liminal_andy

      [ANSWERED] Building a Decider Actor
      How To... ? • zoom zoomosc osc control virtual theatre • • liminal_andy

      10
      0
      Votes
      10
      Posts
      2288
      Views

      Woland

      @liminal_andy

      If you're comfortable sharing this, it'd be great to have a version of this on the TroikaTronix Add-Ons page (link in my signature) if it's not there already :)

      Best wishes,

      Woland

    • liminal_andy

      [LOGGED] Max JavaScript Actor Outputs Increase
      Feature Requests • javascript zoomosc osc zoom virtual theatre • • liminal_andy

      8
      1
      Votes
      8
      Posts
      1026
      Views

      mark

      @peuclid

      <3 ;-)

    • liminal_andy

      Zoom Test Kitchen - A Weekly Place to Test Zoom
      Events • resources zoom zoomosc osc virtual theatre • • liminal_andy

      1
      4
      Votes
      1
      Posts
      348
      Views

      liminal_andy

      While we love Zoom for all of the many settings it exposes to help us tailor our events, broadcasts, and live performances, it can be a bit overwhelming at times. In response, Jeff Widgren, the founder of Stream Sharks, has for the past several months been running an online Zoom support group called the Zoom Test Kitchen.

      ZTK meets for several hours on Zoom twice a week, Tuesdays and Fridays, and is a space for Zoom users of any experience level or background to share questions, test their systems, and learn from experts about making the most of Zoom. It is, in my view, an essential resource for those looking to produce high quality work on Zoom. It's also a learning lab where I can test my apps, show files, and workflows in a helpful and friendly environment.

      Zoom Test Kitchen can be found on facebook at www.facebook.com/zoomtestkitchen. See you there!

    • D

      Differences Zoom Meeting vs. Webinar
      Third Party Software • zoom virtual theatre virtual webcam zoomosc osc • • DillTheKraut

      6
      0
      Votes
      6
      Posts
      1163
      Views

      D

      @liminal_andy said:

      will bump to Group HD 720p for the duration of the call, even if the device leaves the call! 

       😄 That's a fun hack, thank you for sharing your knowledge here again!

    • Armando

      ​IMEDIAÇÕES Teleperformance (Isadora, ZoomOSC, Loopback, Bitfocus Companion)​
      Events • show teleperformance zoomosc • • Armando

      6
      2
      Votes
      6
      Posts
      1347
      Views

      Armando

      @bennnid

      Thanks ! There will be bore, this is just the beginning....

    • liminal_andy

      [LOGGED] Allow Custom (or Selectable) Delimiter for Text Accumulator
      Feature Requests • zoom zoomosc virtual theatre control javascript • • liminal_andy

      2
      2
      Votes
      2
      Posts
      724
      Views

      Woland

      We'd love it if you could put this workaround on the TroikaTronix Add-Ons page (link in my signature) :)

      Best wishes,

      Woland

    • Armando

      ZoomOSC Supersource Isadora user actors
      Interfacing • supersources user actor zoomosc • • Armando

      15
      1
      Votes
      15
      Posts
      2148
      Views

      Armando

      @woland Hi, I'd like to upload the Zoom OSC supersources, but creation accounts doesn't seem to work

    • liminal_andy

      Dynamic List Control
      How To... ? • control zoom zoomosc control panel virtual theatre • • liminal_andy

      18
      0
      Votes
      18
      Posts
      2771
      Views

      mark

      @liminal_andy said:

       clever, I wonder if there is a simple way for me to re-use the JS code that culls the dynamic list to act upon a copy database, simultaneously pruning it so the list and the database remain in sync.

      There is. You just need to store the index of the items with the lines in JS, do the filtering, and then split the outputs to give a list of the indexes and a list of the text. You can then use the list of indexes to look up the item in the original list.

      Sending the test file that includes this functionality to you now.

      function main()
      {
          var outStringIndexes = "";
          var outStringLines = "";
          var inputLines = arguments[0].match(/[^\r\n]+/g);
          var i;
          var indexedLines = [ ];
          for (i=0; i<inputLines.length; i++) {
              var rec = [ i+1, inputLines[i] ];
              // print(rec[0] + " " + rec[1] + "\n");
              indexedLines.push(rec);
          }
          for (i=0; i<inputLines.length; i++) {
              var needle = arguments[1].toLowerCase();
              var haystack = indexedLines[i][1].toLowerCase();
              if (haystack.includes(needle)) {
                  outStringIndexes += indexedLines[i][0] + "\n";
                  outStringLines += indexedLines[i][1] + "\n";
              }
          }
          return [outStringIndexes, outStringLines];
      }

      Best Wishes,
      Mark

    • liminal_andy

      Bring Zoom Chat and Events into Isadora
      Interfacing • osc zoomosc zoom virtual theatre text • • liminal_andy

      8
      7
      Votes
      8
      Posts
      1773
      Views

      Armando

      @woland Thanks Woland. Very good to know. I am doing also some more user actors for lower thirds and other zoom ISO commands. I'll put all of them in the add-ons page now that Ryan has solved my login issues. Excitying times for Isadora users ahead !!!

    • liminal_andy

      Automatic Lower Thirds with Isadora and ZoomOSC 4
      Showcase • alpha channel osc zoomosc zoom virtual theatre • • liminal_andy

      4
      4
      Votes
      4
      Posts
      985
      Views

      tlaloc

      Great work with ZoomOSC Andy! With the capabilities of Isadora and the Window into zoom through ZoomOSC we have been able to do some wonderful virtual theatrical happenings! I hope the Office Hours Group plays with isadora more. They will love it.


      Tláloc López-Watermann 

    • F

      High School Production Using Izzy and ZoomOSC
      Showcase • zoom zoomosc osc virtual webcam virtual theatre • • frank522

      14
      2
      Votes
      14
      Posts
      1532
      Views

      J

      @liminal_andy Sweet! I think this actor may be the shortcut. thanks so much!

    • Armando

      [SOLVED] ZoomOSC and EpocCam Driver Incompatibility
      Troubleshooting and Bug Reports • epoccam zoomosc • • Armando

      5
      0
      Votes
      5
      Posts
      1082
      Views

      Armando

      @michel Problem solved ! I just downloaded the new Elgato drivers for Epoccam and now Zoom osc 4 works perfectly.

      Thanks

    • L

      [ANSWERED] ZoomOSC participants pink
      Third Party Software • m1 chip mac zoom zoomosc • • lape

      3
      0
      Votes
      3
      Posts
      644
      Views

      liminal_andy

      @lape We are now M1 Compatible! New release this week :)

    • F

      [SOLVED] Set/Get global values actors unlinked
      How To... ? • osc screen capture virtual theatre zoom zoomosc • • frank522

      5
      0
      Votes
      5
      Posts
      1355
      Views

      F

      Hi all, thanks for the advice. I'm helping out a friend with this one and just realized my mistake - it's out of range so it defaults to the max value. The  Gets are going into routers so the value is capped at the number of outputs. He didn't put calculators in to subtract the base value to get within range. Not sure why it didn't work in my patch earlier, but probably user error too. Thank you all for taking the time to help! This is what happens when you are under the gun and it's late at night...