Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
topi314 authored Aug 13, 2023
1 parent e5c3e77 commit 8a1cc76
Showing 1 changed file with 17 additions and 19 deletions.
36 changes: 17 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,47 +1,45 @@
[ ![Download](https://api.bintray.com/packages/natanbc/maven/lavadsp/images/download.svg) ](https://bintray.com/natanbc/maven/lavadsp/_latestVersion)

# lavadsp

A bunch of lavaplayer audio filters implemented with native code
A bunch of lavaplayer audio filters implemented with native code forked from https://github.com/natanbc/lavadsp with mac m1 natives fixes

## Getting Started

### Installing

Replace `VERSION` with the version you want to use. The latest version can be found in the badge above.

#### Gradle

```gradle
repositories {
maven{ "http://maven.arbjerg.dev/releases" }
}
dependencies {
compile "dev.arbjerg:lavadsp:VERSION"
}
```

#### Maven

```xml
<repositories>
<repository>
<id>jcenter</id>
<name>jcenter</name>
<url>http://jcenter.bintray.com/</url>
<id>arbjerg</id>
<name>arbjerg</name>
<url>http://maven.arbjerg.dev/releases</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>com.github.natanbc</groupId>
<groupId>dev.arbjerg</groupId>
<artifactId>lavadsp</artifactId>
<version>VERSION</version>
</dependency>
</dependencies>
```

#### Gradle

```gradle
repositories {
jcenter()
}
dependencies {
compile 'com.github.natanbc:lavadsp:VERSION'
}
```

### Basic Usage

```java
Expand Down

0 comments on commit 8a1cc76

Please sign in to comment.