Linux_alsalib_SpeechToText

(★ 14)

Linux应用编程-音频应用编程-语音转文字项目

Linux_alsalib_SpeechToText Latest Version Download

# 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.

🔍

dir

View Details ▼

List files.

dir

List files in the current working directory:

tldr ls

View documentation for the original command:

dir

Show the contents of the current directory:

🔍

act

View Details ▼

Execute GitHub Actions locally using Docker.

act {{[-l|--list]}}

List the available jobs:

act

Run the default event:

act {{event_type}}

Run a specific event:

🔍

attr

View Details ▼

Manipulate extended attributes on filesystem objects.

attr -l {{path/to/file}}

List the names and sizes of all extended attributes of a file:

attr -g {{attribute_name}} {{path/to/file}}

Get the value of an extended attribute:

attr -s {{attribute_name}} -V "{{attribute_value}}" {{path/to/file}}

Set an extended attribute value:

🔍

apt-get

View Details ▼

Debian and Ubuntu package management utility.
Search for packages using `apt-cache`.
It is recommended to use `apt` when used interactively in Ubuntu versions 16.04 and later.

sudo apt-get update

Update the list of available packages and versions (it's recommended to run this before other `apt-get` commands):

sudo apt-get install {{package}}

Install a package, or update it to the latest available version:

sudo apt-get remove {{package}}

Remove a package:

🔍

size

View Details ▼

Display the sizes of sections inside binary files.

size {{path/to/file}}

Display the size of sections in a given object or executable file:

size {{[-o|--radix=8]}} {{path/to/file}}

Display the size of sections in a given object or executable file in [o]ctal:

size {{[-d|--radix=10]}} {{path/to/file}}

Display the size of sections in a given object or executable file in [d]ecimal:

// repository documentation