JLayer is a decorator for Java Swing components, often used for for painting over and catching events from subcomponents in the Swing framework.

learn more… | top users | synonyms

0
votes
1answer
42 views

JLayer exception when trying to play audio file

I've been testing a Java library that works in both PC and Android platforms, a few time ago someone here told me to use JLayer. Today I was happily coding and then this exception showed up: ...
1
vote
2answers
114 views

Loop background music in Java using JLayer

I'm trying to add background music to my game using JLayer. How can I to set it to play in a loop? http://www.javazoom.net/javalayer/javalayer.html BackgroundMusic bm = new ...
0
votes
1answer
53 views

How to stop a sound using JLayer

I'm using JLayer to play mp3 files in my game, but It's impossible for me to stop the song. That's my code: public void play(final String sonido) { reproduciendo.put(sonido, 1); Thread ...
3
votes
2answers
73 views

How do I import these Java classes I downloaded? [duplicate]

I'm a beginner in programming and I need to know how to import classes I got from the Internet to my text file. I downloaded JLayer for use in writing an MP3 player, but typing import ...
2
votes
2answers
165 views

FileNotFoundException, the file exists Java [closed]

I have a very strange issue, I'm trying to play some MP3s with some Java code and JLayer. I have a method setup to generate the file path, but it's giving me a ton of grief. Here is the return ...
0
votes
2answers
258 views

Playing only one mp3 file in a thread using JLayer in java issue

I'm working at an Audio Player, which is written in Java with GUI. For playing the mp3 files, I've chosen JLayer library from javazoom because I saw it's very popular and used. I made the GUI, managed ...
4
votes
2answers
599 views

AudioTrack - short array to byte array distortion using jlayer(java mp3 decoder) [closed]

I'm using jLayer to decode MP3 data, with this call: SampleBuffer output = (SampleBuffer) decoder.decodeFrame(frameHeader, bitstream); This call which returns the decoded data, returns an array of ...
1
vote
1answer
102 views

jlayer increasing size of file when convert .mp3 file to .wav file

I am using jlayer to convert mp3 file to wav format. The code is working good but the size of wav file is increased about 5 times the size of mp3 file. For converting i have used the jar file ...
1
vote
3answers
178 views

How to make a JFrame blurred in java?

In my java program, when the user clicks on a button in the main JFrame another JFrame becomes visible on top of the main frame. Now how to make the previous frame blurred? Exactly like the ...
0
votes
0answers
183 views

JLayer convert mp3 to wav

