KokoroMac

(★ 14)

Offline Voice Studio for Your Mac.

File Explorer

  • .gitignore
  • LICENSE.txt
  • README-ZH.md
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

espeak-ng

View Details ▼

A multi-lingual software speech synthesizer.
See also: `speak-ng`, `espeak`.

espeak-ng "{{text}}"

Speak a phrase aloud:

echo "{{text}}" | espeak-ng

Speak text from `stdin`:

espeak-ng -f {{path/to/file}}

Speak the contents of a [f]ile:

🔍

git checkout

View Details ▼

Checkout a branch or paths to the working tree.

git checkout -b {{branch_name}}

Create and switch to a new branch:

git checkout -b {{branch_name}} {{reference}}

Create and switch to a new branch based on a specific reference (branch, remote/branch, tag are examples of valid references):

git checkout {{branch_name}}

Switch to an existing local branch:

🔍

xattr

View Details ▼

Utility to work with extended filesystem attributes.

xattr -l {{file}}

List key:value extended attributes for a given file:

xattr -w {{attribute_key}} {{attribute_value}} {{file}}

Write an attribute for a given file:

xattr -d {{com.apple.quarantine}} {{file}}

Delete an attribute from a given file:

// repository documentation