Audio/video stream recording forums (http://stream-recorder.com/forum/index.php)
-   rtmpdump (http://stream-recorder.com/forum/forumdisplay.php?f=54)
-   -  

rtmpdump multiple videos

(http://stream-recorder.com/forum/showthread.php?t=14024)

jmersh 10-13-2012 02:42 PM

rtmpdump multiple videos


 
Is there any tool that utilizes rtmpdump to allow multiple videos to be downloaded whether at once or in order?

svnpenn 10-13-2012 10:16 PM

Re: rtmpdump multiple videos


 
Not tested, but with Bash you should be able to do this

Code:

#!/bin/sh
# Concurrent downloading!
rtmpdump -r URL1 -o vid1.flv &
rtmpdump -r URL2 -o vid2.flv &
rtmpdump -r URL3 -o vid3.flv

# Sequential downloading!
rtmpdump -r URL1 -o vid1.flv
rtmpdump -r URL2 -o vid2.flv
rtmpdump -r URL3 -o vid3.flv



All times are GMT -6. The time now is 03:56 PM.