Skip to content

Latest commit

 

History

History
71 lines (45 loc) · 1.48 KB

readme.md

File metadata and controls

71 lines (45 loc) · 1.48 KB

🐶 Bark

Bark is a transformer-based text-to-audio model created by Suno. Bark can generate highly realistic, multilingual speech as well as other audio - including music, background noise and simple sound effects. The model can also produce nonverbal communications like laughing, sighing and crying. To support the research community, we are providing access to pretrained model checkpoints, which are ready for inference and available for commercial use.


Demo


Tested On

No Device Os Ram CPU

Development

  1. Compile Library
cd native_lib
rm -rf build
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
cmake --build .
  1. Compile Library Android
cd native_lib
rm -rf build
mkdir build
cd build
cmake .. -DCMAKE_TOOLCHAIN_FILE=${ANDROID_SDK}/ndk/24.0.8215888/build/cmake/android.toolchain.cmake -DCMAKE_BUILD_TYPE=Release -DANDROID_ABI=arm64-v8a
cmake --build .

Install Library

dart pub add bark_dart

or flutter

dart pub add bark_flutter

Import Library

import 'package:bark_dart/bark_dart.dart';

Credit

  1. Bark Cpp
  2. GGML
  3. BARK ORIGIN