2026-06-30
12 min read
Overview#
Media Browser - browse asset and shot media versions from the Prism project.
Playlists - open Prism review playlists and play selected media as RV sequences.
Notes - view and write project-management notes for the currently displayed media version.
Project Browser - open the full Prism Project Browser from inside RV.
Timeline - reorder the currently loaded RV sources, switch versions, disable clips, and publish the sequence to OTIO.
Search Versions - search media versions across the project and drag them into RV or the Timeline panel.
Open RV executables
The source code of Open RV is available on GitHub. At the time of writing there is no official Open RV executable available. Because of legal concerns Prism cannot provide a public Open RV executable. For help with building Open RV or related questions, please contact Prism support.
Setup#
Prism User Settings > DCC apps > Open RV > Addsetup.bat script in the Prism installation directory.Note
The default RV user preferences folder on Windows is %APPDATA%/RV. This folder is usually created when RV is launched for the first time. You can also create it manually before adding the Prism integration.
Accessing Prism in Open RV#
Open Media Browser... - opens the Prism Media Browser as an RV dock panel.
Open Playlists... - opens Prism review playlists in RV. This requires the Project Management plugin.
Open Notes... - opens notes and media-version status information for the current media. This requires the Project Management plugin.
Open Project Browser... - opens the regular Prism Project Browser.
Open Timeline... - opens the Prism Timeline panel for the current RV view.
Open Search Versions... - opens the Search Versions panel for finding and loading media versions.
Media Browser#
Available context options are:
+1 through +5 - load the selected shot with neighboring shots from the same sequence.
Sequence - load all shots from the current sequence.
Project - load all shots from the project.
Playlists#
Notes and Annotations#
No Attachment - create the note without attaching an image.
Attach Current Image - export the current RV frame and attach it to the note.
Attach All Annotated Images - export all frames that contain RV annotations and attach them to the note.
View Image - open the exported image attachment.
Open in current RV session - load the saved RV session into the current RV session.
Open in new RV session - open the saved RV session in a new RV session.
Prism Timeline#
Prism > Open Timeline...Refresh - rebuilds the panel from the current RV source graph.
Publish - exports the current timeline to an OTIO file.
Switch Identifier - switch selected items to another media identifier, using the latest matching version.
Switch Version - switch selected items to another available version.
Copy Path - copy the selected media paths to the clipboard.
Open in Explorer - reveal selected media paths in the file explorer.
Disable / Enable - toggle whether selected sources are active in RV playback.
Delete - remove selected items from the Timeline panel and RV sequence.
Search Versions#
Prism > Open Search Versions...Control |
Description |
|---|---|
Search |
Filters the listed versions by text. |
Shot |
Limits the search to a specific shot or shows versions from all shots. |
Identifier |
Limits the search to a specific media identifier for the selected shot. |
Latest Versions Only |
Shows only the latest version of each matching media product when enabled. |
Limit |
Controls the maximum number of results shown in the panel. |
Play Selected - load the selected result in RV.
Open in Explorer - open the folder of the selected media version.
Copy Path - copy selected media paths to the clipboard.
Refresh - run the search again.
OpenTimelineIO#
Exporting the Timeline to OTIO#
To Sequence: <sequence> - save the OTIO file as a Prism product under that sequence, using the Edit task and the
.otioextension.Custom... - choose a custom output path in a save-file dialog.
.otio and .json output. If no supported extension is entered, Prism adds .otio automatically.Open in Product Browser... - open the exported version in the Prism Product Browser.
Open in Explorer... - reveal the exported file in the file explorer.
Copy Path - copy the exported file path to the clipboard.
Copy - copy the exported file contents when
PRISM_COPY_FILE_CONTENTis set to1.
Importing OTIO Files#
.otio product version from the Project Browser..otio file is imported, Prism reads the timeline into RV. If the Prism Timeline panel is open, it refreshes automatically to show the imported timeline items.Color Management#
PRISM_RV_MANAGE_OCIO environment variable..exr,.hdr, and.dpxmedia use the project OCIO working space when available, otherwiseACEScg.Other media defaults to
Rawinput.Scene-linear media defaults to
sRGB - DisplayandACES 1.0 - SDR Videooutput.Other media defaults to
sRGB - Displaywith aRawview.
PRISM_RV_MANAGE_OCIO to 0 before launching RV.Settings and Environment Variables#
Variable / Setting |
Default |
Description |
|---|---|---|
|
RV default |
Standard RV environment variable for loading packages from a custom or shared location. This can be used to load the Prism Open RV integration from network storage. |
|
Required by integration |
Path to the Prism installation. The RV package uses this to locate Prism's |
|
|
Set to |
|
|
Set to |
|
|
Set to |
|
|
Set to |
|
|
Controls the copy action in OTIO export Output Options. |
Adding Prism Integration Using Environment Variables#
Python/prism.py file with the following content:import os
import sys
def createMode():
os.environ["PRISM_ROOT"] = "C:\\Program Files\\Prism2"
rvPlugin = "C:\\ProgramData\\Prism2\\plugins\\OpenRV"
sys.path.append(rvPlugin + "/Scripts")
from Prism_OpenRV_Mode import PrismMode
return PrismMode()
PRISM_ROOT and rvPlugin to match the Prism installation and Open RV plugin location in your studio.Compatibility and Requirements#
Frequently Asked Questions#
Why does the Prism menu not appear in RV?
Make sure the Prism integration was added to the RV user preferences folder, usually %APPDATA%/RV on Windows. You can add it from Prism User Settings > DCC apps > Open RV > Add or from the Prism installer. Then restart RV and check the Packages tab in the RV Preferences window.
Why do Playlists or Notes not open?
These panels require the Prism Project Management plugin. The Notes panel also requires a project manager to be set up in the current Prism project. If no active Prism license is available, Prism will also block opening the dockable review panels.
Which RV Python versions are supported?
Prism supports RV builds using Python 3.9, 3.10, 3.11, or 3.13. Other RV Python versions are not supported by the plugin.
How can I open Timeline or Search Versions automatically when RV starts?
Set PRISM_RV_OPEN_TIMELINE to 1 to open the Prism Timeline panel on startup. Set PRISM_RV_OPEN_SEARCH_VERSIONS to 1 to open the Search Versions panel on startup. If you also want Prism to initialize immediately when RV starts, set PRISM_RV_LOAD_ON_STARTUP to 1.
How do I export an OTIO file from RV?
Open Prism > Open Timeline... and click the Publish button in the Timeline panel. Choose To Sequence: <sequence> when available, or choose Custom... to select a file path manually.
Why does OTIO export show Copy Path instead of Copy?
By default, the OTIO Output Options menu copies the exported file path. Set PRISM_COPY_FILE_CONTENT to 1 before launching RV if you want the menu to copy the exported file contents instead.
How can I load the Open RV plugin from a shared network location?
Use RV's RV_SUPPORT_PATH environment variable and point it to a shared folder that contains a Python/prism.py file. The prism.py file should set PRISM_ROOT, append the Open RV plugin Scripts folder to sys.path, and return PrismMode() from createMode().
How can I disable Prism OCIO management in RV?
Set PRISM_RV_MANAGE_OCIO to 0 before launching RV. Prism will then stop managing RV OCIO setup for the Open RV plugin.
Can Prism provide an Open RV executable?
No public Open RV executable is provided by Prism. The Open RV source code is available from the Academy Software Foundation on GitHub, but because of legal concerns Prism cannot distribute a public executable. Contact Prism support for help with building Open RV or related questions.
Copyright of project images shown in screenshots belongs to Fleng Entertainment & Tumblehead
![[Logo: Open RV]](../../_static/banner_logos/openrv_logo.png)