driftkit-audio-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ai.driftkit</groupId> <artifactId>driftkit-audio-core</artifactId> <version>0.5.5</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>ai.driftkit</groupId> <artifactId>driftkit-audio</artifactId> <version>0.5.5</version> </parent> <artifactId>driftkit-audio-core</artifactId> <name>DriftKit Audio Processing Core</name> <description>Core audio processing and transcription functionality</description> <dependencies> <!-- DriftKit Common --> <dependency> <groupId>ai.driftkit</groupId> <artifactId>driftkit-common</artifactId> <version>${project.version}</version> </dependency> <!-- AssemblyAI Java SDK --> <dependency> <groupId>com.assemblyai</groupId> <artifactId>assemblyai-java</artifactId> </dependency> <!-- OkHttp for WebSocket support --> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> </dependency> <!-- Jackson --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <!-- Audio processing libraries --> <dependency> <groupId>com.googlecode.soundlibs</groupId> <artifactId>mp3spi</artifactId> </dependency> <dependency> <groupId>com.googlecode.soundlibs</groupId> <artifactId>tritonus-share</artifactId> </dependency> <dependency> <groupId>ws.schild</groupId> <artifactId>jave-core</artifactId> </dependency> <dependency> <groupId>ws.schild</groupId> <artifactId>jave-nativebin-linux64</artifactId> </dependency> <dependency> <groupId>ws.schild</groupId> <artifactId>jave-nativebin-win64</artifactId> </dependency> <dependency> <groupId>ws.schild</groupId> <artifactId>jave-nativebin-osx64</artifactId> </dependency> <!-- Apache Commons Lang --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <!-- Lombok --> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> <!-- SLF4J --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <!-- JUnit 5 --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> </dependencies> </project>