Avec :
mplayer -ao pcm:file=radio.wav -nocache -playlist
http://www.classic21.be/rtbf_2000/radios/21128.m3u

Sans :
mplayer -ao pcm:file=radio.wav -nocache http://streaming.rtbf.be:8000/2128xrtbf

Add a comment

Le site source-debian.org spécifie avconv comme une suite de logiciels libres en ligne de commande qui permet de traiter des flux vidéo et/ou audio. Il est installé avec ffmpeg.

avconv -i http://streaming.radio.rtl.fr/rtl-1-48-192 -c copy test.mp3

  • -i : flux en entrée. Ici un flux de la radio RTL
  • -c copy : on va recoper le "flux" en local
  • test.mp3 : nom du fichier généré
Add a comment