Jump to content

File download


Recommended Posts

Hi to all, im try to writing a streaming donwload software.

Usually i use InetGet function to download the streaming, all work goog with the "http:" link. But if the streaming start with "mms:" inetget dont record nothing

For example if i try to download this streaming link :

http://www.radioemigranti.com:8000/radio48k.m3u

All works good...

But if i try to download that :

mms://213.149.101.52/club-fm

It don't work...

Any solution to grab this mms link?...

Hi to all!

Link to comment
Share on other sites

Hi to all, im try to writing a streaming donwload software.

Usually i use InetGet function to download the streaming, all work goog with the "http:" link. But if the streaming start with "mms:" inetget dont record nothing

For example if i try to download this streaming link :

http://www.radioemigranti.com:8000/radio48k.m3u

All works good...

But if i try to download that :

mms://213.149.101.52/club-fm

It don't work...

Any solution to grab this mms link?...

Hi to all!

Well I see you trying to grab a Live Stream not actualy download a file. I am not aware of anyway to use Inet to grab a live stream.

You can use this little snipplet to grab the stream mabye you can modify it and make it into what you want.

#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>

    $GUI = GUICreate("Capture Stream", 125, 25, 215, 10, Default, Default)
    GUISwitch($GUI)

    $MP = ObjCreate("WMPlayer.OCX")
    $mediaplayer = GUICtrlCreateObj($MP, 0, -200 , 600, 385)

With $MP
    .URL = "mms://213.149.101.52/club-fm"
EndWith

GUISetState(@SW_SHOW, $GUI)

While 1
    Switch GUIGetMsg()
        Case $GUI_EVENT_CLOSE
            Exit
    EndSwitch
WEnd
Link to comment
Share on other sites

StungStang,

Try reading the mms specification at this site http://www.google.com/url?sa=t&source=web&cd=3&ved=0CDAQFjAC&url=http%3A%2F%2Fsdp.ppona.com%2F&ei=h31NTfiZIIus8AafvOnDDg&usg=AFQjCNHWkJDUz0r5rPUsBAyfCn4nWOQjNw.

You may be able to come up with something.

kylomas

@Jfish - the link you cited is broken

Edited by kylomas

Forum Rules         Procedure for posting code

"I like pigs.  Dogs look up to us.  Cats look down on us.  Pigs treat us as equals."

- Sir Winston Churchill

Link to comment
Share on other sites

StunStang,

Exactly my point...that site has documented the M$ MMS specification...see post above for further info from the AutoIT board.

kylomas

I've seen the topic on this board...but it is very vague, nothing concrete that can help me ;)...

Any soluction ? :)

Thanks for your help!

Link to comment
Share on other sites

StungStang,

This link has source that you can use as a skeleton or to translate from http://www.google.com/url?sa=t&source=web&cd=2&sqi=2&ved=0CBkQFjAB&url=http%3A%2F%2Fgmms.sourceforge.net%2F&ei=fpJNTd2bMIrPgAfEtJ31Dw&usg=AFQjCNF7ESPpA8Zh7LBqaPbJ9cPrzQ9x4A

kylomas

Forum Rules         Procedure for posting code

"I like pigs.  Dogs look up to us.  Cats look down on us.  Pigs treat us as equals."

- Sir Winston Churchill

Link to comment
Share on other sites

@kylomas

I have just seen this source, as u can see...it's very hard to translate in autoit!...I thinks that there is a solution to do this much simple...but what?...I've searched in all forum but i've not found nothing :)

If anyone have an idea or soluction please tell me all ;)

Hi!

Link to comment
Share on other sites

@tracexx

I don't see nothing of good that respond to my question... :) No one have try to record a radio station streaming ;)

Thank's to help!

Is that me?

Thing is you have to try to use your own head. The results will be there in no time then. Script to do what you want can be written in 10 minutes after you get familiar with things you should be familiar with.

But of course you can always wait for someone else to write it for you.

In both cases, good luck.

Edited by trancexx

♡♡♡

.

eMyvnE

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...