function sendGif4() {
let ffmpegCommand = '-y -i rtsp://192.168.1.224:554/user=admin_password=a23672367_channel=1_stream=0.sdp -t 0:00:15 -f mp4 -vcodec libx264 -pix_fmt yuvj420p -an -s 800x600 -r 1 /tmp/out4.mp4';
let ffmpeg = spawn('ffmpeg', (ffmpegCommand).split(' '), {});
ffmpeg.on('close', function(code) {
sendTo('telegram.0', '/tmp/out4.mp4');
});
return 'Отправлено'