• 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. zoom
    Log in to post
    • All categories
    • Juriaan

      Introducing IzzyCast! Meet us at IBC
      TroikaTronix Announcements • izzycast zoom live events broadcast • • Juriaan

      2
      3
      Votes
      2
      Posts
      866
      Views

      DusX

      We have posted a new FAQ to help answer any questions you might have.

    • liminal_andy

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

      2
      6
      Votes
      2
      Posts
      742
      Views

      Armando

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

    • liminal_andy

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

      1
      2
      Votes
      1
      Posts
      438
      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...

    • R

      [ANSWERED] Audio to Zoom?
      How To... ? • zoom audio sound sound routing virtual theatre • • RL

      3
      0
      Votes
      3
      Posts
      974
      Views

      R

      @liminal_andy

      thank you. I cannot try it out directly right now, because the PC is stationed in an isntallation space. Just to understand you right, VB is acutally something like "soundflower" on Mac? So I route all outgoing sound of isadora to that, and use it as input in Zoom? That way I wouldn't be able to hear the sound myself on my speakers, right?

    • Woland

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

      2
      2
      Votes
      2
      Posts
      572
      Views

      liminal_andy

      @woland Super useful, thanks so much

    • liminal_andy

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

      10
      0
      Votes
      10
      Posts
      2308
      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
      1040
      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
      350
      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
      1179
      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!

    • 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
      728
      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

    • liminal_andy

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

      18
      0
      Votes
      18
      Posts
      2814
      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
      1788
      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
      991
      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
      1570
      Views

      J

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

    • L

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

      3
      0
      Votes
      3
      Posts
      649
      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
      1365
      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
      1058
      Views

      liminal_andy

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

    • Woland

      Zoom Layout Templates and Audio Assets
      Third Party Software • zoom zoomosc syphon virtual webcam remote • • Woland

      3
      5
      Votes
      3
      Posts
      878
      Views

      Kathmandale

      @Woland a great little resource, thanks so much for sharing.

    • liminal_andy

      Zoom/ZoomOSC Live Gallery ISO Feed Simulator
      Third Party Software • glsl shader osc user actor zoomosc zoom • • liminal_andy

      5
      4
      Votes
      5
      Posts
      1268
      Views

      liminal_andy

      @woland I need to make some updates to it, and then I will make it available! Poke me if I don't :)

    • L

      [LOGGED] Keying Head & Shoulders like in zoom & skype
      Feature Requests • background virtual virtual theatre zoom skype • • liannemua

      12
      0
      Votes
      12
      Posts
      2084
      Views

      liminal_andy

      So the following is purely for fun in response to @mark 's post imagining how this would be done. I did follow up on this over the weekend and got something "working"

      I heavily modified the project I mentioned earlier by manually rolling it over to the Tensorflow Lite c_api (a real pain!), then porting it to Windows, and feeding it the deeplabv3_257_mv_gpu.tflite model. To make it useful to Isadora, I dusted off / updated an openCV to Spout pipeline in c++ that I used a few years ago for some of my live projection masking programs, so now my prototype can receive an Isadora stage, run it on the model, and output the resulting mask to Spout again for Isadora to use with the Alpha Mask actor. 

      My results:

      Now obviously, this is insane to actually attempt for production purposes in its current form. I'm getting about 5fps (granted no GPU accelerated and I'm running in debug mode). I could slightly improve things by bouncing back the original Isadora stage on its own spout server, but this is just a proof of concept. In this state, it should be relatively easy to port to Mac/Syphon and add GPU acceleration on compatible systems for higher FPS and / or multiple instances for many performers. 


      Again, just a fun weekend project but I found it very educational.