• 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. Recent
    Log in to post
    • All categories
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • V

      Find contacts at Griffith UNI (Australia) and or Queensland
      Off-Topic Discussion • • Video Architect

      4
      0
      Votes
      4
      Posts
      631
      Views

      bonemap

      @video-architect

      Hi,

      I don’t recall any posts from Griffith, but I have done a few Isadora projects with staff from Griffith University Queensland Conservatorium. I don’t know of anyone there who uses Isadora.

      Best wishes,

      Russell

    • K

      [ANSWERED] Note On Watcher: Transform values
      How To... ? • • Konrad

      10
      0
      Votes
      10
      Posts
      876
      Views

      K

      @konrad said:

      @Woland

       

      Thank you! That's also a good solution to the problem :)

    • JJHP3

      [FIXED IN 4.0.9] Connecting Control IDs to Actors by dragging opens Property Inspector
      Troubleshooting and Bug Reports • • JJHP3

      6
      0
      Votes
      6
      Posts
      801
      Views

      JJHP3

      @woland GREAT! thanks - John

    • T

      [ANSWERED] Question about minimizing projector light bleed
      How To... ? • • TiffTiff

      20
      0
      Votes
      20
      Posts
      1818
      Views

      dbini

      @tifftiff

      your physical mask looks good, but you might want to test it over a longer time - as the projector warms up it might soften the glue on the tape, leading to some comedy sagging. 4500 lumens might also warm up the mask quite a lot - be careful you are not creating a fire risk.

    • O

      [ANSWERED] DMX out of Isadora using ETC Gadget?
      Hardware • dmx lights • • orozcom

      4
      1
      Votes
      4
      Posts
      369
      Views

      O

      Thanks, all.

      I did wind up going the OSC route. I haven't touched this material in a while, so it took a bit for my brain to adjust in the darkness.

      But, yes:

      In Isadora: OSC Transmitter to ETC Eos on the same Mac. Gadget is now outputting correct DMX as tested via a DMX tester. Fabulous!

      Final hurdle was switching the OSC transmitter to "on" in Isadora.

      Thanks for the support!

    • Mr_J

      auto load videos into bin picker using tags
      How To... ? • • Mr_J

      2
      0
      Votes
      2
      Posts
      219
      Views

      Woland

      @mr_j

      Unfortunately, I do not think you will be able to dynamically sort and search for media in such a complex way (using text parsing to build a database) without any code at all.

      If you have a set amount of media with tags and nothing is changing about that, you can manually import media into bins based on what tags a file has (any file with more than one tag would be imported into multiple bins, which is fine). You could do this manually, by hand, without code, but not dynamically without code. When you get additional media you'd just import it into each bin that it has a tag for.

      @mr_j wrote:

      1. add tags to 500+ video file names e.g. "Cyborgs in the Year 2050 #square #red #robot.mov"

      You'd need to add the tags manually anyway, but once you did you'd be able to use the Get Media File Name actor to find which media has which tags. In order to store and recall the resulting lists, you'd need Javascript or Python to make a database. I have a patch that does something similar, but it was a paid commission so I'm not at liberty to share it. This is the basics of how to cycle through your media searching for tags though:


      Anytime you get a true trigger for a specific file name with a specific tag, you'd trigger a Trigger Text and a Trigger Value to push that media's name and index into a database containing a list of media for that specific tag. You need this to cycle through all your media once per tag so you record the media matches for that tag in a database. Either way, that "Text Comparator Expanded" User Actor of mine that relies on Javascript to search the incoming text for a set string of characters relies on code, so there's already code involved in this solution (though not code you have to write yourself).

      parsing-media-files-for-tags-2025-02-14-4.0.9.izz

      @mr_j wrote:

      2. import 500+ video files into video bin

      Importing media to specific video bins programmatically can be done on macOS using AppleScript: https://support.troikatronix.com/support/solutions/articles/13000093597-isadora-and-applescript

      Python can be used to run AppleScript, so that's how you'd made the AppleScript dynamically target specific video bins.

      @mr_j wrote:

      3. type/enter or toggle select required tags within control interface

      This is searching a database using the Edit Text control, for which you need to have first done dynamic text-parsing and database building. You want to search for tags in the file names of all your media and get media index numbers back. This relationship between the contents of a file name and the media index of that file requires a database of some sort. You could build such a database in a Data Array actor (by storing everything in a Data Array actor as JSON and searching every entry, parsing the JSON, and then making a smaller temporary database of the matches), but it would be very complex and still require at least JavaScript code for various parts of the logic.

      @mr_j wrote:

      4. auto load relevant video files matching selected tags into "bin picker"
      5. retype or toggle tags to automatically re-sort video files displayed in "bin picker"

      The only way I can think to do this would be to make a bin for each tag and dynamically or manually import media with that tag into that bin, then the Bin Picker can let you pick which bin to select. Then any bin selected would only contain videos with that tag. So it's not doing the sorting for you, but it's a way to navigate media that you've sorted yourself. It would only be possible to display one tag's worth of media at a time per control though; you couldn't display multiple tags worth of media unless you had multiple Bin Picker controls going and manually selected which bin each one was focused on. (So if you had 4 Bin Picker controls and 100 tags, you could pick any four tags to show at a time, one tag per control.)

    • J

      [ANSWERED] Send midi over LAN
      How To... ? • • jedlag

      7
      0
      Votes
      7
      Posts
      498
      Views

      Armando

      @jedlag Someone build a cabled for me in 2006 midi in (1m to XLR. 50 m of XLR and then another xlr to Midi. It worked superwell

    • E

      [ADDED in 4.0.9] Rokoko Gloves
      Feature Requests • • emullis

      6
      1
      Votes
      6
      Posts
      993
      Views

      Armando

      @wolandI saw that  Thanks. And I'll test them with the next mocap system we are buying, " The Captury" so I can also do a comparative test

      The Captury" " markerless with hands an facial expression and multiuser. Plus it streams OSC NATIVELY!!!!

    • Notdoc

      [SEEMS TO BE ABLETON ISSUE] Isadora not rendering Syphon feed from Ableton Videosync
      Interfacing • • Notdoc

      11
      0
      Votes
      11
      Posts
      731
      Views

      S

      Which version did you try of videosync ?  I can receive in Max with the try version, but i can't send it from Max ....

      I believe the try version of videosync doesn't work perfect with syphon

    • M

      Serial in watcher - Binary
      How To... ? • • Milky301

      5
      0
      Votes
      5
      Posts
      312
      Views

      M

      Hello @dusx

      I have attach a viedo of how jumper the values are with both of the codes; this is without anything in front of the sensor. Is this normal? Do I have to add more to Isadrao to get the number more accurate?

    • postl

      [ANSWERED] auto re-open Isadora on crash when computer does not crash
      How To... ? • installation • • postl

      5
      1
      Votes
      5
      Posts
      344
      Views

      Woland

      @postl

      I just turned this into an Add-On: https://troikatronix.com/add-ons/auto-re-launch-isadora-macos-applescript-for-installations/

      It's basically the exact same as what I have here but I also provided the link to my macOS Isadora Production Computer Setup Guide

    • D

      Qlab and Isadora
      Troubleshooting and Bug Reports • qlab • • DG22

      4
      0
      Votes
      4
      Posts
      311
      Views

      Woland

      @DG22 

      If you post the patch I can analyze it and probably tell you why it's happening.  

    • gapworks

      [ANSWERED] Read from a text file
      How To... ? • • gapworks

      13
      0
      Votes
      13
      Posts
      728
      Views

      mark_m

      @woland


      ah yes, that’s a little more elegant! Thank you!

    • T

      more than 4 video inputs? (redux)
      How To... ? • • thatmattrogers

      14
      0
      Votes
      14
      Posts
      1674
      Views

      Fred

      @dusx just a catch in this - to use 4 hd inputs from a quad hd 4K input all the Sdi signals need to be in sync with a video reference signal. Cameras or video output devices that have a video ref input are usually pro level and quite expensive.

    • I

      [ANSWERED] Creating an Interactive Video Booth – Pre-recorded Questions & Response Capture
      How To... ? • • ignitesomerset

      9
      1
      Votes
      9
      Posts
      680
      Views

      I

      @woland This is incredible! Thank you for all your time and knowledge, I really appreciate it. It works really really well, i've had a lot of fun creating and answering questions during my tests. 

    • M

      ​[SOLVED, MEDIA FORMAT ISSUE] can't modify any scene wo overwriting all other
      Troubleshooting and Bug Reports • • markelinus

      20
      0
      Votes
      20
      Posts
      781
      Views

      Woland

      @mark_m said:

       What's the bug? That Isadora doesn't like H265?

      Yes, or that it doesn't like something else specifically about these particular h265.mp4 video files (though h265 is most likely the source of the issue in my opinion). Either way, I now have media and clear repro steps to cause the problem, which made it easy for me to log this issue.

    • andielloyd

      [ANSWERED] Resolution Drop when using Alpha Mask in Isadora 3.2.6
      Troubleshooting and Bug Reports • help • • andielloyd

      3
      0
      Votes
      3
      Posts
      317
      Views

      Woland

      @andielloyd

      I realize this doesn't come in time for your show, but the third Scene of this file might be helpful in understanding how to preserve higher resolutions when mixing content together:

      patch-preserving-resolution-2023-10-20-3.2.6.zip

    • R

      Movie player stops looping intermittently
      Troubleshooting and Bug Reports • movie player frozen bug report • • Reload2024

      9
      0
      Votes
      9
      Posts
      583
      Views

      R

      @dusx With the videos all the settings are default I'm just enabling looping and turning the sound down to nothing.  I'm not sure offhand what Isadora subversion I'm using but I'll check when I'm at work tomorrow and upgrade if necessary and if it happens again I'll let you know.

    • J

      [ANSWERED] Portrait Mode Mapping
      How To... ? • • johnhorzen

      2
      0
      Votes
      2
      Posts
      212
      Views

      Woland

      @johnhorzen

      I don't know why this only showed up as unread for me today, but adding multiple displays to the same Stage can be done with the little "+" button just above Stage Settings in Stage Setup. If you then drag the different displays around within the Stage, anywhere they overlap it should automatically handle the edge-blending for you.

      Gif: https://jmp.sh/L3j7UYBL

      If you are doing edge-blending, these User Actors of mine might also be useful for calculating how many pixels of overlap you want to have (generally around a 20% overlap is ideal): 

      blend-resolution-calculator.iua4

      blend-resolution-calculator-2-display.iua4

      blend-resolution-calculator-h-and-v.iua4 

      This tutorial of mine on how to put User Actors into your Global User Actor folder so you can use them in any project was made for Isadora 2, but the process is still basically identical: https://lucaswilsonspiro.wordpress.com/2017/08/28/isadora-set-global-user-actors-folder/

      If you're not doing edge-blending, you can just add multiple displays to the same Stage as shown in the gif, but instead of overlapping them, you can just butt them up against each other at their edges so they have no overlap. Then, when you open IzzyMap for that Stage, you'll have a Stage that encompasses all three displays for mapping purposes.

    • andielloyd

      Live Capture flickering/flashing
      Troubleshooting and Bug Reports • live capture live camera live feed • • andielloyd

      8
      0
      Votes
      8
      Posts
      498
      Views

      DusX

      @andielloyd said:

      It is a cable that has an option for a power boost

       Definitely try a power boost, and if that isn't available/working, try adding a small powered usb hub to the end of the 30ft cable and plug the camera into that (it will provide the power needed), that generally works.