cgtuebingen / pointcloud-viewer

Efficient Large-Scale Point-Cloud Viewer based on OpenGL
http://pointcloudviewer.org
GNU General Public License v3.0
80 stars 27 forks source link

Call ffmpeg to merge images int video file #10

Closed Robert42 closed 4 years ago

PatWie commented 6 years ago

Is a PIPE to

command = [
            'ffmpeg',
            '-y',  # overwrite output file if it exists
            '-f', 'rawvideo',
            '-s', '%dx%d' % (width, height),  # size of one frame
            '-pix_fmt', 'rgba',
            '-r', str(fps),  # frames per second
            '-i', '-',  # The input comes from a pipe
            '-an',  # Tells FFMPEG not to expect any audio
            '-loglevel', 'error',
        ]
Robert42 commented 6 years ago

Thanks :)