View Single Post
  #2  
Old 03-25-2009, 02:31 PM
any ANONYMOUS forum user any ANONYMOUS forum user is offline
any user of the forum who preferred to post anonymously
 
Join Date: Aug 2011
Location: Server of stream-recorder.com
Posts: 211
any ANONYMOUS forum user is on a distinguished road
Default

Re: [linux] Capturing/Saving/Downloading/Ripping/Recording MP3 music stream from Last


Another useful ripping technique that can be applied to any stream you would view but cant normally save (easilly)

Code:
mkfifo pipe; mplayer -vo null -ao pcm:file=pipe my_stream_URI; lame -h pipe my_new.mp3; rm pipe;
Reply With Quote