View Single Post
  #2  
Old 10-13-2012, 11:16 PM
svnpenn svnpenn is offline
Banned
 
Join Date: Apr 2011
Location: Dallas
Posts: 757
svnpenn is on a distinguished road
Default

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
Reply With Quote