Play an MP3 Using Java Media Framework

Play an MP3 Using Java Media Framework

The following code shows you how to develop a simple Java application that can play MP3 files. This application is based on JMF (Java Media Framework).

import javax.media.*;import java.io.*;import java.net.URL; class mp3 extends Thread{ private URL url;private MediaLocator mediaLocator;private Player playMP3; public mp3(String mp3){try{   this.url = new URL(mp3);   }catch(java.net.MalformedURLException e)      {System.out.println(e.getMessage());}} public void run(){try{   mediaLocator = new MediaLocator(url);        playMP3 = Manager.createPlayer(mediaLocator);    }catch(java.io.IOException e)      {System.out.println(e.getMessage());    }catch(javax.media.NoPlayerException e)      {System.out.println(e.getMessage());}playMP3.addControllerListener(new ControllerListener()  {  public void controllerUpdate(ControllerEvent e)     {     if (e instanceof EndOfMediaEvent)         {         playMP3.stop();         playMP3.close();         }     }  } ); playMP3.realize(); playMP3.start(); } }public class playmp3{  public static void main(String[] args)  {  mp3 t = new mp3("file:///C://JavaApplications//cd.mp3");  t.start();  }}
Share the Post:
XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

kubernetes logging

Kubernetes Logging: What You Need to Know

Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes

ransomware cyber attack

Why Is Ransomware Such a Major Threat?

One of the most significant cyber threats faced by modern organizations is a ransomware attack. Ransomware attacks have grown in both sophistication and frequency over the past few years, forcing

data dictionary

Tools You Need to Make a Data Dictionary

Data dictionaries are crucial for organizations of all sizes that deal with large amounts of data. they are centralized repositories of all the data in organizations, including metadata such as