mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2024-11-07 16:44:13 +01:00
54a08bde29
* save the recorded audio to a file * Alignment -help * Save the correct audio * chage to a consistent coding style * Correct typo * Update examples/stream/stream.cpp * Update examples/stream/stream.cpp * Correct variable misuse * Update examples/stream/stream.cpp * Update examples/stream/stream.cpp * Update examples/stream/stream.cpp * Update examples/stream/stream.cpp * add *.bin .cxx/ .gradle/ cmake-build-debug/ to gitignore * add whisper.android.java * Added support for older versions of Android of Java * add examples for android java * add README.md for android java * add fullTranscribeWithTime * 增加 toString()方法和测试 * change return type to void * update to v1.4.1 * add WhisperService * chage to whisper_full_get_segment_t1 * add method transcribeDataWithTime * modified toString ``` return "[" + start + " --> " + end + "]:" + sentence; ``` * Optimize code logic * update text view on handle * set max lines * change Chinese to English * Update bindings/java/build.gradle * Update .gitignore * add android.java to github action * chage android.java to android_java in build.yml * remove gradle * chage jdk to temurin in android_java of CI * chage jdk to temurin 11 in android_java of CI * add x to gradlew * set api-level for android_java of CI * Update examples/whisper.android.java/app/src/main/jni/whisper/CMakeLists.txt * add ndk version in build.gradle * remove local.properties * add testFullTranscribeWithTime --------- Co-authored-by: litongmacos <litongjava@qq.com> Co-authored-by: bobqianic <129547291+bobqianic@users.noreply.github.com>
134 lines
3.6 KiB
Groovy
134 lines
3.6 KiB
Groovy
plugins {
|
|
id 'java'
|
|
id 'java-library'
|
|
id 'maven-publish'
|
|
id 'signing'
|
|
}
|
|
|
|
archivesBaseName = 'whispercpp'
|
|
group = 'io.github.ggerganov'
|
|
version = '1.4.0'
|
|
|
|
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
|
|
sourceSets {
|
|
main {
|
|
resources {
|
|
srcDirs = ['src/main/resources', 'build/generated/resources/main']
|
|
}
|
|
}
|
|
test {
|
|
runtimeClasspath += files('build/generated/resources/main')
|
|
}
|
|
}
|
|
|
|
tasks.register('copyLibwhisperDynlib', Copy) {
|
|
from '../../build'
|
|
include 'libwhisper.dynlib'
|
|
into 'build/generated/resources/main/darwin'
|
|
}
|
|
|
|
tasks.register('copyLibwhisperSo', Copy) {
|
|
from '../../build'
|
|
include 'libwhisper.so'
|
|
into 'build/generated/resources/main/linux-x86-64'
|
|
}
|
|
|
|
tasks.register('copyWhisperDll', Copy) {
|
|
from '../../build/Release'
|
|
include 'whisper.dll'
|
|
into 'build/generated/resources/main/windows-x86-64'
|
|
}
|
|
|
|
tasks.register('copyLibs') {
|
|
dependsOn copyLibwhisperDynlib, copyLibwhisperSo, copyWhisperDll
|
|
}
|
|
|
|
test {
|
|
systemProperty 'jna.library.path', project.file('build/generated/resources/main').absolutePath
|
|
}
|
|
|
|
java {
|
|
withSourcesJar()
|
|
withJavadocJar()
|
|
}
|
|
|
|
jar {
|
|
exclude '**/whisper_java.exp', '**/whisper_java.lib'
|
|
}
|
|
|
|
javadoc {
|
|
options.addStringOption('Xdoclint:none', '-quiet')
|
|
}
|
|
|
|
tasks.withType(Test) {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
dependencies {
|
|
implementation "net.java.dev.jna:jna:5.13.0"
|
|
testImplementation "org.junit.jupiter:junit-jupiter:5.9.2"
|
|
testImplementation "org.assertj:assertj-core:3.24.2"
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
mavenJava(MavenPublication) {
|
|
artifactId = 'whispercpp'
|
|
from components.java
|
|
pom {
|
|
name = 'whispercpp'
|
|
description = "Java JNA bindings for OpenAI's Whisper model, implemented in C/C++"
|
|
url = 'https://github.com/ggerganov/whisper.cpp'
|
|
licenses {
|
|
license {
|
|
name = 'MIT licence'
|
|
url = 'https://raw.githubusercontent.com/ggerganov/whisper.cpp/master/LICENSE'
|
|
}
|
|
}
|
|
developers {
|
|
developer {
|
|
id = 'ggerganov'
|
|
name = 'Georgi Gerganov'
|
|
email = 'ggerganov@gmail.com'
|
|
}
|
|
developer {
|
|
id = 'nalbion'
|
|
name = 'Nicholas Albion'
|
|
email = 'nalbion@yahoo.com'
|
|
}
|
|
}
|
|
scm {
|
|
connection = 'scm:git:git://github.com/ggerganov/whisper.cpp.git'
|
|
url = 'https://github.com/ggerganov/whisper.cpp'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
def releasesRepoUrl = 'https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/'
|
|
def snapshotsRepoUrl = 'https://s01.oss.sonatype.org/content/repositories/snapshots/'
|
|
url = version.endsWith('-SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
|
|
credentials {
|
|
username = System.getenv("MAVEN_USERNAME")
|
|
password = System.getenv("MAVEN_PASSWORD")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
signing {
|
|
def signingKey = System.getenv("PGP_SECRET")
|
|
def signingPassword = System.getenv("PGP_PASSPHRASE")
|
|
useInMemoryPgpKeys(signingKey, signingPassword)
|
|
sign publishing.publications.mavenJava
|
|
}
|