Changes between Version 1 and Version 2 of USB


Ignore:
Timestamp:
07/03/21 00:31:24 (3 years ago)
Author:
krit
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • USB

    v1 v2  
    3030[jpc@rock ~]$
    3131}}}
     32
     33== USB FIFINE Microphones FIFINE K670 ==
     34
     35list record capture hardware
     36{{{
     37[krit@mini tmp]$ arecord --list-devices
     38**** List of CAPTURE Hardware Devices ****
     39card 0: PCH [HDA Intel PCH], device 0: ALC257 Analog [ALC257 Analog]
     40  Subdevices: 1/1
     41  Subdevice #0: subdevice #0
     42card 1: Microphone [FIFINE K670 Microphone], device 0: USB Audio [USB Audio]
     43  Subdevices: 1/1
     44  Subdevice #0: subdevice #0
     45
     46}}}
     47
     48Since usb mic FIFINE on card 1 subdevice 0, we put hw:1,0 in following
     49{{{
     50arecord -f cd -D hw:1,0 -d 3 test.wav
     51aplay -f cd test.wav
     52}}}
     53
     54Record my desktop with specific input mic hardware
     55{{{
     56recordmydesktop --device hw:1,0
     57}}}