fluent-ffmpeg / node-fluent-ffmpeg

A fluent API to FFMPEG (http://www.ffmpeg.org)
MIT License
7.96k stars 881 forks source link

image2video slide time issue #586

Closed ugurgungezerler closed 8 years ago

ugurgungezerler commented 8 years ago

When i add -vf setsar=1:1 is working but zoompan=d=60 disabled i used zoompan=d=60 for slide time Please help me

var proc = new ffmpeg('./test/' + 0  + '/img%0d.jpg').format('mp4')
            .size('640x640')
            .autopad()
            .fps(23)
            .addOptions('-vf setsar=1:1')
            .videoFilter('zoompan=d=60')
            .videoCodec('libx264');

        .save(path + 'video' + '.mp4', function (retcode, error) {
            console.log('file has been converted succesfully');
        });

Regards

njoyard commented 8 years ago

Is this the same issue as #587 ? If so, please close this one :)

njoyard commented 8 years ago

Closing because no feedback, please reopen if necessary.