So I had to find a free sequence player and make a python script for it.
I am using DJV Imaging (http://djv.sourceforge.net/), just download it and install it. I am using windows, so the exec file is here: C:/Program Files/DJV/bin/djv_view.exe
Here is the scipt:
- Code: Select all
# Runs the latest blast using the djv player.
# It looks for the latest PNG sequence in the temp folder.
RunJDV = "C:/Program Files/DJV/bin/djv_view.exe"
sequenceFormat = "png"
import glob
import os
import subprocess
import tempfile
path = tempfile.gettempdir() # gets the current temporary directory
list_of_files = glob.glob(path + '/*.' + sequenceFormat) # list all the files inside the temp folder
latest_file = max(list_of_files, key=os.path.getctime) # gets the last file
subprocess.call([RunJDV, latest_file, '-playback', 'forward']) # runs the player
Just execute the script and it will search for the latest file (png sequence) in the temp folder and play it. You won't be able to use Clarisse until you close it.
I hope you find this tool useful.
cheers! and congrats on this fantastic release!
-Luis