I'm successfully overlaying videos using the following parameters, in this case centering the overlayed video
_ffmpeg.parameters=['-i', _bkgdVid, '-i', _overVid, '-y', '-filter_complex', 'overlay=(main_w-overlay_w)*.5:(main_h-overlay_h)*.5', '-acodec', 'aac', '-strict', '-2', _destVid];
But what I need to do is BOTH overlay AND time shift the overlayed video.
This is what I have tried most recently
_ffmpeg.parameters=['-i', _bkgdVid, '-i', _overVid,'-itsoffset','2','-y', '-
filter_complex','overlay=(main_w-overlay_w)*.5:
(main_h-overlay_h)*.5', '-acodec','aac','-strict',
'-2', '-map', '1:0', '-map' ,'0:1',_destVid];
And this is the error message ERROR - Data stream encoding not supported yet (only streamcopy)
Can anyone help? Is this even possible(overlay AND time shifting?