How to download multiple rtmpdump urls (OSX or Windows)1 Attachment(s)
Hi Guys,
I have a question about downloading multiple rtmpdump url's. I've created a text file with rtmpdump links, see attachment. I can download each file separately via terminal, that work flawless, but it takes much time. I'm talking about 100 url's. Is there a way to download all urls automatically? I've tried rtmpdump GUI (Mac OSX) but I always get errors like "wrong protocol" and so on. Maybe there are alternative ways to do it. edit: a solution for Windows would be great too. thank you guys! Alex |
Re: How to download multiple rtmpdump urls (OSX or Windows)Quote:
If you STOP posting illegal crap, and OBEY our rules - you're welcome to stay - but I just don't see that happening with you. |
Re: How to download multiple rtmpdump urls (OSX or Windows)I have the answer:
![]() |
Re: How to download multiple rtmpdump urls (OSX or Windows)Quote:
#!/bin/bash and change permissions by running from terminal chmod o+x <filename> Hope such article helps. |
Re: How to download multiple rtmpdump urls (OSX or Windows)thank you for your response. I added the line #!/bin/bash on top and below I listet the "Commands". It looks like this
#!/bin/bash rtmpdump -r "rtmpe://sample.rtmphost.com/blog" -y "blog82a" -s "http://www.gregplitt.com/sample/membersvideos/workouts/mwplayer.swf" -o sample.flv I tried to make it bootable and I think it worked but I dont get it how to run this file. I also dont know how to implement the start of the app it self. Basically the bash-file need to open the app "rtmpdump" which is located on my desktop, then it needs to execute the commands. im sorry, but I never created batch files terminal. :confused: |
Re: How to download multiple rtmpdump urls (OSX or Windows)Quote:
Regarding binaries folder please read. And please someone who has more skills in Mac OSX help here as well. |
Re: How to download multiple rtmpdump urls (OSX or Windows)why use -W instead of -s? If I use -W i receive an swf error.
|
Re: How to download multiple rtmpdump urls (OSX or Windows)The parameter "-s" is kind of outdated because it doesn't calculate the hash and size automatically. You would have to use the "-w" and "-x" parameter as well. Therefore you would have to calculate these values manually. The parameter "-W" does all that.
Code:
--swfhash|-w hexstring SHA256 hash of the decompressed SWF file (32 bytes) Code:
--swfUrl|-s url URL to player swf file So for Windows you can try 3 alternative ways of creating a batch download: Alternative 1: # BatchDL.bat Code:
@echo off Create one main batch and one batch for every single video you want to download. #Main Batch (Main.bat) Code:
@echo off Code:
@echo off #Main Batch (Main.bat) Code:
@echo off Code:
@echo off |
Re: How to download multiple rtmpdump urls (OSX or Windows)when I use -W I receive an error, when I use -s everything works flawless, the dumped flv's are working perfect with VLC.
Just to make sure, I will post the exact error tonight when im back home. The shell is working now, I did it like this: #! /bin/sh cd ~/Documents ./rtmpdump -r "rtmpe://beispiel.rtmphost.com/workouts" -y "neverb" -s "http://www.beispiel.com/workouts/mwplayer.swf" -o neverb.flv ./rtmpdump -r "rtmpe://beispiel.rtmphost.com/workouts" -y "abab" -s "http://www.beispiel.com/workouts/mwplayer.swf" -o abab.flv ./rtmpdump -r "rtmpe://beispiel.rtmphost.com/workouts" -y "nlola" -s "http://www.beispiel.com/workouts/mwplayer.swf" -o nlola.flv ./rtmpdump -r "rtmpe://beispiel.rtmphost.com/workouts" -y "kavar" -s "http://www.beispiel.com/workouts/mwplayer.swf" -o kavar.flv |
Re: How to download multiple rtmpdump urls (OSX or Windows)Quote:
|
All times are GMT -6. The time now is 12:44 PM. |