9fee0ec4ca
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7101 a1c6a512-1295-4272-9138-f99709370657
116 lines
No EOL
3.2 KiB
Java
116 lines
No EOL
3.2 KiB
Java
/*
|
|
* 11/19/04 1.0 moved to LGPL.
|
|
*-----------------------------------------------------------------------
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU Library General Public License as published
|
|
* by the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*----------------------------------------------------------------------
|
|
*/
|
|
|
|
package javazoom.jl.player.advanced;
|
|
|
|
import java.io.BufferedInputStream;
|
|
import java.io.File;
|
|
import java.io.FileInputStream;
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
|
|
import javazoom.jl.decoder.JavaLayerException;
|
|
|
|
/**
|
|
* This class implements a sample player using Playback listener.
|
|
*/
|
|
public class jlap
|
|
{
|
|
|
|
public static void main(String[] args)
|
|
{
|
|
jlap test = new jlap();
|
|
if (args.length != 1)
|
|
{
|
|
test.showUsage();
|
|
System.exit(0);
|
|
}
|
|
else
|
|
{
|
|
try
|
|
{
|
|
test.play(args[0]);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
System.err.println(ex.getMessage());
|
|
System.exit(0);
|
|
}
|
|
}
|
|
}
|
|
|
|
public void play(String filename) throws JavaLayerException, IOException
|
|
{
|
|
InfoListener lst = new InfoListener();
|
|
playMp3(new File(filename), lst);
|
|
}
|
|
|
|
public void showUsage()
|
|
{
|
|
System.out.println("Usage: jla <filename>");
|
|
System.out.println("");
|
|
System.out.println(" e.g. : java javazoom.jl.player.advanced.jlap localfile.mp3");
|
|
}
|
|
|
|
public static AdvancedPlayer playMp3(File mp3, PlaybackListener listener) throws IOException, JavaLayerException
|
|
{
|
|
return playMp3(mp3, 0, Integer.MAX_VALUE, listener);
|
|
}
|
|
|
|
public static AdvancedPlayer playMp3(File mp3, int start, int end, PlaybackListener listener) throws IOException, JavaLayerException
|
|
{
|
|
return playMp3(new BufferedInputStream(new FileInputStream(mp3)), start, end, listener);
|
|
}
|
|
|
|
public static AdvancedPlayer playMp3(final InputStream is, final int start, final int end, PlaybackListener listener) throws JavaLayerException
|
|
{
|
|
final AdvancedPlayer player = new AdvancedPlayer(is);
|
|
player.setPlayBackListener(listener);
|
|
// run in new thread
|
|
new Thread()
|
|
{
|
|
public void run()
|
|
{
|
|
try
|
|
{
|
|
player.play(start, end);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
throw new RuntimeException(e.getMessage());
|
|
}
|
|
}
|
|
}.start();
|
|
return player;
|
|
}
|
|
|
|
public class InfoListener extends PlaybackListener
|
|
{
|
|
public void playbackStarted(PlaybackEvent evt)
|
|
{
|
|
System.out.println("Play started from frame " + evt.getFrame());
|
|
}
|
|
|
|
public void playbackFinished(PlaybackEvent evt)
|
|
{
|
|
System.out.println("Play completed at frame " + evt.getFrame());
|
|
System.exit(0);
|
|
}
|
|
}
|
|
} |