Results 1 to 2 of 2

Thread: วิธีเล่นไฟล์เสียง (Play Audio in Applications java)

  1. #1
    Administrator asylu3's Avatar
    Join Date
    Jun 2000
    Location
    Thailand
    Posts
    3,557


    วิธีเล่นไฟล์เสียง (Play Audio in Applications java)

    การเล่นเสียงใน Java นั้นถ้าเป็น java applet นั้นง่ายแสนง่ายแต่ว่าสำหรับแบบ application แล้วยุ่งยากพอสมควรเพราะจากตัวอย่างที่ sun ยกตัวอย่างไว้ค่อนข้างซับซ้อน ผมจึงพยายามเขียนตัวที่ง่ายๆขึ้นมากให้ลองเอาไปใช้กัน

    เวลาเอาไปใช้จริงให้เปลี่ยนชื่อ file ตามต้องการนะครับ

    Let's Check out this source code

    [src]
    import sun.audio.*; //import the sun.audio package
    import java.io.*;
    public class KengSound
    {
    KengSound()
    {
    try{
    InputStream in = new FileInputStream("flute+hrn+mrmba.aiff");
    AudioStream sound = new AudioStream(in);
    AudioPlayer.player.start(sound );
    } catch(IOException e ) {

    }

    }

    public static void main(String args[])
    {
    new KengSound();
    }

    };[/src]

  2. #2
    Administrator asylu3's Avatar
    Join Date
    Jun 2000
    Location
    Thailand
    Posts
    3,557


    Re: วิธีเล่นไฟล์เสียง (Play Audio in Applications java)

    การเล่นเสียงแบบต่อเนื่อง


    [src]
    import sun.audio.*; //import the sun.audio package
    import java.io.*;

    public class KengSound
    {
    KengSound()
    {
    try{
    InputStream in = new FileInputStream("bottle-open.wav");
    AudioStream as = new AudioStream (in);
    AudioData data = as.getData();
    ContinuousAudioDataStream cas = new ContinuousAudioDataStream (data);
    AudioPlayer.player.start(cas);
    // AudioPlayer.player.stop(cas); //ยกเลิกบรรทัดนี้ เพื่อหยุดเสียง

    } catch(IOException e ) {

    }

    }

    public static void main(String args[])
    {
    new KengSound();
    }

    };

    [/src]

Similar Threads

  1. Audio CD, HDCD, SACD, DVD Audio แตกต่างกันยังไง
    By khawtaan in forum Computer Tip & Trick / Tutorial
    Replies: 0
    Last Post: 21-05-2008, 04:49 PM
  2. ~ Rich Internet Applications With Adobe Flex and Java ~
    By hooligan in forum E-Book, Video หรือบทความทั่วไปด้าน Computer
    Replies: 0
    Last Post: 17-04-2008, 12:14 PM
  3. Eclipse Web Tools Platform Developing Java Web Applications
    By chaochao in forum PHP,ASP,Javascript, Html
    Replies: 0
    Last Post: 06-10-2007, 03:39 PM
  4. Replies: 0
    Last Post: 23-09-2007, 08:22 PM
  5. Play Station2 New Serie
    By asylu3 in forum ข่าวสารด้าน IT ใหม่ๆ
    Replies: 2
    Last Post: 12-06-2003, 07:45 AM

Members who have read this thread : 0

Actions : (View-Readers)

There are no names to display.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •