views:

743

answers:

2

hello all is there any lib or well known method to save audio web streaming ( web radio , mp3 streaming) to file programmatically ?

+1  A: 

You can use the BASS library. It has plenty of support for attaching to network streams and decode them into MP3/WMA/OGG/AAC files. Developed in C, but could easily be used in C++ and many other languages.

Magnus Johansson
i need free software
BASS Library is free for non-commerical use
Magnus Johansson
+1  A: 

You could use libvlc from the VLC project. The wiki seems to be down right now though. The code is in c++.

EDIT: Found this and this via google cache.

nmuntz