ffmpeg

concat FFmpeg has three concat methods. concat protocol ffmpeg -i 'concat:input1|input2' -codec copy output concat video filter ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv \ -filter_complex '[0:0] [0:1] [1:0] [1:1] [2:0] [2:1] concat=n=3:v=1:a=1 [v] [a]' \ -map '[v]' -map '[a]' output.mkv concat demuxer $ cat mylist.txt file '/path/to/file1' file '/path/to/file2' file '/path/to/file3' $ ffmpeg -f concat -i mylist.txt -c copy output Which one to use concat protocol: use with formats that support file level concatenation (MPEG-1, MPEG-2 PS, DV)....

rtmpsrv

rtmpsrv allows you to get all parameters that are required by rtmpdump. You don’t need packet sniffers or complex analysis to use rtmpdump when using rtmpsrv. The only problem you may have is when a video consists of several segments (chapters). In such cases just skip to the next chapter. How to compile rtmpdump with rtmpsrv and rtmpsuck in Linux: svn checkout svn://svn.mplayerhq.hu/rtmpdump/trunk rtmpdump cd rtmpdump make linux How to use rtmpsrv in Linux: Configure your firewall to redirect RTMP traffic through a local port:...