Raul Mercado
Raul Mercado

Reputation: 324

How to capture audio streaming with ffmpeg

I'd like to capture audio streaming from a live radio on internet using ffmpeg.

If you have some examples or documentation it will be very appreciated.

Upvotes: 4

Views: 9033

Answers (1)

llogan
llogan

Reputation: 133713

Assuming the protocol is HTTP and audio format is MP3 it can be as simple as:

ffmpeg -i http://server:port -c copy output.mp3

See:

Upvotes: 7

Related Questions