AppleTV 2: to hear internet radio stations which are not in the list

Hello,
I have an AppleTV 2 and I like to hear internet radio stations which are not listed in default list.
Is there any possibility to enter the URL of an internet radio stream manually on AppleTV like in iTunes?
Thank you and best regards

You can not enter the URL into the Radio app on the ATV. You can enter it into iTunes then use AirPlay to send the audio to the ATV. You can also use internet radio apps on iPads, touch and iPhones to AirPlay on the ATV as well. I use TuneIn Radio which doesn't let you enter URLs but it has pretty much every radio and podcast feed under the sun.

Similar Messages

  • Can we add fields in MM17 which are not in the list

    Hi Folks,
    Pls help me on below.
    I want to add below fields in a variant in MM17
    Planned price 1 - MBEW-ZPLP1
    Planned price 2 - MBEW-ZPLP2
    Planned price 3 - MBEW-ZPLP3
    But these fields are not available in the List.
    how can i add them ?

    HI
        Only it is possible what ever the fields and tables available in the transaction.Cannot add any other additional fields which ever not in the transaction.
    Thanks
    Ganesh

  • How to delete images from folder which are not in the database

    I am created windows form
    i wont to delete images from the folder where i have stored images but i only want to delete those images which are not in the data base.
    i don't know how it is possible . i have written some code
    private void button1_Click(object sender, EventArgs e)
    string connectionString = "Data Source";
    conn = new SqlConnection(connectionString);
    DataTable dt = new DataTable();
    cmd.Connection = conn;
    cmd.CommandText = "select * from tbl_pro";
    conn.Open();
    SqlDataAdapter da = new SqlDataAdapter(cmd);
    da.Fill(dt);
    int count = Convert.ToInt32( dt.Rows.Count);
    string[] image1 = new string[count];
    for (int i = 0; i < count; i++)
    image1[i] = dt.Rows[i]["Image1"].ToString();
    string[] image2 = new string[count];
    for (int i = 0; i < count; i++)
    image2[i] = dt.Rows[i]["Image2"].ToString();
    var arr = image1.Union(image2).ToArray();
    string[] arrays;
    String dirPath = "G:\\Proj\\";
    arrays = Directory.GetFiles(dirPath, "*", SearchOption.AllDirectories).Select(x => Path.GetFileName(x)).ToArray();
    int b= arrays.Count();
    for (int j = 1; j <= b; j++)
    if (arrays[j].ToString() != arr[j].ToString())
    var del = arrays[j].ToString();
    else
    foreach (var value in del) // ERROR DEL IS NOT IN THE CURRENT CONTEXT
    string filePath = "G:\\Projects\\Images\\"+value;
    File.Delete(filePath);
    here error coming "DEL IS NOT IN THE CURRENT CONTEXT"
    I have to change anything .Will It work alright?
    pls help me
    Sms

    Hi Fresherss,
    Your del is Local Variable, it can't be accessed out of the if statement. you need to declare it as global variable like below. And if you want to collect the string, you could use the List to collect, not a string.  the string will be split to chars
    one by one.
    List<string> del=new List<string>();
    for (int j = 1; j <= b; j++)
    if (arrays[j].ToString() != arr[j].ToString())
    del.Add(arrays[j].ToString());
    else
    foreach (var value in del)
    string filePath = "G:\\Projects\\Images\\" + value;
    File.Delete(filePath);
    If you have any other concern regarding this issue, please feel free to let me know.
    Best regards,
    Youjun Tang
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Xml nodes which are not meet the schema validation

    Hi All,
    Is there way to keep xml nodes which are not meet the schema validation ,so that i can send those failed records back to the Source Target.
    I thought to implement to adding validate in the ForEach loop.Any hints

    In Windows you hold down the Ctrl key while clicking on the nodes you want to select. Don't know the equivalent in other environments.

  • How do I get to Internet Radio Stations on Apple TV After The Upgrade?

    I recently updated my Apple TV software and can no longer get the internet radio stations list.  Is there  no way to access that now that Apple TV Radio is all the new itunes radio?  I listen to the local public radio station on my TV and had a lot of other channel saved which are now gone.
    Thanks

    Welcome to the Apple community.

  • How do I get rid of Firefox as its awfully slow and has lost all my favourites which are not in the unsorted bookmarks file?

    I was told by eBay to set up Mozilla Firefox as I had problems uploading scans on to listings. I now find I have lost all my favourites and there is nothing in the unsorted bookmarks, where you told me they would be. Also it has slowed down my computer considerably, and seems to want to have about ten goes every time you try to get into a website. So it seems totally useless to me, and I want to revert to Internet Explorer. Why is MF such a useless system and how do I delete it - I am very elderly busy computer operator with ;ittle knowledge of systems, what you call things and so on, so please keep it simple. Jeremy

    From Bookmarks (at top left of page) select 'Show All Bookmarks'. This will open the bookmarks Library. Have a look around here to see if your bookmarks (favourites) are all there. If so, you can now export them for use in other browsers. Why not take the opportunity to tidy or restrucure them before export?
    To export them select 'Import and Backup' then 'Export HTML'. Save the file to somewhere safe on your PC, My Documents perhaps.
    I use an Uninstaller Program so I'm not too sure but I think you can uninstall Firefox > Start > All Programs > Mozilla Firefox - and there's possibly an uninstall option here. Failing this, go to the Program folder and find the 'uninstall' folder, double click 'helper.exe' and this will open the Firefox uninstaller.

  • How to upload podcasts which are not in the iTunes podcast library?

    or how to create a playlist of podcasts?
    I have some podcasts as mp3 files I'd like to upload. These podcasts are not in the Itunes podcast library. I downloaded them from another source. What I do not understand is why iTunes makes a difference between podcast mp3 files and music mp3 files. If I put my podcasts into a playlist and try to synchronise the playlist with iPhone, the files are not uploaded. Actually I do not see the playlist listed in the page "Music" of my device "iPhone".
    Any ideas?

    I've usually found using outer joins to be very efficient in performing NOT IN/NOT EXIST type operations.
    WITH t1 AS (
    SELECT 100 type, 1 begin_no, 10 end_no FROM dual
    UNION ALL
    SELECT 200 type, 10 begin_no, 20 end_no FROM dual
    UNION ALL
    SELECT 300 type, 20 begin_no, 30 end_no FROM dual
       , t2 AS (
    SELECT 100 type, 5 no FROM dual
    UNION ALL
    SELECT 100 type, 6 no FROM dual
    UNION ALL
    SELECT 100 type, 11 no FROM dual
    UNION ALL
    SELECT 100 type, 21 no FROM dual
    UNION ALL
    SELECT 200 type, 5 no FROM dual
    UNION ALL
    SELECT 200 type, 6 no FROM dual
    UNION ALL
    SELECT 200 type, 11 no FROM dual
    UNION ALL
    SELECT 200 type, 21 no FROM dual
    UNION ALL
    SELECT 300 type, 5 no FROM dual
    UNION ALL
    SELECT 300 type, 6 no FROM dual
    UNION ALL
    SELECT 300 type, 11 no FROM dual
    UNION ALL
    SELECT 300 type, 21 no FROM dual
    SELECT t2.*
      FROM t2
         , t1
    WHERE t1.type (+)= t2.type
       AND t2.no BETWEEN t1.begin_no(+) AND t1.end_no(+)
       AND t1.type IS NULL;
    output is:
    TYPE     NO
    200     21
    200     6
    200     5
    300     11
    300     6
    300     5
    100     21
    100     11

  • App for recording internet radio stations?

    Hi, have looked in the app store for an app that will enable me to record internet radio stations that I am listening to.
    I have seen there are plenty of recorders that will record voice etc through the iphone mic but I really want to record what I am hearing such as internet radio.
    Will any of the current apps do this? If so which ones & which are stable etc?
    Many Thanks!

    there is no way you could have an app that plays internet radio and have an app that records the internet radio...i dont know if an app exists but even if it did, you couldnt run 2 apps at the same time, so obviously you cant record

  • How to use my iPhone 4 to select Internet radio stations on MacBook Pro

    Okay, once again I return here to seek guidance and wisdom.  Fellow members here told me about Air Video, a terrific set of programs for iOS and OS X to stream videos from my MacBook Pro to my iPhone 4.  It is awesome!
    Now, my other need (?).  I want to run something on my Mac that lets me select Internet radio station streams like TuneIn for ex., but I want to be able to change selections on whatever is on the Mac from the iPhone 4.  What I want to do is use the iPhone 4 as a remote for the app on the Mac which I want to connect to either some external speakers or someday to a real external Dac, amp, and speakers.
    I have the TuneIn Pro app on my iPhone 4 already and on the Mac via browser have accessed their website.
    Now someone surely is going to mention Airplay or something to stream from the iPhone4.  From the cost of Airplay capable hardware, I just can't afford it yet.  Maybe if I could find Bluetooth speaker or device?
    One other thing to throw in for thought.  I have not only iTunes on my MacBook Pro, but also Fidelia and Amarra, and thinking about Decibel or Audirvana.  In other words somewhat hi-def music output quality available on the Mac.  So....I do have a remote app for Fidelia and think there's one for either Decibel or Audirvana, so that brings me back to Internet radio on the MacBook Pro.  If I can find a way to use the iPhone 4 to select an app on the Mac for Internet radio, I can play those plus hi-def music via one of those programs.
    I probably didn't say all that right, but I hope you can decipher what I am asking about.
    If nothing else, can you recommend inexpensive Bluetooth speakers to play radio from the iPhone4?  I was hoping to buy some AudioEngine powered speakers for the Mac, hence the desire to run all sound/music through that device but using the iPhone4 as control device.

    Hi Starbux48
    First off. The benefits of using Amarra, Pure Music, Audirvana or whatever, can only be heard if you have a true audiophile system set-up. Think of systems starting from 5000 U$. Then only if your music files are high resolution. Think ALAC or FLAC, AIFF or Wave.  For all other music playing the itunes set-up suffices. So the better idea for you will be playing the music over your macbook.
    Mountain lion offers airplay for intel based macs. You can use this. If you install the free Remote App. on your iPhone, you can use that to control itunes on your Macbook via wifi/Airplay. The remote app offers you the view of itunes on your Macbook and the screen of your Macbook changes with what you do on your iPhone. So you can even control the itunes radiostation from your iPhone.
    If you have an older, non-intel macbook, you can install airserver on your macbook. This will set you back 15 dollars or so, but will basically do the same.

  • How to use a Mac for broadcasting an internet radio station?

    Hi
    Have been toying with the idea of starting my own internet radio station. I have a new Macbook Pro and one Macbook from 4 years ago (updated to Yosemite though), and I have been wondering if Apple itself loads any capabilities into their hardware for starting off a slick and professional sounding radio broadcast.
    If one uses cloud tech, could the station be run with minimal requirements of storage etc at my end? Could iOS be a possibility if combined with other content over cloud?
    Thanks for any tips.
    Anuj

    Badriyah wrote:... I want to use the webcam as the video input for the second laptop... Is that possible?
    Yes.
    Although you will likely have much simpler and more satisfying results by having at least one of your Macs repaired, depending on which Macs you have and which Mac OS you use with them, there are at least the following possibilities:
      • Screen sharing overview
      • Allow access using Remote Desktop
      • Use another Mac as a display (Target Display Mod
    Message was edited by: EZ Jim
    Mac OSX 10.10.1

  • Where did the internet radio stations go?

    I can't find the internet radio stations in iTunes anymore.  How do I navigate to them?  Is it best just to switch over to hear them on windowsmedia.com?

  • Synching Internet Radio Stations Playlist with ATV - Doesn't always work!

    I'm having some challenges with ATV Take 2 and itunes 7.6.1 to synch a playlist that contains internet radio stations. I can get it to work when I first sync ATV to iTunes, but then within a few hours, the playlist does not remain synched, and when accessed through ATV, it gives a message to the effect that "there are no songs in this playlist". The only way to fix the problem is to re-synch ATV, which is a pain.
    Has anybody successfully set up a playlist containing internet radio stations in iTunes and managed to keep it synched in ATV Take 2?

    I am having the same problem. This is one of the features that I was really excited about

  • 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.

  • List of internet radio stations in 3.0

    Does anyone know where the AppleTV gets its list of internet radio stations from?
    I'd quite like to listen to the BBC channels (Radio 1 mostly) through the appleTV, but it's not in the list. Is there a way to add it?

    The radio stations have been there in itunes for some considerable time, I'm not sure anyone outside  knows what criteria has to be fulfilled to appear on the list, but I guess it's by arrangement, I suspect the BBC haven't any interest in being on that list.

  • How to select Internet radio stations on iPad from Music app?

    My iPad is connected to the Internet. In the Music app I how to select Internet radio stations?
    (iPad and iTunes are up-to-date versions.)

    Having searched older posts it appers I am not the only one looking for Internet radio on iOS devices; the answer is this Mac OS X iTunes feature is not in the iOS 7 Radio app or elsewhere on iOS7.  People suggested downloading TuneIn Radio (free with over 50,000 stations).

Maybe you are looking for

  • How can I set my mac (and the screen) to not go on sleep mode ?

    I just want my mac (and the screen) stay alive for a minimum of 8 to 10 hours, not going in sleep mode (or save screen).  Just displaying a web page without doing anything else. In preference system, energy save is all set to «never», but after a whi

  • I downloaded an album on my iphone 5..help!

    I downloaded an album on my iphone 5, and synced it to my laptop. it has put the songs on the playlist in itunes, but has taken it off my iphone, and wont put them on there even though they are in the playlist on the comp..?

  • How to get index of an item in the DropDownByKey control?

    Hi, I'm new to PDK for .NET and I have a simple question about the "IndexOf" method of the items collection. Attached a small test program: Dim li As New DropDownListItem li.Key = "A" li.Text = "Zero" DropDownByKey1.Items.Add(li) li = New DropDownLis

  • Need for iPad/PC/Mac networking at hospitals-

    Need for networking at hospitals… Our doctor (plus an IT guy for the hospital) is the go-to guy for the MDs that use Island hospital and want to review test results and documentation on each patient on the network. All imaging systems are now digital

  • HT5449 How do I get dictation to type numbers?

    I am having issues with dictation working at all, but when it works, it will only give me the words for numbers, not the numbers themselves.  Is there a way to let it know I want the numbers?