how to loop avi files in ffmpeg (Debian 7)I am using Debian 7 with ffmpeg-dmo-1.0.10 installed within root folder. Within root I have also another folder which contains 2 .avi files (W1.avi and W22.avi)
I am using following command to stream W1.avi file: Code:
ffmpeg -i '/root/folder2/W1.avi' -acodec aac -vcodec libx264 -s 640x480 -preset medium -strict experimental -f flv rtmp://live.xyz.tv/app/a9085ebcedxxxxxxx83 Now I would like to add second file named W22.avi and make them both loop all the time. So what I have done, I created list.txt file with following content: Code:
file 'W1.avi' and then I tried to use following commend: Code:
ffmpeg -f concat -i '/root/folder2/list.txt' -acodec aac -vcodec libx264 -s 640x480 -preset medium -strict experimental -f flv rtmp://live.xyz.tv/app/a9085ebcedxxxxxxx83 Code:
Unknown input format: 'concat' Thank you in advance, |
All times are GMT -6. The time now is 02:10 PM. |