Skip to content

Commit af6369f

Browse files
committed
initial commit
0 parents  commit af6369f

25 files changed

Lines changed: 1621 additions & 0 deletions

.github/assets/banner.png

10.6 KB
Loading

.github/workflows/gradle.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Gradle build
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
permissions:
14+
contents: read
15+
packages: write
16+
17+
steps:
18+
- uses: actions/checkout@v2
19+
- name: Set up JDK 16
20+
uses: actions/setup-java@v1
21+
with:
22+
java-version: '16'
23+
- name: Grant execute permission for gradlew
24+
run: chmod +x gradlew
25+
- name: Build with Gradle
26+
run: ./gradlew build
27+
- name: Upload jar
28+
uses: actions/upload-artifact@v2
29+
with:
30+
name: Artifacts
31+
path: build/libs/*.jar

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.classpath
2+
.project
3+
.settings/*
4+
.idea
5+
/bin/
6+
out
7+
.gradle
8+
*.iml
9+
build

README.md

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
![Banner](.github/assets/banner.png)
2+
3+
<b>A Spotify API written in Java to access the current playing song.</b><br>
4+
There is no need for an access token, any internet connection or a premium account
5+
because the API reads the information directly from the application itself.
6+
7+
#### Supported operating systems:
8+
- Windows
9+
10+
## Gradle Setup
11+
```groovy
12+
repositories {
13+
maven { url 'https://jitpack.io' }
14+
}
15+
16+
dependencies {
17+
implementation 'com.github.LabyStudio:java-spotify-api:1.0.0:all'
18+
}
19+
```
20+
21+
## Example
22+
Create the API and get the current playing song and position:
23+
```java
24+
// Create a new SpotifyAPI for your operating system
25+
SpotifyAPI api = SpotifyAPIFactory.create();
26+
27+
// It has no track until the song started playing once
28+
if (api.hasTrack()) {
29+
System.out.println(api.getTrack());
30+
}
31+
32+
// It has no position until the song is paused, the position changed or the song changed
33+
if (api.hasPosition()) {
34+
System.out.println(api.getPosition());
35+
}
36+
```
37+
38+
Register a listener to get notified when the song changes:
39+
```java
40+
api.registerListener(new SpotifyListener() {
41+
@Override
42+
public void onConnect() {
43+
System.out.println("Connected to Spotify!");
44+
}
45+
46+
@Override
47+
public void onTrackChanged(Track track) {
48+
System.out.println("Track changed: [" + track.getId() + "] " + track.getName() + " - " + track.getArtist() + " (" + formatDuration(track.getLength()) + ")");
49+
}
50+
51+
@Override
52+
public void onPositionChanged(int position) {
53+
if (api.getTrack() == null) {
54+
return;
55+
}
56+
57+
int length = api.getTrack().getLength();
58+
float percentage = 100.0F / length * position;
59+
60+
System.out.println("Seek: " + (int) percentage + "% (" + formatDuration(position) + " / " + formatDuration(length) + ")");
61+
}
62+
63+
@Override
64+
public void onPlayBackChanged(boolean isPlaying) {
65+
System.out.println(isPlaying ? "Playing" : "Paused");
66+
}
67+
68+
@Override
69+
public void onSync() {
70+
71+
}
72+
73+
@Override
74+
public void onDisconnect(Exception exception) {
75+
System.out.println("Disconnected: " + exception.getMessage());
76+
}
77+
});
78+
```

build.gradle

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
plugins {
2+
id 'java'
3+
id 'com.github.johnrengelman.shadow' version '7.0.0'
4+
}
5+
6+
group 'de.labystudio'
7+
version '1.0.0'
8+
9+
compileJava {
10+
sourceCompatibility = '1.8'
11+
targetCompatibility = '1.8'
12+
}
13+
14+
repositories {
15+
mavenCentral()
16+
}
17+
18+
dependencies {
19+
implementation group: 'net.java.dev.jna', name: 'jna', version: '4.5.0'
20+
implementation group: 'net.java.dev.jna', name: 'jna-platform', version: '4.5.0'
21+
}
22+
23+
build {
24+
dependsOn shadowJar
25+
}

gradle/wrapper/gradle-wrapper.jar

57.8 KB
Binary file not shown.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

gradlew

Lines changed: 185 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)