-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPlayer.java
More file actions
184 lines (160 loc) · 5.81 KB
/
Player.java
File metadata and controls
184 lines (160 loc) · 5.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
import java.io.File;
import java.io.IOException;
import java.util.Queue;
import java.util.Scanner;
import java.util.concurrent.TimeUnit;
import javax.sound.sampled.AudioInputStream;
import javax.sound.sampled.AudioSystem;
import javax.sound.sampled.Clip;
import javax.sound.sampled.LineUnavailableException;
import javax.sound.sampled.UnsupportedAudioFileException;
public class Player
{
// to store current position
Long currentFrame;
Clip clip;
// current status of clip
String status;
AudioInputStream audioInputStream;
static String filePath;
// constructor to initialize streams and clip
public Player()
throws UnsupportedAudioFileException,
IOException, LineUnavailableException
{
// create AudioInputStream object
audioInputStream =
AudioSystem.getAudioInputStream(new File(filePath).getAbsoluteFile());
// create clip reference
clip = AudioSystem.getClip();
// open audioInputStream to the clip
clip.open(audioInputStream);
clip.loop(Clip.LOOP_CONTINUOUSLY);
}
public static void PlaySongs() throws UnsupportedAudioFileException, LineUnavailableException, IOException, InterruptedException {
if(!Playlists.songQueue.isEmpty()) {
try {
filePath = Playlists.songQueue.peek();
System.out.println("Now Playing: "+ filePath.substring(6, filePath.indexOf(".")));
Playlists.songQueue.remove();
Player audioPlayer =
new Player();
audioPlayer.play();
Scanner sc = new Scanner(System.in);
while (true) {
System.out.println(" 1. Pause");
System.out.println(" 2. Resume");
System.out.println(" 3. Restart");
System.out.println(" 4. Stop");
System.out.println(" 5. Add song to Queue");
System.out.println(" 6. Next");
int c = sc.nextInt();
audioPlayer.gotoChoice(c);
if (c == 4)
break;
}
sc.close();
} catch (Exception ex) {
System.out.println("Error with playing sound.");
ex.printStackTrace();
}
}
else{
System.out.println("Song Queue has ended or is empty!");
}
}
// Work as the user enters his choice
private void gotoChoice(int c)
throws IOException, LineUnavailableException, UnsupportedAudioFileException, InterruptedException {
switch (c) {
case 1 -> pause();
case 2 -> resumeAudio();
case 3 -> restart();
case 4 -> {stop();
System.out.println("Stopping playlist...\n");
TimeUnit.SECONDS.sleep(1);
System.out.println("Player STOP");
TimeUnit.SECONDS.sleep(1);
StartInterface.First();
}
case 5 -> {System.out.println("Add songs to playlist");
addSongsToPlaylist();}
case 6 -> next();
}
}
// Method to play the audio
public void play() throws UnsupportedAudioFileException, LineUnavailableException, IOException, InterruptedException {
//start the clip
clip.start();
status = "play";
}
// Method to pause the audio
public void pause()
{
if (status.equals("paused"))
{
System.out.println("audio is already paused");
return;
}
this.currentFrame =
this.clip.getMicrosecondPosition();
clip.stop();
status = "paused";
}
// Method to resume the audio
public void resumeAudio() throws UnsupportedAudioFileException,
IOException, LineUnavailableException, InterruptedException {
if (status.equals("play"))
{
System.out.println("Audio is already "+
"being played");
return;
}
clip.close();
resetAudioStream();
clip.setMicrosecondPosition(currentFrame);
this.play();
}
// Method to restart the audio
public void restart() throws IOException, LineUnavailableException,
UnsupportedAudioFileException, InterruptedException {
clip.stop();
clip.close();
resetAudioStream();
currentFrame = 0L;
clip.setMicrosecondPosition(0);
this.play();
}
public void addSongsToPlaylist(){
String songName = Playlists.next_line("Enter the name of the song you want to add: ");
SongHandler.SongCollection.printList();
if(!SongHandler.SongCollection.search(songName+".wav")){
System.out.println("Song doesn't exist!");
}
else{
Playlists.songQueue.add("Songs/"+songName+".wav");
}
}
// Method to stop the audio
public void stop() throws UnsupportedAudioFileException,
IOException, LineUnavailableException
{
currentFrame = 0L;
clip.stop();
clip.close();
}
// Method to jump over a specific part
public void next() throws UnsupportedAudioFileException, LineUnavailableException, IOException, InterruptedException {
stop();
Player.PlaySongs();
}
// Method to reset audio stream
public void resetAudioStream() throws UnsupportedAudioFileException, IOException,
LineUnavailableException
{
audioInputStream = AudioSystem.getAudioInputStream(
new File(filePath).getAbsoluteFile());
clip.open(audioInputStream);
clip.loop(Clip.LOOP_CONTINUOUSLY);
}
}