0

Possible to have one or more "black frames" between two image sequences?

Hi!

I have a script that puts together timelines using RV (and rvio) from the command line. And I just stumbled upon the scenario that one shot might not have an image sequence yet but I do know how many frames it should be. Is there any easy way to have "black frames" during a specified amount of frames before next image sequence begins? I tried to search for this but could not find anything.

Using RV 3.10.10


Thanks in advance!

4 comments

  • 0
    Avatar
    Seth Rosenthal

    Hey Andreas,

    Yes there is a way to do that. It's actually one of my favorite little-known features of RV/RVIO.  You can use our procedural image/sequence format called movieproc.

    You can read the details in the RV User's Manual chapter 12.1.7: http://www.tweaksoftware.com/static/documentation/rv/current/html/rv_manual.html#toc-Subsection-12.1.7

    If you give RV or RVIO a file or sequence name ending in the extension '.movieproc' the name will be interpreted as instructions for generating an image sequence. The file does not even have to exist on disk, you can just pass the name in in a command line or put it in an .rv session file.

    So for example:

    >> rv solid.movieproc

    Will launch RV with a single black frame of default size. You can use additional arguments to set the color, the resolution, the frame range, show smpte bars, and even add audio in the form of a sine wave.

    Here are some examples:

    100 Frames of HD res black frames:

    solid,start=1,end=100,fps=24,width=1920,height=1080.movieproc

    A single orange HD frame:

    solid,red=1,green=.5,blue=0,width=1920,height=1080.movieproc


    Smpte Color Bars with audio:

    smptebars,audio=sine,freq=1000,start=1,end=30,fps=30.movieproc

    Cheers,

    Seth

  • 0
    Avatar
    Andreas Ekoutsidis

    Wow, thanks for the quick answer Seth!

     

    It totally worked out as I wanted it. Thanks a lot! :D

  • 0
    Avatar
    Maria Vineeta

    Hi,

    I have a question on similar lines.
    Is it possible to hold a single frame of an mov, using a movieproc for n frames?

     

     

     

     

  • 0
    Avatar
    (Michael) Kessler

    Hi Maria,

    You can't achieve that with a movieproc, however, if you want to take complete control over the order of presented frames, you can manually take over the order and sequence of frames with the RVSequence node.

    http://www.tweaksoftware.com/static/documentation/rv/current/html/rv_reference.html#Chapter_6_RV_File_Format_Creating_a_Session_File_for_Custom_Review_RVSequence

    This allows you to double-up frames, omit frames, or even jump around frames (like a mulit-cut) if you so desired.  It is a bit more work than dropping in a new source, but it should give you complete control over the order of presented frames.

Please sign in to leave a comment.