View Single Post
  #11  
Old 10-26-2012, 11:54 AM
peterpiper peterpiper is offline
Junior Member
 
Join Date: Sep 2011
Posts: 5
peterpiper is on a distinguished road
Default

Re: rtmpdump on linux


Something like this. Don't know why you want to start over each time instead of resuming with -e.

Code:
#!/bin/bash
STATUS=1
while [ STATUS -ne 0 ]
do
rtmpdump whatever.com/a -o a.flv STATUS=$?
done
Reply With Quote