Audio/video stream recording forums
|
Attention Visitor: |
You may have to register or log in before you can post:
|
|
|
Thread Tools | Display Modes |
#1
|
|||
|
|||
How to download multiple rtmpdump urls (OSX or Windows)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 Last edited by key : 01-27-2013 at 01:32 PM. |
#2
|
|||
|
|||
Re: How to download multiple rtmpdump urls (OSX or Windows)Stop, Steven - you've been banned repeatedly for breaking the rules.
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. |
#3
|
|||
|
|||
Re: How to download multiple rtmpdump urls (OSX or Windows)I have the answer:
Last edited by placebo : 01-28-2013 at 01:14 PM. Reason: Black SEO/spammer |
#4
|
|||
|
|||
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. |
#5
|
|||
|
|||
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. |
#6
|
|||
|
|||
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. |
#7
|
|||
|
|||
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.
|
#8
|
|||
|
|||
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) --swfsize|-x num Size of the decompressed SWF file, required for SWFVerification Code:
--swfUrl|-s url URL to player swf file --swfVfy|-W url URL to player swf file, compute hash/size automatically So for Windows you can try 3 alternative ways of creating a batch download: Alternative 1: # BatchDL.bat Code:
@echo off rtmpdump -r [...] cls rtmpdump -r [...] cls rtmpdump -r [...] cls echo DOWNLOAD FINISHED echo. pause Create one main batch and one batch for every single video you want to download. #Main Batch (Main.bat) Code:
@echo off start /wait Video-001.bat start /wait Video-002.bat start /wait Video-003.bat echo DOWNLOAD BATCH finished! echo. pause Code:
@echo off rtmpdump -r [...] exit #Main Batch (Main.bat) Code:
@echo off call Video-001.bat cls call Video-002.bat cls call Video-003.bat cls echo DOWNLOAD BATCH finished! echo. pause Code:
@echo off rtmpdump -r [...] Last edited by AmazingMatze : 01-29-2013 at 09:47 PM. |
#9
|
|||
|
|||
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 |
#10
|
|||
|
|||
Re: How to download multiple rtmpdump urls (OSX or Windows)Probably that URL doesnt point to swf file.
|
Tags: download, multiple, rtmpdump, url |
Thread Tools | |
Display Modes | |
|
|