RV browse media in file system

Hey Viktor,

Sadly we don’t have an option out of the box to open files in finder, though it’s a great idea. I’ll put in a feature request to make this easier in the future.

Screening Room in RV is a rendered web page, so even though you wouldn’t be able to modify the Screening Room itself, you can add a custom plugin to RV. You can either modify the PlugIns/Mu/shotgun_review_app.mu to add a menu item to Shotgun menu in RV or you can add a separate menu. Both of these can be accomplished via an RV package

The easiest way to get media’s path that RV sees is to grab it from the Source node itself:

from rv import commands
frame = commands.frameStart()
sources = commands.sourcesAtFrame(frame)
print rvc.sourceMediaInfo(sources[0])
print rvc.sourceAttributes("RVFileSource")
fileNames    = commands.getStringProperty("%s.media.movie" % sources[0], 0, 1000)

Thanks,
Alexa

3 Likes