View Single Post
  #1  
Old 07-23-2016, 12:32 AM
arrache88 arrache88 is offline
Junior Member
 
Join Date: Jul 2016
Posts: 3
arrache88 is on a distinguished road
Default

Rtmpdump in loop for


Hello guys

Suppose I know that the following rtmpdump command works :

rtmpdump -r rtmp://5.10.77.106/hls-vod/links -a vod -W http://www.website.com/flowplayer-3.2.12.swf -p "http://www.website.com/" -y mp4:/links/number12.mp4 -o %fileName%

Now what I want to do to use loop for to find the working playlist like this :

Code:
FOR /L %%A IN (1,1,20) DO (
 rtmpdump -r rtmp://5.10.77.106/hls-vod/links -a vod -W http://www.website.com/flowplayer-3.2.12.swf -p "http://www.website.com/" -y mp4:/links/number%%A.mp4 -o %fileName%
)

I noticed when the counter reach number 12 , it doesnt start downloading why ?? please help me . I want look for correct playlist with loop for

Cheers
Reply With Quote