Create MP3 from Internet radio?

Hello All,
Is it possible to record audio from the internet (Like BBC iPlayer) to create mp3's of programmes and concerts?
I can't seem to find a way of doing it and wondered if anyone knew how.
Thanks,
Mark

Install SoundFlower, make it the Macs' default output in the Sound prefpanel, make it the Input in Logic. Now you can play anything (iTunes, internetaudio) and Logic can record it: In Logic, hit record, switch to your internetbrowser and start whatever playback you want to record.
Just did this yesterday, works fine.
http://www.pure-mac.com/audio.html#soundflower

Similar Messages

  • Music drop outs / stutter when listening to MP3s or Internet Radio with Verizon Media Manager

    Does anybody know when I play MP3s or listen to Internet Radio I'm getting slight drop out or stutter?
    I just downloaded and installed the Verizon Media Manager on a machine running Windows 7.
    Any help would be appreciated.

    Found this answer on DSLReports...
    "This problem has reported before. It's a problem with the audio driver for 7XXX boxes that was introduced with IMG 1.9a. It also impacts iHeart radio and Pandora streaming. It is supposed to be fixed in 1.9.1, which is due sometime in the next decade."

  • Create MP3s from Quicktime Video

    I have a Quicktime video of a friend's band and want to strip out the audio and create an MP3 of each song. What's the easiest way to do this?
    I've got Quicktime 7 and Final Cut Express installed.
    Thanks in advance,
    T. Wise

    QuickTime "Pro" can be used to "extract" the audio track (if it isn't in MPEG 1 or 2 format).
    This extracted track can be dragged into your iTunes Library (or a playlist).
    Use your iTunes preferences to "convert" this new audio only .mov to .mp3 format.

  • Audi Recording from Internet Radio

    I'd like to record radio broadcasts (stereo). So far I have not succeeded because the only inputs I can choose are either the integrated Mic or Line-In. The Mic does record, but - of course - only if the Speakers are on and only Mono.
    Is there a way of recording in stereo with speakers off? With Windows this is a trivial task. I was told with a Mac everything were +much easier+. Is it?
    Thanks for any hint.
    Franziska

    Very easy with the right application!
    http://rogueamoeba.com/audiohijackpro/ Should work fine!
    Regards
    Paul

  • Itunes want load music from internet radio

    itunes keeps freezing up and saying i'm not connected to internet

    Open iTunes and browse the iTunes Store. When you want to buy or rent something, you'll be prompted for the same AppleID and password you use to log into these forums.

  • Play audio from internet -http connection-

    Hi friends,
    I have made an audio player using jmf as part of my project.It can play files from local machine as well as local network in my company. But i don't know how to play audio files like wav,mp3 from internet using http connection as described by tristanlee85. Can anyone explain me how to accomplish this.
    The code where i tried to
    access http connection is given below.
    But it is not working.I know Streaming is necessary. But how to do it in jmf. What imports are needed.Please guide me
    Manu
    import javax.media.*;
    import java.text.DecimalFormat;
    import java.awt.*;
    import java.awt.FileDialog;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    <APPLET CODE=PlayerApplet.class
    WIDTH=320 HEIGHT=300>
    </APPLET>
    class nwa extends WindowAdapter
         frameclass frame;
         Player player;
         public nwa(frameclass frame,Player player)
          this.player=player;
          this.frame=frame;
         public void windowClosing (WindowEvent e)
          //User selected close from System menu.
          //Call dispose to invoke windowClosed.
          frame.dispose ();
          public void windowClosed (WindowEvent e)
              if (player != null)
                   player.stop();
                player.close ();
                   player.deallocate();
          System.exit (0);
    class frameclass extends JFrame
    Player player;
         frameclass(Player player)
         nwa n=new nwa(this,player);
         this.addWindowListener(n);                    
    public class PlayerApplet extends JApplet
               implements ActionListener,ControllerListener,ItemListener, KeyListener
               Player player=null;
               frameclass frame=new frameclass(player);
                 Component vc, cc;
                 Container f;
                 JProgressBar volumeBar;
                 JButton fastRewind;
              JButton fastForward;
              JButton play;
              int sizeIncrease = 2;
              boolean invokedStop = false;
              /** Big */
              int progressFontSize=30;
                 boolean first = true, loop = false;
                 String currentDirectory;
                 public void init()
                          f=frame.getContentPane();
                         JMenu m = new JMenu ("File");
                         JMenuItem mi = new JMenuItem ("Open...");
                         mi.addActionListener (this);
                         m.add (mi);
                         m.addSeparator ();
                         mi = new JMenuItem ("URL");
                         mi.addActionListener (this);
                         m.add (mi);
                         m.addSeparator ();
                         JCheckBoxMenuItem cbmi = new JCheckBoxMenuItem ("Loop", false);
                         cbmi.addItemListener (this);
                         m.add (cbmi);
                         m.addSeparator ();
                         mi = new JMenuItem ("Exit");
                         mi.addActionListener (this);
                         m.add (mi);
                         JMenuBar mb = new JMenuBar ();
                         mb.add (m);
                         frame.setJMenuBar (mb);
                         setSize (500, 500);
                           JPanel p = new JPanel(new GridLayout(1,0,5,5));
                        p.setBorder(new EmptyBorder(3,5,5,5) );
                        fastRewind = new JButton("<html><body><font size=+"+ sizeIncrease+ "><<");
                        fastRewind.setToolTipText("Fast Rewind");
                        fastRewind.addActionListener( new ActionListener(){
                             public void actionPerformed(ActionEvent ae) {
                                  if (player!=null) {
                                       invokedStop = false;
                                       skipBack();
                                  } else {
                                       JOptionPane.showMessageDialog(play,
                                       new JLabel("Open a sound file first!"));
                        fastRewind.addKeyListener(this);
                        p.add(fastRewind);
                        JButton stop = new JButton("<html><body><font size=+"+ sizeIncrease+ ">��");
                        stop.setToolTipText("Stop");
                        stop.addActionListener( new ActionListener(){
                                  public void actionPerformed(ActionEvent ae) {
                                       invokedStop = true;
                                       sp();
                        stop.addKeyListener(this);
                        p.add(stop);
                        play = new JButton("<html><body><font size=+"+ sizeIncrease+ ">>");
                        play.setToolTipText("Play");
                        play.addActionListener( new ActionListener()
                                  public void actionPerformed(ActionEvent ae) {
                                       if (player!=null) {
                                            invokedStop = false;
                                            player.setRate(1);
                                            st();
                                       } else {
                                            JOptionPane.showMessageDialog(play,
                                            new JLabel("Open a sound file first!"));
              play.addKeyListener(this);
              p.add(play);
              fastForward = new JButton("<html><body><font size=+"+ sizeIncrease+ ">>>");
              fastForward.setToolTipText("Fast Forward");
              fastForward.addActionListener( new ActionListener(){
                   public void actionPerformed(ActionEvent ae) {
                        if (player!=null) {
                             invokedStop = false;
                             skipForward();
                        } else {
                             JOptionPane.showMessageDialog(play,
                             new JLabel("Open a sound file first!"));
              fastForward.addKeyListener(this);
              p.add(fastForward);
              frame.getContentPane().add(p,BorderLayout.CENTER);
              frame.setVisible (true);
              frame.pack();
              frame.setResizable(false);
      public void stop(){
      sp();
      public void destroy(){
       player.stop();
        player.deallocate();
      public void actionPerformed (ActionEvent e)
              if (e.getActionCommand().equals("Exit"))
                             // Call dispose to invoke windowClosed.
                             player.stop();
                             player.close();
                             player.deallocate();
                             frame.dispose ();
                                  return;
    // Play file from local machine
              if (e.getActionCommand().equals("Open..."))
                             FileDialog fd = new FileDialog (frame, "Open File",
                                         FileDialog.LOAD);
                              fd.setDirectory (currentDirectory);
                              fd.show ();
                              // If user cancelled, exit.
                              if (fd.getFile() == null)
                             return;
                              currentDirectory = fd.getDirectory ();
                                   if (player != null){
                                       player.close ();
                                       player.deallocate();
                         try
                  player = Manager.createPlayer (new MediaLocator
                                               ("file:" +
                                               fd.getDirectory() +
                                               fd.getFile()));
                              catch (java.io.IOException e2)
                            System.out.println ("file not found :"+e2);
                            return;
                              catch (NoPlayerException e2)
                            System.out.println ("Could not find a player.");
                            return;
                    if (player == null)
                   System.out.println ("Trouble creating a player.");
                   return;
                    first = false;
                    frame.setTitle (fd.getFile ().toString());
                    player.addControllerListener (this);
                    player.prefetch ();
                   return;
    // Play file from internet
    if (e.getActionCommand().equals("URL"))
                              if (player != null){
                                       player.close ();
                                       player.deallocate();
                   try
                        URL url = new URL ("http://www.plastikhosting.net/uploads/tristanlee85/music/02-hellyeah-you_wouldnt_know.mp3");
                    MediaLocator mediaLocator = new MediaLocator (url);
                        player = Manager.createPlayer (mediaLocator);
                   catch (java.io.IOException e2)
                  System.out.println ("file not found :"+e2);
                  return;
                    catch (NoPlayerException e2)
                  System.out.println ("Could not find a player.");
                  return;
                    if (player == null)
                   System.out.println ("Trouble creating a player.");
                   return;
          first = false;
          player.addControllerListener (this);
          player.prefetch ();
              player.start ();
              return;
       public void controllerUpdate (ControllerEvent e)
          if (e instanceof ControllerClosedEvent)
              if (vc != null)
                  frame.getContentPane().remove (vc);
                  vc = null;
              if (cc != null)
                  frame.getContentPane().remove (cc);
                  cc = null;
              return;
          if (e instanceof EndOfMediaEvent)
              if (loop)
                  player.setMediaTime (new Time (0));
                  player.start ();
              return;
          if (e instanceof PrefetchCompleteEvent)
              player.start();
              return;
          if (e instanceof RealizeCompleteEvent)
            if (vc != null)
                  remove (vc);
                  vc = null;
              if (cc != null)
                  remove (cc);
                  cc = null;
              vc = player.getVisualComponent ();
              if (vc != null)
                  frame.getContentPane().add(vc,BorderLayout.NORTH);
              cc = player.getControlPanelComponent ();
              if (cc != null){
                       frame.getContentPane().add (cc, BorderLayout.SOUTH);
                     frame.setVisible(true);
                     frame.pack();
                      return;
    public void keyReleased(KeyEvent ke) {
    public void keyTyped(KeyEvent ke) {
    /*public void keyReleased(KeyEvent ke) {
    int keycode = ke.getKeyCode();
              if (keycode==KeyEvent.VK_LEFT) {
                   skipBack();
              } else if (keycode==KeyEvent.VK_RIGHT) {
                   skipForward();
         /*public void keyTyped(KeyEvent ke) {
         int keycode = ke.getKeyCode();
              if (keycode==KeyEvent.VK_LEFT) {
                   skipBack();
              } else if (keycode==KeyEvent.VK_RIGHT) {
                   skipForward();
         public void keyPressed(KeyEvent ke) {
              int keycode = ke.getKeyCode();
              if (keycode==KeyEvent.VK_LEFT) {
                   skipBack();
              } else if (keycode==KeyEvent.VK_RIGHT) {
                   skipForward();
              }else if (keycode==KeyEvent.VK_UP) {
                   st();
              }else if (keycode==KeyEvent.VK_DOWN) {
                   sp();
    public void skipForward() {
    Time settime;
    double secs=5;
    double playersecs = player.getMediaTime().getSeconds();
    double duration = player.getDuration().getSeconds();
              if((playersecs+secs) < duration){
                      settime = new javax.media.Time(playersecs + secs);
                      player.setMediaTime(settime);
              }else {
                        player.setMediaTime(new Time(duration));
    public void skipBack() {
              double secs1=5;
              double secs2=0;
              double playersecs1 = player.getMediaTime().getSeconds();
              Time settime1;
              if((playersecs1 - secs1) > secs2){
                      settime1 = new javax.media.Time(playersecs1 - secs1);
                      player.setMediaTime(settime1);
              }else {
                        player.setMediaTime(new Time(0));
         public void st() {
         player.start();
         public void sp() {
         player.stop();
       public void itemStateChanged (ItemEvent e)
          loop = !loop;
    }

    Thank u Thompson For your kind reply. I got the problem solved. It was the the problem of Untrusted Applet as u said.Now i Have signed my applet and this appletplayer plays audio only from the server from where this applet comes and from the localmachine also.Now it is playing fine from the server.
    But i have another problem , If i am asking that in the wrong forum plz forgive, I will ask it it in applet forum also.
    Problem is , I have implemented a joystick with this player. The idea is to combine this player with a text editor so that user can hear audio at the same time he can type in the editor what he hear and he can rewind and forward using joystick(It is actually a footswitch controller) with his leg. This driver i got from Source forgenet works fine in my localmachine and localnetwork also.But i have to install .DLL file in every client machine. This should be avoided.When a client having no jmf and joystick in his machine tries to run this applet through the browser the required Joystick driver and jmf must be installed in client computer also.
    By signing the applet and using ARCHIVE keyword i think jmf part will be ok but what about joystick driver.How i could install it in client machine.Playerapplet throws jjstck.dll not found exception
    plz guide me
    manu

  • Create Internet Radio

    Hi,
    I want to create internet radio station with aac to flash streaming.
    Question is: How I can delivery music aac stream to Flash Media Server?
    Now I have own software which produce AAC, WMA and MP3 streaming.
    It's possible to use my AAC stream as a FMS source?

    Hi,
    Thanks for your interest in FMS.
    If your application/software has already created your content, all you need to do is to install FMS and put the media in the relevant folders/ map the folders where the media is residing.
    If you want to stream directly from your application/software, then it should support RTMP , the protocol for FMS.

  • I want to listen to internet radio as I used to do. The selection "Radio" has gone from my list under "Music". How do I get it back again?

    I want to listen to internet radio as I used to do. The selection "Radio" has gone from my list under "Music". How do I get it back again?

    I don't know if this is what you really want, but I created a Playlist for Radio, and add some of the stations I like from websites. (If you click on the web-links they load into iTunes in the Sidebar). And you can also add individual Radio stations from the top right,(under Apple) to a Playlist. That's the only way I know to have them in the Sidebar.
    Z_ZS-B, You also helped me to find the old Radio list! I didn't even know it was up on the right, under Apple. I haven't liked this version of iTunes so I hadn't even bothered to try and figure it out until now, but because I just bought a my first iPod Shuffle I'm determined to bend this version to my will. ;-)

  • Please walk me thru creating a playlist in iTunes for internet radio stations

    Please walk me thru creating a playlist in itunes specifically for internet radio. The itunes help page is not detail enough.

    Create a new playlist
    Open iTunes
    Click the + button in the lower left corner of the window.
    Name your playlist
    Add radio stations:
    On the left side of the iTunes window, at the top is the "Library" group. Under "Library" should be an item called "Radio." Click that to open the radio listings. If you do not see "Radio" in iTunes, go to the menu bar at the top of your screen and open iTunes > Preferences. In the preferences window, under the General tab, make sure Show > Radio is checked and click OK.
    Find a station in the Radio listing.
    Drag that station from the listing on the right side of the window to the new playlist you created on the left side, and drop.
    You now have a playlist with a streaming radio station in it.
    To add stations not listed in the iTunes radio listings:
    Locate the stream URL (if you need further help, post which radio station you want exactly)
    Copy the URL to your clipboard (command+C)
    open iTunes
    In the menu bar at the top of your screen, click on Advnaced > Open Stream...
    Paste the URL (command+V)
    Click OK
    Your new radio stream should now appear in a playlist called "Internet Songs." Open that playlist.
    Drag the station from the Internet Songs playlist into your own playlist.

  • Internet radio from Apple TV suddenly not working!!! Please help!

    I used to be able to put internet radio stations in a playlist and sync to ATV, and they would show up on the ATV and I could select and listen to them! From what I've read on some other forums, after version 2.02 came out, you could even do that and not have your computer on and itunes open, and could still access and listen to the radio stations on ATV! Which is great!
    I hadn't tried this in a while and decided to get the 2.02 update and try. Now, when I select the playlist with the radio stations in it (on ATV) I get a message - "contains no songs"!!
    Does anybody know what is going on with this feature? It seems to work for some people but not others! Some think that it stopped working for people with itunes 7.6.1 and higher!! (I have 7.6.2 and OSX 10.4.11)
    Just when I had a plan on really taking advantage of this feature, it stopped working!
    Can anybody help with this topic? Do people from Apple read and answer these posts?
    Thanks,
    SB

    Wow! That surprised me! I had already tried something very similar to that, and it didn't work!
    What you said works! Thanks so much!
    And in addition, playing the internet radio from my ATV (rather than from computer & thru airtunes) seems to work better! Before, (using airtunes), some stations would cut out / skip etc... and it doesn't seem to happen now! And I can now, not even have my computer on!
    My understanding is that if I ever turn off the ATV, I'll have to do the procedure that you said again correct?
    Thanks so much again!
    It would be nice if Apple could now have the details / info that shows up in itunes when you play a internet radio station (song info etc...) show up on the screen on ATV - right?!!!
    (for me, right now - just says: "Proton Radio - unknown album")
    SB

  • I am trying to create mp3 version of itune songs.  I have gone through the preference sequence to be mp3 encoder but this is not having any effect.  I have also tired from file tab to create a version but this is not available to action

    I am trying to create mp3 version of itune songs.  I have gone through the preference sequence to be mp3 encoder but this is not having any effect.  I have also tired from file tab to create a version but this is not available to action showing as lite grey.
    Any help would be appreciated

    I am trying to create mp3 version of itune songs.  I have gone through the preference sequence to be mp3 encoder but this is not having any effect.  I have also tired from file tab to create a version but this is not available to action showing as lite grey.
    Any help would be appreciated

  • Is it possible to create a link that I can place on a website to an internet radio stream on iTunes?

    Is it possible to create a link that I can place on a website to an internet radio stream on iTunes?

    Yes, but it WON'T play through the browser. It'll require any visitor who clicks it to have iTunes installed, and it'll open iTunes as soon as they do.

  • Some internet radio stations with http protocol and mp3 format not working in AIR 2.0

    First, i am sorry for my bad english. When I publish swf for Flash 10 player all stations in my list works. If I publish them for AIR 2.0 stations with adress end ":XXXX", where XXXX is port number, they cannot work. What is problem? Thanks in advance.

    Perhaps,  in the previous post I wasn't clear enough, so I'll try to make it better: I am using the Adobe Flash CS5 and AS3. I wrote the script for listening internet radio stations. In the station list I named only those that use HTTP protocol and mp3 format, cause I know the limits of Flash in audio streamings. If I publish FLA file in SWF for Flash 10 player all the stations can be listened.. If swf file is made for AIR 2.0 there's a problem: the stations with adress  http://xxx.xxx:xxx/<something> can be listened, and those without extension behind the port number (:xxx) can not. Main parts of the script are:
    startButton.addEventListener(MouseEvent.CLICK, listen);
    req.url= "<adress>";
    snd = new Sound();
    snd.load(req);
    private function listen(event:MouseEvent):void {
    req = snd.play();
    Example:
    adress=http://scfire-ntc-aa08.stream.aol.com:80/stream/1010 - working
    adress=http://www.radionovosti.rs:443/radionovosti56s.mp3 - working
    adress=http://sh1.beotel.net:8002 - not working
    adress=http://77.105.36.58:8881 - not working
    It would be great if someone of Adobe employers explain to me what is the problem. Thanks.

  • Download mp3's from ESPN Radio Insider

    With my Windows PC, I could go to ESPN's Radio Insider and download Podcasts from their radio shows each day. They have 2 choices, download and play. With Windows, I could right click on download and save mp3 files to a folder. With the Macbook, I click on download and it plays, I'm not given a choice to download to a folder. I'm sure this is a stupid question, however how can I download the podcast in lieu of just playing it? Thank you.

    Hi SlamDunk!
    Welcome to Apple Discussions.
    There's two ways, it appears, as I just tried downloading the podcasts.
    Option #1: Subscribe to it via iTunes and download from within the iTunes client. There's a little icon that says "iTunes" and upon clicking it, brought me into iTunes and directly to the page where I could subscribe to the podcast.
    Option #2: Right-Click (or Control-Click) on the "Download" icon and select "Download Linked File"
    http://espnradio.espn.go.com/espnradio/podcast/index
    That's the URL I visited and the listen options are below each podcast. (Play / Download / iTunes / RSS)

  • Apple TV 2.0.2 - Internet radio keep being removed from the playlist

    Here is my problem,
    I add an internet radio to my itunes, sync my AppleTV 2.0.2 , shutoff the computer.
    I go to my AppleTV, start listening to my radios, up to now everything is fine.
    but after a few days, the internet radio playlist disappear from the ATV.
    I tried manytime to resync, works for a few days, then the playlist disapear again.
    Anyone having this issues ?

    Everyone. Do a search on "radio" and you'll find plenty of threads on this topic. We all hope Apple will fix this in an update .... it would be nice to have radio playlist that works and doesn't disappear!

Maybe you are looking for

  • Address Book - Create multiple contacts at one company?

    I am using Address Book v 4.0.4 and I want to be able to create multiple contacts at one company without having to reenter the Company, Tel. and Address information each time. Is there a way to duplicate an address, say the basic company address, to

  • Mutation error

    Hi, I have form in which we are creating parent child relation .The table structure is as follows problems(table name)(prom_number,prom_relation,prom_impact,prom_relation,...)(column name). I dont have the forms fmb file ,So whenwe create the relatio

  • TCode F.05 - How to make valuation twice amonth

    Hi Gurus, I have a question from my users. Do you know a process to make the valuation twice a month via F.05? So, the accountancy department do the closing in two step: 1) fast closing and 2) hard closing. Usually they do F.05 only during the hard (

  • Need Help Defining New Color

    Greetings, The instructions in the FM user guide are either totally inaccurate, or FM is broken out of the box. To determine which, I need to know how some one of you add a simple color to the common colors palette. The guide says View > Color > Defi

  • XY graphs

    Hi, I am a new user of labview and I have a problem with my VI, I am trying to plot random data in two xy graphs, in the first graph I plot current time vs random data (between 0 and 1), and in the second samples vs random data. In my first graph all