• Isadora
  • Get it
  • Forum
  • Help
  • ADD-ONS
  • Newsletter
  • Impressum
  • Dsgvo
  • Impressum
Forum
    • Categories
    • Recent
    • Popular
    • Tags
    • Register
    • Login
    1. Home
    2. Tags
    3. zoomosc
    Log in to post
    • All categories
    • liminal_andyL

      Making Graphics from Zoom Chat

      Showcase
      • zoom zoomosc streaming events • • liminal_andy
      2
      6
      Votes
      2
      Posts
      369
      Views

      ArmandoA

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

    • peuclidP

      example streaming theatre with isadora, zoomosc, qlab

      Showcase
      • theatre zoomosc • • peuclid
      2
      3
      Votes
      2
      Posts
      312
      Views

      bonemapB

      @peuclid

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

      Best wishes

      Russell

    • liminal_andyL

      ZoomISO is now available!

      Third Party Software
      • ndi syphon zoom zoomosc • • liminal_andy
      1
      2
      Votes
      1
      Posts
      256
      Views

      liminal_andyL

      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...

    • WolandW

      User Actor Text Comparator (useful for ZoomOSC Chat Parsing)

      Showcase
      • osc zoomosc user actor zoom virtual theatre • • Woland
      2
      2
      Votes
      2
      Posts
      311
      Views

      liminal_andyL

      @woland Super useful, thanks so much

    • WolandW

      How to Generate a Word Cloud from Chat

      How To... ?
      • glsl shader text draw zoomosc virtual theatre javascript • • Woland
      4
      2
      Votes
      4
      Posts
      575
      Views

      DusXD

      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_andyL

      [ANSWERED] Building a Decider Actor

      How To... ?
      • zoom zoomosc osc control virtual theatre • • liminal_andy
      10
      0
      Votes
      10
      Posts
      858
      Views

      WolandW

      @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_andyL

      [LOGGED] Max JavaScript Actor Outputs Increase

      Feature Requests
      • javascript zoomosc osc zoom virtual theatre • • liminal_andy
      8
      1
      Votes
      8
      Posts
      456
      Views

      markM

      @peuclid

      ❤ 😉

    • liminal_andyL

      Zoom Test Kitchen - A Weekly Place to Test Zoom

      Events
      • resources zoom zoomosc osc virtual theatre • • liminal_andy
      1
      4
      Votes
      1
      Posts
      219
      Views

      liminal_andyL

      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
      583
      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!

    • ArmandoA

      ​IMEDIAÇÕES Teleperformance (Isadora, ZoomOSC, Loopback, Bitfocus Companion)​

      Events
      • show teleperformance zoomosc • • Armando
      6
      2
      Votes
      6
      Posts
      596
      Views

      ArmandoA

      @bennnid

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

    • liminal_andyL

      [LOGGED] Allow Custom (or Selectable) Delimiter for Text Accumulator

      Feature Requests
      • zoom zoomosc virtual theatre control javascript • • liminal_andy
      2
      2
      Votes
      2
      Posts
      323
      Views

      WolandW

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

      Best wishes,

      Woland

    • ArmandoA

      ZoomOSC Supersource Isadora user actors

      Interfacing
      • supersources user actor zoomosc • • Armando
      15
      1
      Votes
      15
      Posts
      935
      Views

      ArmandoA

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

    • liminal_andyL

      Dynamic List Control

      How To... ?
      • control zoom zoomosc control panel virtual theatre • • liminal_andy
      18
      0
      Votes
      18
      Posts
      971
      Views

      markM

      @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_andyL

      Bring Zoom Chat and Events into Isadora

      Interfacing
      • osc zoomosc zoom virtual theatre text • • liminal_andy
      8
      7
      Votes
      8
      Posts
      761
      Views

      ArmandoA

      @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_andyL

      Automatic Lower Thirds with Isadora and ZoomOSC 4

      Showcase
      • alpha channel osc zoomosc zoom virtual theatre • • liminal_andy
      4
      4
      Votes
      4
      Posts
      495
      Views

      tlalocT

      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
      765
      Views

      J

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

    • ArmandoA

      [SOLVED] ZoomOSC and EpocCam Driver Incompatibility

      Troubleshooting and Bug Reports
      • epoccam zoomosc • • Armando
      5
      0
      Votes
      5
      Posts
      508
      Views

      ArmandoA

      @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
      400
      Views

      liminal_andyL

      @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
      466
      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...

    • W

      Green Screen Background and Screen Capture to Broadcaster

      How To... ?
      • zoomosc zoom green screen chroma key virtual theatre • • witmac
      4
      0
      Votes
      4
      Posts
      434
      Views

      liminal_andyL

      @witmac Yep this is all good. Eventually, we could work around the remote controlled DMX dynamic lighting issue hurting the key parameters with global values or broadcasters/listeners that could talk to the utility scene from any other scene. I tend to build landing points on a per-scene basis to adjust my keys by building a set of user actors for keying. I also bolt on a midi controller so I can adjust key params on the fly with "analog" input.