WM8960-Audio-HAT

(★ 140)

The drivers of [WM8960 Audio HAT] for Raspberry Pi

파일 탐색기

  • asound.conf
  • builddtbo.sh
  • dkms.conf
  • install.sh
  • LICENSE
  • Makefile
  • README.md
  • uninstall.sh
  • wm8960-soundcard
  • wm8960-soundcard.c
  • wm8960-soundcard.dtbo
  • wm8960-soundcard.dts
  • wm8960-soundcard.service
  • wm8960.c
  • wm8960.h
  • wm8960_asound.state

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

git clone

설명 보기 ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

aplay

설명 보기 ▼

ALSA 사운드카드 드라이버를 위한 사운드 플레이어.
더 많은 정보: <https://manned.org/aplay>.

aplay {{path/to/file}}

특정 파일 재생 (파일 형식에 따라 샘플링 속도, 비트 깊이 등이 자동으로 결정됨):

aplay {{[-d|--duration]}} 10 {{[-r|--rate]}} 2500 {{path/to/file}}

특정 파일의 처음 10초를 2500 Hz에서 재생:

aplay {{[-c|--channels]}} 1 {{[-t|--file-type]}} raw {{[-r|--rate]}} 22050 {{[-f|--format]}} mu_law {{path/to/file}}

22050 Hz, 모노, 8비트, Mu-Law `.au` 파일로 원시 파일 재생:

🔍

arecord

설명 보기 ▼

ALSA 사운드카드 드라이버용 사운드 레코더.
더 많은 정보: <https://manned.org/arecord>.

arecord {{[-vv|--verbose --verbose]}} {{[-f|--format]}} cd {{path/to/file.wav}}

"CD" 품질로 녹음 (완료 시 `<Ctrl c>`로 종료):

arecord {{[-vv|--verbose --verbose]}} {{[-f|--format]}} cd {{[-d|--duration]}} {{10}} {{path/to/file.wav}}

"CD" 품질로 10초 동안 고정된 길이로 녹음:

arecord {{[-vv|--verbose --verbose]}} {{[-f|--format]}} cd {{[-t|--file-type]}} raw | lame -r - {{path/to/file.mp3}}

녹음하여 MP3로 저장 (완료 시 `<Ctrl c>`로 종료):

🔍

reboot

설명 보기 ▼

시스템을 재부팅합니다.
더 많은 정보: <https://manned.org/reboot.8>.

reboot

시스템 재부팅:

sudo reboot

즉시 재부팅:

reboot {{[-p|--poweroff]}}

시스템 전원 끄기 (`poweroff`와 동일):

// repository documentation