Audio/video stream recording forums
|
Attention Visitor: |
You may have to register or log in before you can post:
|
|
|
Thread Tools | Display Modes |
|
#1
|
|||
|
|||
rtmpdump multiple videosIs there any tool that utilizes rtmpdump to allow multiple videos to be downloaded whether at once or in order?
|
#2
|
|||
|
|||
Re: rtmpdump multiple videosNot 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 |
Tags: multiple videos, rtmpdump |
Thread Tools | |
Display Modes | |
|
|