0

RV 3.12.20 : Querying stereo input paths in Mu ?

Hi,

  I am currently loading stereo sequence via the following

rv -stereo anaglyph [ /<path>/images.left.98-175#.dpx /<path>/images.right.98-175#.dpx ]

  From within RV, I wish to spawn another application for which I'd like to supply both paths (left,right)

  What is the correct way to query those left, right paths from within RV with Mu ? (Existing code infrastructure are all in Mu so no plans to start Python development to replicate the tool)

  I have attached a screen shot of the current Mu code and how the RVSource are present in the RV session itself, hope that provides a clearer picture.

Cheers




RV_Stereo_Query.png

3 comments

  • 0
    Avatar
    Nicholas Yue

    For now, I have figure out this approach. Let me know if this is not a good way.

     

            let file_sources = getStringProperty("#RVFileSource.media.movie");
        for_each ( file; file_sources)
            {
                print ( "file = %s in file_sources\n" % file );
            }

  • 0
    Avatar
    Jon Morley

    Hi Nicholas,

    That is a perfectly valid approach to accessing the media paths for a given file source. Is that working for you?

    Thanks,
    Jon

  • 0
    Avatar
    Nicholas Yue

    Yes. It is working.

    Cheers

     

Please sign in to leave a comment.