[FFmpeg-user] Unix Socket file using about

2016-11-23 Thread Hasan BAĞÇACI
Hi, I am using SDI card for video capture. I want to send video to socket file because i am using video different processes. How can I do this? Regards ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-user T

Re: [FFmpeg-user] how to send three flv files to rtmp server continuously

2016-11-19 Thread Hasan BAĞÇACI
Hi Andrew, You can use concat. i send link about this. https://trac.ffmpeg.org/wiki/Concatenate also i written example for three files below ffmpeg -i file1.flv -i file2.flv -i file3.flv -filter_complex "[0:v:0] [0:a:0] [1:v:0] [1:a:0] [2:v:0] [2:a:0] concat=n=3:v=1:a=1 [v] [a]" -map "[v]" -map

[FFmpeg-user] Unix Socket file using about.

2016-11-10 Thread Hasan BAĞÇACI
Hi, I am using SDI card for video capture. I want to send video to socket file because i am using video different processes. How can I do this? Regards ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-user T

Re: [FFmpeg-user] how to stream several video files with ffmpeg

2016-11-09 Thread Hasan BAĞÇACI
Hi You can use concat for multi files stream not any latency. I send link and command below. this link Regards Hasan https://trac.ffmpeg.org/wiki/Concatenate ffmpeg -i input1.mp4 -i input2.webm \ -filter_complex "[0:v:0] [0:a:0] [1:v:0] [1:a:0] concat=n=2:v=1:a=1 [v] [a]" \ -map "[v]" -map "[