I am trying to convet mp3 to wav with JLayer, while It seems that it can not set rate. public void convert(String sourceName, String destName, ProgressListener progressListener, Decoder.Params ...
1
vote
1answer
240 views

Slow MP3 decoding on Android using jlayer

It require 1 minute to decode 10 seconds, how can I decode the MP3 faster? public static byte[] decode(String path, int startMs, int maxMs) throws FileNotFoundException { float totalMs = 0; ...
0
votes
0answers
242 views

android jlayer convert mp3 to pcm

The while loop keep looping, but from the doc: the Header describing details of the frame read, or null if the end of the stream has been reached. - try{ File file = new ...
0
votes
1answer
161 views

Applet AccessControlException access denied

I am trying to reference JLayer. <applet code="AppStart.class" height="480" width="640" archive="jl1.0.jar, AnApplet.jar" </applet> I keep getting this error on the console Exception in ...
1
vote
0answers
105 views

JLayer multiple sounds at the same time

I'm having some trouble using JLayer for playing multiple sounds. I tried the forums, but they seem to be down at the moment. I'm using this piece of code for testing: public void playSound() { ...
0
votes
1answer
197 views

Loading an mp3 file with JLayer from inside the Jar

I want to load an mp3 file from inside the jar file itself and then play it with JLayer. When I try to do it, I either get a NullPointerException or a FileNotFoundException. Any idea on how to fix ...
0
votes
2answers
164 views

LayerUI, g.drawImage underlined

public class GraphicsBoard extends LayerUI { String picPath = "pictures/"; String[] fileName = { "cards.png", "BlackJackBoard.png" }; ClassLoader cl = GraphicsBoard.class.getClassLoader(); ...
5
votes
3answers
575 views

placing a transparent JPanel on top of another JPanel not working

I am trying to place a JPanel on top of another JPanel which contains a JTextArea and a button and i want to the upper apnel to be transparent. I have tried it by making the setOpaque(false) of the ...
0
votes
1answer
173 views

File Input Stream working fine in compiler, but not working after build

I am trying to play an mp3 file using a neat library I just discovered (JLayer) and it works fine when compiled (in Netbeans) with this code: ClassLoader cl = this.getClass().getClassLoader(); url = ...
1
vote
1answer
153 views

Adding a JPanel with fixed size above a JLayer

Following Oracle's Myopia guide, I have a simple JPanel which is added to a JFrame as a JLayer. Simple enough, this blurs the JPanel's components. However, I'm trying to add a second JPanel above ...
0
votes
2answers
502 views

android: convert mp3 to wav using Jlayer

I need to convert mp3 to wav in android and i found that it can be possible using Jlayer. To do this, i coded below, and it looks working for a long time about 30seconds with no error, but the wav ...
0
votes
1answer
129 views

Split and fade an MP3 file with JLayer

I want to extract some music (from second x to y) from an MP3 file and add some fade-in and fade-out effects. Can I do this with JLayer? So far I only know how to play a song with this library.
2
votes
2answers
124 views

Secure Desktop Mode effect for java application

Does anyone now how to achieve a "Secure-Desktop Mode" (effect) such as one gets from the Windows Vista/7 UAC consent-blocks? I assume it is some function which will remove pixels here-and-there (and ...
2
votes
1answer
169 views

jLayer — Playing mp3 causes distortion at start of file

I'm using jLayer 1.0 to play a simple mp3 file. It works fine apart from the first 3 seconds or so (adding 5 seconds of silence to the start of the track fixes the issue). This is the code I'm using: ...
2
votes
1answer
333 views

Resize layer of JLayeredPane

I'm having a problem while trying to make my own chess game using JLayeredPane. I got this far: (Hopefully you can see block G6 has a green border on the label showing which block was selected) ...
3
votes
2answers
155 views

convert a java project (I used in it JLayer 1.0.1 to play mp3) to a runnable jar file

I built a java project and I used (JLayer 1.0.1) to play mp3 audio. when I test my project with eclipce I find that it worked correctly 100% and the JLayer 1.0.1 libraries play my mp3 files ...
0
votes
1answer
588 views

Change volume java using jlayer?

I've searched and read another topics but i still can't solve my problems. I had one java main class and one java jframe. I wanna add jslider to change volume in my mp3 player. What should i do? ...
0
votes
1answer
1k views

Decoding MP3 files with JLayer

I want to use JLayer to decode an MP3 file. I have searched and searched for documentation and examples on how exactly to do this, and have turned up nothing of use. Everything I find is embedded in ...
0
votes
0answers
314 views

Change playback speed with JavaZoom JLayer

I am using JLayer sound framework to play wav files with basic functionality (seek,play/pause/stop), I need now to also allow playback speed changes. Does anyone know if JLayer allows this ...
3
votes
2answers
2k views

JLayer - Pause and resume song

I've noticed that a lot of topics were about pausing/resuming an MP3 using JLayer, so in order to help everybody, I've made a whole entire class designed just for that! Please see the answer below. ...
2
votes
0answers
202 views

Java 7 - JLayer, no LockableUI

Having never before used J(X)Layer, I can see references to LockableUI over the internet. But it looks , in Java 7, like all we have of seemingly big 'parent' API (JX...) is two classes JLayer and ...
4
votes
4answers
2k views

Circular Progress Bar for Java Swing not working

i've discovered this test project from Oracle site because i want to add a circular progress bar in my project. I'm developing the application with Netbeans, and when i start the application, the ...
1
vote
1answer
227 views

Introducing JLayeredPane to an existing JFrame

I've been staring at Oracle's JLayeredPane tutorials but they are laid out in a manner that is confusing to me and doesn't get at what I am trying to do. I have an application that up to now has had ...
0
votes
1answer
150 views

jLayer 1.0.1 getPosition does not always return ms

I have implemented a simple usage of jLayer on my program (play/stop,display progress) which works fine. I however have an issue with the getPosition() which returns value in ms on my Windows XP ...
0
votes
1answer
160 views

can't make the Jlayer change position with the scrollpane

I'm having a jlayer decorationg a panel that is added on a jscrollpane. When i scroll down, the panel components gets scrolled in the right way but i can't make my jlayer move with it. Any ideas on ...
2
votes
1answer
933 views

Using JLayer (AKA JavaLayer) to analyze mp3 files in java?

I would like to perform a FFT on frames of an MP3 file using Java (think spectrum analyzer). I found JLayer which seems to fit the requirement of MP3 Decoding, but I'm not sure how to use it (Most ...
0
votes
2answers
810 views

How to pre-buffer an MP3 file completely in Java

I'm working on a music player, which receives a playlist with remote mp3 files (HTTP) and play them subsequently. I want to have it start streaming the first track, if enough of the song is buffered ...
1
vote
4answers
470 views

Write mp3 file to disk while playing in Java

I have an application playing remote MP3 files over HTTP using the JLayer/BasicPlayer libraries. I want to save the played mp3 files to disk without re-downloading them. This is the code using the ...
1
vote
1answer
476 views

Playing multiple MP3 tracks in different threads

I am trying to run 4 MP3 tracks at the same time in different threads. I am using the JLayer1.0 MP3 library to play the MP3s. Given that I cannot control when the threads will start, I am using a ...
1
vote
1answer
104 views

How do I get tooltips to activate on a JLayer-covered JComponent?

I have a Java class that extends JTextField and covers it with a JLayer (new Java 1.7 feature) in order to display custom graphical effects in certain conditions. Without the JLayer it is easy enough ...
0
votes
1answer
506 views

how do i find out duration/total play time of an mp3 file using java?

i am developing an application in java in which a part of it include playing mp3 file via other application. Now i need to find the duration (total play time) of the mp3 file.how do i do that?
2
votes
1answer
1k views

Component layering Java Swing, Layers showing on hover

I have two JPanels layered on top of each other in the same container. I am using container.add(jpanel,0); and container.add(otherjpanel, 1). It works fine however in order for the top layer to show ...
0
votes
1answer
301 views

Using jlayer/javazoom, or vlcj to playback audio (MPEG4, RAW AMR, or THREE GPP)

Can jlayer/javazoom, or vlcj playback MPEG4, RAW AMR, or THREE GPP? I have searched, and I cannot find how to correctly use the players, or whether they even support playback of these file formats. ...
1
vote
0answers
659 views

Javazoom BasicPlayer: Seeking with inputstreams

I'm developing a programm that streams music from the internet. When i stream a song, i don't have access to it's URL. I only get an input stream and some information like length in bytes and so ...
1
vote
0answers
262 views

Java MP3SPI in Applet

I've been struggling with this for the passed few hours but perhaps you guys can give me some help. I've written an application that requires the use of MP3 files. The application runs correctly given ...
2
votes
2answers
786 views

Set of questions related to playing sound / video in java

There are some set of questions i wanted to ask related to Java Sound which are as follows : Can i use xuggler with netbeans ? If yes can anyone please tell the way out ? What are the audio and ...
0
votes
2answers
241 views

Accessing global objects from within events in Java [closed]

My Java experience is minimal, and I can't seem to find anything that explains to me how to solve my problem; I've been trying different things for hours. I'm using the Phidgets RFID Java library ...
24
votes
3answers
801 views

Music in JLayer stops when other apps play music

I have written a few hundred line app in Clojure that uses the JLayer Java library for audio where I run mp3s in the background. This works fine but as soon as I run any other music, YouTube etc in ...
3
votes
2answers
888 views

pausing mp3 in java

I'm currently working on a project in which i need to play a background mp3 sound. I managed to do that using the Jlayer library and a piece of code found here However, I needed to add some more ...
1
vote
2answers
4k views

Stop/mute playing music using JLayer

i am using jlayer to play mp3 files in my progam but in the jlayer documentation i could not find any useful info about stopping the playing music and continuing from where it was stopped. any ideas? ...
2
votes
1answer
730 views

Jar with compressed music with java?

I've tried to add music to an application I've made. First I tried with .wav files though they became so huge that the application became too large to upload anywhere. So I changed the files to .mp3, ...

1 2