I'm trying to Download an API and use for my project But i don't how can i download it
I want to Download PocketSphinx API :
https://github.com/cmusphinx/pocketsphinx
37 messages · Page 1 of 1 (latest)
I'm trying to Download an API and use for my project But i don't how can i download it
I want to Download PocketSphinx API :
https://github.com/cmusphinx/pocketsphinx
⌛ This post has been reserved for your question.
Hey @violet lance! Please use
/closeor theClose Postbutton above when you're finished. Please remember to follow the help guidelines. This post will be automatically closed after 300 minutes of inactivity.
TIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here.
What exactly do you want to download?
Speech to text API from Git
https://github.com/cmusphinx/pocketsphinx
I download but how can i put to my project
but ChatGPT said you can using with java
Never trust ChatGPT
I think you first need to build it somehow
check the installation section for that
But i don't know how can i build it
that one seems to be a Java project
okay after i clone it how can i build it ?
I already download Maven
that one seems like a Gradle project I think
but maybe there are prebuilt binaries
oh i see i will download Gradle
it seems to be available here: https://oss.sonatype.org/content/repositories/snapshots/edu/cmu/sphinx/
so if you want to use it in a Maven project, you can use
<repositories>
<repository>
<id>snapshots-repo</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
and
<dependencies>
<dependency>
<groupId>edu.cmu.sphinx</groupId>
<artifactId>sphinx4-core</artifactId>
<version>5prealpha-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>edu.cmu.sphinx</groupId>
<artifactId>sphinx4-data</artifactId>
<version>5prealpha-SNAPSHOT</version>
</dependency>
</dependencies>
mabye
without you needing to build it yourself
I just add and they works
that's all right? without download or build anything right?
yes
Thank you
If you are finished with your post, please close it.
If you are not, please ignore this message.
Note that you will not be able to send further messages here after this post have been closed but you will be able to create new posts.
❤️
this configuration means that edu.cmu.sphinx/sphinx4-core/5prealpha-SNAPSHOT should be downloaded from https://oss.sonatype.org/content/repositories/snapshots
Maven is there for managing your project's dependencies
it downloads and makes the dependencies listed there available to your application