Advertisement
Guest User

Untitled

a guest
Sep 21st, 2015
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.03 KB | None | 0 0
  1. $ aplay -L
  2. null
  3.     Discard all samples (playback) or generate zero samples (capture)
  4. default:CARD=Intel
  5.     HDA Intel, ID 885 Analog
  6.     Default Audio Device
  7. sysdefault:CARD=Intel
  8.     HDA Intel, ID 885 Analog
  9.     Default Audio Device
  10. front:CARD=Intel,DEV=0
  11.     HDA Intel, ID 885 Analog
  12.     Front speakers
  13. surround21:CARD=Intel,DEV=0
  14.     HDA Intel, ID 885 Analog
  15.     2.1 Surround output to Front and Subwoofer speakers
  16. surround40:CARD=Intel,DEV=0
  17.     HDA Intel, ID 885 Analog
  18.     4.0 Surround output to Front and Rear speakers
  19. surround41:CARD=Intel,DEV=0
  20.     HDA Intel, ID 885 Analog
  21.     4.1 Surround output to Front, Rear and Subwoofer speakers
  22. surround50:CARD=Intel,DEV=0
  23.     HDA Intel, ID 885 Analog
  24.     5.0 Surround output to Front, Center and Rear speakers
  25. surround51:CARD=Intel,DEV=0
  26.     HDA Intel, ID 885 Analog
  27.     5.1 Surround output to Front, Center, Rear and Subwoofer speakers
  28. surround71:CARD=Intel,DEV=0
  29.     HDA Intel, ID 885 Analog
  30.     7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
  31. iec958:CARD=Intel,DEV=0
  32.     HDA Intel, ID 885 Digital
  33.     IEC958 (S/PDIF) Digital Audio Output
  34. default:CARD=Device
  35.     USB PnP Sound Device, USB Audio
  36.     Default Audio Device
  37. sysdefault:CARD=Device
  38.     USB PnP Sound Device, USB Audio
  39.     Default Audio Device
  40. front:CARD=Device,DEV=0
  41.     USB PnP Sound Device, USB Audio
  42.     Front speakers
  43. surround21:CARD=Device,DEV=0
  44.     USB PnP Sound Device, USB Audio
  45.     2.1 Surround output to Front and Subwoofer speakers
  46. surround40:CARD=Device,DEV=0
  47.     USB PnP Sound Device, USB Audio
  48.     4.0 Surround output to Front and Rear speakers
  49. surround41:CARD=Device,DEV=0
  50.     USB PnP Sound Device, USB Audio
  51.     4.1 Surround output to Front, Rear and Subwoofer speakers
  52. surround50:CARD=Device,DEV=0
  53.     USB PnP Sound Device, USB Audio
  54.     5.0 Surround output to Front, Center and Rear speakers
  55. surround51:CARD=Device,DEV=0
  56.     USB PnP Sound Device, USB Audio
  57.     5.1 Surround output to Front, Center, Rear and Subwoofer speakers
  58. surround71:CARD=Device,DEV=0
  59.     USB PnP Sound Device, USB Audio
  60.     7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
  61. iec958:CARD=Device,DEV=0
  62.     USB PnP Sound Device, USB Audio
  63.     IEC958 (S/PDIF) Digital Audio Output
  64.  
  65.  
  66.  
  67.  
  68. $ aplay -l
  69. **** List of PLAYBACK Hardware Devices ****
  70. card 0: Intel [HDA Intel], device 0: ID 885 Analog [ID 885 Analog]
  71.   Subdevices: 1/1
  72.   Subdevice #0: subdevice #0
  73. card 0: Intel [HDA Intel], device 1: ID 885 Digital [ID 885 Digital]
  74.   Subdevices: 1/1
  75.   Subdevice #0: subdevice #0
  76. card 1: Device [USB PnP Sound Device], device 0: USB Audio [USB Audio]
  77.   Subdevices: 1/1
  78.   Subdevice #0: subdevice #0
  79.  
  80.  
  81. $ cat .asoundrc
  82. defaults.pcm.!card Device
  83. defaults.pcm.!device 0
  84. defaults.ctl.!card Device
  85. defaults.pcm.dmix.rate 96000
  86. defaults.pcm.dmix.rate_converter "samplerate_best"
  87. defaults.pcm.dmix.format "S24_3LE"
  88.  
  89.  
  90. $ cat .config/mpv/config
  91. # Write your default config options here!
  92. vo=vdpau
  93. audio-channels=7.1
  94. hwdec=auto
  95. no-border
  96. ytdl=yes
  97. stop-screensaver=yes
  98. softvol-max=400
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement