0

multiple image sequences to h264

I'm currently using the following command to create a preview of all my image sequences in a folder: 

rvio -v *.exr -codec x264 -outparams x264_i_bitrate=25000000 -scale 0.50 -outgamma 0.4f -outsrgb -o preview.mp4

What this does is basically edit all the frames into one movie. Is it possible to have a move per image sequence that lives in the same directory ? What i have right now is:

beauty_filename_####.exr

alpha_filename_####.exr

depth_filename_####.exr

etc, in one folder but would like to get individual movie files for each of those sequences. 


1 comment

  • 0
    Avatar
    Jon Morley

    Hi D2,

    There is no way at present to create three different movies like that in one command. You will need to run three successive commands. Something like...

    rvio -v beauty_*.exr -codec x264 -outparams x264_i_bitrate=25000000 -scale 0.50 -outgamma 0.4f -outsrgb -o preview.mp4

    rvio -v alpha_*.exr -codec x264 -outparams x264_i_bitrate=25000000 -scale 0.50 -outgamma 0.4f -outsrgb -o preview.mp4

    rvio -v depth_*.exr -codec x264 -outparams x264_i_bitrate=25000000 -scale 0.50 -outgamma 0.4f -outsrgb -o preview.mp4

    Have you tried something like that?

    Thanks,

    Jon

Please sign in to leave a comment.