I want to make an online radio with java

I want to make an online radio with java. Can someone point in the right direction in what I would need to know and do.

you will have to learn about java media framework.
And probably live audio streaming too

Similar Messages

  • I just bought a new macair laptop and it doens't have idvd and I want to make a DVD slideshow with music.  I have an external CD drive. Is there an applicaation that apple has to do this?  IF I buy a used mac, which ones have idvd?

    I have a new macair laptop and it does not have idvd. It has a flashdirve instead, so no internal CD drive though I bought an external one. I'm wanted to make a DVD slide show with music and I was told I can't do that in order to play it on a dvd player. Does Mac have an appication to buy that can do the same thing? I thought I saw one for $39.95 but not sure if it will do this. The apple store did not know for sure. Also, if I bought a used mac laptop, which ones will have the idvd installed on it?
    Thanks,
    Phyllis

    It is now apparent that iWeb, and iDVD, will no longer be supported by Apple. This is evidenced by the fact that new Macs are shipping with iLife 11 installed but without iWeb and iDVD. 
    Other users have complained to Apple via Apple via http://www.apple.com/feedback/idvd.html and/or http://www.apple.com/contact/ and have received a boxed copy of iLIfe 11.  Give it a try. In the meantime the following maybe of interest:
    iWeb will still continue to work but without the following:
    Features No Longer Available Once MobileMe is Discontinued:
    ◼ Password protection
    ◼ Blog and photo comments
    ◼ Blog search
    ◼ Hit counter
    All of these issues can be replaced with 3rd party options.
    I found that if I published my site to a folder on my hard drive and then uploaded with a 3rd party FTP client subscriptions to slideshows and the RSS feed were broken.  If I published directly from iWeb to the FPT server those two features continued to work correctly.
    There's another problem and that's with iWeb's popup slideshows.  Once the MMe servers are no longer online the popup slideshow buttons will not display their images.
    Click to view full size
    However, Roddy McKay and I have figured out a way to modify existing sites with those slideshows and iWeb itself so that those images will display as expected once MobileMe servers are gone.  How to is described in this tutorial: #26 - How to Modify iWeb So Popup Slideshows Will Work After MobileMe is Discontinued.
    Apple has announced that iLife is now an unsupported product and those iApps will only be available thru the App Store from now on. However, the boxed iLife 11 at the online Apple Store (Store button at the top of the page) and those still on the shelves of retailers will include iWeb and iDVD. Those two apps were listed in small, gray text on the iLife 11 box that I bought. Personally, if I already didn't have a copy I would purchase one to have it for reinstallation purposes if ever needed.
    OT

  • I want to make an online payment on my Fry's account...HELP

    I'm trying to make an online payment. You are making it very, almost impossible to figure out what you want.

    I am pretty sure it will always use the credit card unless payment method is set to none.
    That has been my experience anyway.
    They already have the money from the gift card so would rather collect from your credit card.

  • In trying to make an online purchase with a new credit card but it won't let me?, In trying to make an online purchase with a new credit card but it won't let me?

    Trying to make an online purchase but it is saying contact iTunes  support to make transaction

    Yes it's saying to contact support

  • NewBie Question: Can you make a website completely with Java?

    Greetings my new Fellow Java programmers. My name is Jason and I am a computer programmer and web developer. I am verse in the following:
    1. HTML/XHTML
    2. CSS
    3. Asp.net
    4. VB.Net
    5. SQL
    I want to expand my skills to include:
    1.JAVA
    2. Action Script
    3. Java Script
    4. Ajax
    I have always wanted to learn Java and now I think it is the right time. So my question is can you create a site complete with Java or have a majority of the site functions and look attributed to Java? Is it similar to creating a site with vb.net and asp.net which utilizes html as well? Please explain. I am eager to learn this language. Thank you.
    -RomDog
    ...ROOOOOF!

    RomDog wrote:
    Is it similar to creating a site with vb.net and asp.net which utilizes html as well? Please explain. I am eager to learn this language. Thank you.
    I find it strange that you have to ask this. Of course the end result will be HTML/XHTML, that's what the browsers want. I would think that if you know the .NET side of web development, these concepts (client/server technologies) should already be clear to you.
    The short answer is yes it is possible. However if you want to learn Ajax/Javascript/Actionscript, I would learn those technologies before you learn Java web development as they are completely unrelated. You know that Javascript is not Java, right? You can implement javascript/Ajax in your .NET web applications already.
    Before you want to learn Java web development, learn Java. Seriously, learn basic Java first. It will be a great deal harder (and ultimately a lot more frustrating) to jump directly into the web development side of Java without knowing any of the basics. One of the biggest differences between .NET and Java platforms is that Microsoft basically holds your hand when it comes to making decision about which APIs to use and how to attack a problem; Java leaves you to the wolves to select from a gigantic amount of APIs and tools available that can each solve a problem in their very own way. Freedom is great, but it can be very daunting when you are just beginning.
    So before you even think about web development, I suggest you explore the java tutorial and see if you can get to grips with the language and the tool set.
    [http://java.sun.com/docs/books/tutorial/|http://java.sun.com/docs/books/tutorial/]
    When you are comfortable with the Java language and you are sure that Java web/enterprise development is still something for you, then come back and ask the question again.

  • Beginner (I want to make a simple button with code)(very basic)

    I've had some success with AS3, but so far all the code I've
    written just runs once the program starts, and thats it. The code
    is attached to the first frame of the flash file.
    I want to be able to take the code I've already made, and
    stick it into a button, so the code will run every time the button
    is pressed, without having to reload the whole program.
    Basically all I want to do is make a button that runs the
    code:
    trace('hi');
    every time it is pressed.
    Once I have that, I can figure out the rest by my self.
    Please help.

    Is this button on the stage and in the timeline? If it is,
    then select the button on the stage and then, in the Properties
    window, give the button an instance name if it doesn't have one
    yet.
    In a new layer, in the first frame, add this code:
    buttonInstanceName.addEventListener(MouseEvent.MOUSE_UP,
    buttonUp);
    function buttonUp(event:MouseEvent):void {
    trace("hi");
    substitute the button instance name that you used for
    "buttonInstanceName" in the first line.

  • Filling out online forms with java

    I wanted to create a program that will fill out a form on a website by running a java program. COuld anyone tell me what i would use to make the program fill in i guess a text feild and then select a radio button and submitting the results? I tried looking through books and online but i dont even know what im looking for really.

    Maybe look for browser plugin programming. Otherwise, I don't know how a Java application (as opposed to an Applet) could ever access an HTML page in a browser window.
    At least not without going native. On Win machines, you might use something like the Java-Com bridge to access the IE's API... if it provides one and its methods help you to do what you intend.

  • Help With Java Alarm

    Hello Everybody
    I Want To Make an Alarm Application With Java Like
    The User Enters Alarm Time as 3.15.4 AM or something like that
    which class shall i use?
    if there's any demos that would be great.
    Thank You

    Another Question
    In The following Code Sir I Want The User to input The Time In The Format h/m/s/am.pm
    And After That Specific Time Passes an action happens
    How to Do that?
    import java.awt.*;
    import javax.swing.*;
    import java.text.DateFormat;
    import java.util.Date;
    public class Alarm extends Thread {
        public static void main(String[] args) {
             final JLabel label=new JLabel();
             JButton button=new JButton("Set Alarm");
             JTextArea tarea=new JTextArea("Enter Task Here",4,21);
             JScrollPane scroll=new JScrollPane(tarea);
             JTextField text1=new JTextField("hh",2);
             JTextField text2=new JTextField("mm",2);
             JTextField text3=new JTextField("ss",2);
             JTextField text4=new JTextField("AM/PM",4);
             text1.setToolTipText("Hours From 1 To 12");
             text2.setToolTipText("Minutes From 0 To 60");
             text3.setToolTipText("Seconds From 0 To 60");            
             JFrame frame=new JFrame("JAlarm");
             frame.setSize(270,180);
             JPanel panel1=new JPanel();
             panel1.add(label);
             panel1.add(scroll);
               Thread t = new Thread() {
            public void run() {
                 for(;;){
                  Date now = new Date();
                 label.setText(DateFormat.getTimeInstance().format(now));
        t.start();
             JPanel panel2=new JPanel();
             panel2.add(button);
             panel2.add(text1);
             panel2.add(text2);
             panel2.add(text3);
             panel2.add(text4);
             frame.setLayout(new BorderLayout());
             frame.add(panel1,BorderLayout.NORTH);
             frame.add(panel2,BorderLayout.CENTER);
             frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
             frame.setVisible(true);               
    }

  • Online Radio Management Software for Arch Linux

    After switching to Arch Linux, I found out that I have no interest to try any other distro. Unfortunately I really missed something that I have used in Ubuntu, and that was Sourcefabric : Airtime. It is a free opensource radio automation software, and that mean if you want to have an online radio, you can make it yourself using Airtime.
    Can somebody port this software to Arch Linux, or anybody have a better choice/solution? Any suggestion will greatly be appreciated. Thank you very much for spending your time reading this.

    Read about the AUR. Create a PKGFILE for it and then you can install it via makepkg. Then, if it works well, submit your PKGFILE to the AUR.

  • How to make the server respond with a popup?

    I want to make the server respond with a popup?my code is like this,but it does not work,why?
    <code>
    public class Welcome2
         public static void main(String[] args)throws IOException
              ServerSocket server = new ServerSocket(2222);
              while(true)
                   Socket s = server.accept();
                   BufferedReader in = new BufferedReader(new InputStreamReader(s.getInputStream()));
                   String msg = in.readLine();
                   if(msg.equals("visitor"))
                        System.out.println("recv...");               
                        JOptionPane.showMessageDialog(null,"Visitor coming!\n");
         System.exit(0);
                   server.close();
    </code>
    it can properly print out "recv...",but no popup,why?

    Define "does not work". What happens?
    Does your program compile? Do you get an exception? Does the program receive a line? Is the line equal to whatever you expect? Is showMessageDialog() called? Put in some debugging println's to see what happens.

  • How to make a Beziere path with REC.

    I'am tring to follow a flashlight with a particle emmiter. I want to make a beziere path with different points across the timeline using the REC mode. And then attach the particle to the path so it can follow correctly with speed and curves the flashlight. How do i do this?

    Kyle,
    Presuming you wish to move one circle to snap to another circle at a certain predetermined angle, and you have it placed at a distance at that angle you may (Smart Guides are your friends):
    1) Select both circles, and with the Line Segment Tool drag a line from centre to centre (Smart Guides say center when you are at the first one and close enough to the second one);
    2) Select the circle to move with the normal Selection Tool, then hover over the spot where the line crosses it (Smart Guides say intersect), then ClickDrag along the line (Smart Guides say path) until you have dragged it to snap to the other circle (Smart Guides say intersect).
    This works whether the circles are beside each other or one is inside the other.
    When moving vertically or horizontally, there is no need for the line, and you can just ClickDrag by the relevant Anchor Point.

  • Suggestions I am use too movie maker want to make talking pets for business

    I am considering buying CS4 for promoting my small business.
    I want to make viral video's with talking pets and am overwhelmed with the tech talk about CS4.
    I was hoping I could get some advice as how to do this, so I can try it before I buy it as my business budget is very low.
    I also could use some tips on creative ways I can easily make better videos with cs4.
    Here are some examples of my work please keep in mind it is all has been done learning as I go with 0 budget. http://www.youtube.com/user/NorthwestSuburbs
    I apreciate any and all input.
    Thank You, Joe Hill 
    here is a pic of a recent idea I have I want to make the cat talk and myself.

    That looks really good. I'm going to try the demo.
    Thank You, Joe Hill

  • How to make customize Replace function with Positions not pattern ?

    Hi
    Due to Repalce with patterns in  flex, i am facing issue.
    I  want to make cutomize replace function with  parameters
    1 Parameter - String to replace
    2 Parameter - Start Posion.
    3 Parameter - Last position
      which return string value.
    For Example
      replaceInWholeString(str:String, sPos:Number, lPos:Number ):String
    values like
    1st paramter - "asked"
    2nd Paramter - 11
    3rd Paramter -  15
    Original String :: I want to reply
    Output string : I want to asked
    Please Reply ,if someone having solution
    Thanks
    Sunil Rana

    You can use any number of the String methods to acomplish this.
    I would proabably go with something like: slice(...) + input + substr(...);

  • How to make edit in place with spry

    HI
    im new to spry im using DW 8 and i want to make edit in place
    with it can i? how?
    thanks in advance.

    Anyone please?
    same question here.
    Thanks.

  • Using sockets with java from PL/SQL in Oracle 8.1.7 DBA

    Hey all,
    I've been struggling for a couple of weeks now with a problem. I wrote a framework around a toolkit which makes socket connections to another server. I am attempting to use the framework from within a PL/SQL script, which is calling the framework class files which have been loaded into Oracle 8.1.7 database. The problem seems to be if I grant all permissions, or socket permissions for all hosts/ports, or even the ones I know about are being used, I get a hang when trying to connect. The funny thing is, using the toolkit, if I invoke their classes directly within code written from Oracle's code editor, it will work.
    I suspect there is
    a) Some hidden permission issue
    b) A bug in the sockets implementation Oracle is using for their JVM.
    Can anyone offer insight to this problem?
    Thanks,
    Dave Blake
    [email protected]

    Hello,
    I'm trying to investigate the same thing.
    I want to make a soap-client with PL/SQL with 8i 8.1.6.0.0
    Did you succeed some additional information ??
    I tried to run the following example:
    http://www.oracle.com/technology/tech/webservices/htdocs/samples/dbwebservice/DBWebServices_PLSQL.html
    but it only works with 9i.
    With 8i the errors encountered were : XMLTYPE undefined
    Perhaps if we find the definition of XMLTYPE and we process it to 8i we'll be able to run the example ??
    thank's

Maybe you are looking for

  • 4thGen iPod isn't showing up in iTunes

    I have a classroom set of iPod 4th gen that I am trying to update using a different MacBook than I had used previously.  I am logged into my iTunes account for the ipods but the ipods do not show up on the computer.  Ideas on what I'm doing wrong?

  • Creation of XML !DOCTYPE DTD Validation line

    Hello all! I've been working in the creation of an XML File via Abap Objects. <b>if_ixml</b>          For Document Header <b>if_ixml_document</b> For Document Header <b>if_ixml_element</b>  For Nodes and their Child Nodes I have already developed the

  • How do I get iphoto(9.3.2) from my emac(OSX 10.7.5) to my ipad(7.1.2)??

    I have iPhoto on my eMac and would like to view my pix on my iPad. How do I do that?

  • Photoshop freezes if i try to open any kind of file

    I have delete preferences. uninstalled and reinstalled photoshop. Graphics driver is update. Nothing I can tell has changed that would cause it to not work. i am using photoshop cc. the last thing I was able to do was save a file in the psd format. N

  • Solaris 10 x86 Jumpstart TFTP error not defined!!!!

    I have a solaris 10 jumpstart sparc that does all x86 installs. Until now it has been working fine. I now have to jumpstart two new clients a sun X4200 and an X2100. However I cannot get past the loading of the miniroot. It finds the menu.lst.MACRONA