1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006 | Module #0
Name: module-device-restore
Argument:
Usage counter: n/a
Properties:
module.author = "Lennart Poettering"
module.description = "Automatically restore the volume/mute state of devices"
module.version = "4.0"
Module #1
Name: module-stream-restore
Argument:
Usage counter: n/a
Properties:
module.author = "Lennart Poettering"
module.description = "Automatically restore the volume/mute/device state of streams"
module.version = "4.0"
Module #2
Name: module-card-restore
Argument:
Usage counter: n/a
Properties:
module.author = "Lennart Poettering"
module.description = "Automatically restore profile of cards"
module.version = "4.0"
Module #3
Name: module-augment-properties
Argument:
Usage counter: n/a
Properties:
module.author = "Lennart Poettering"
module.description = "Augment the property sets of streams with additional static information"
module.version = "4.0"
Module #4
Name: module-switch-on-port-available
Argument:
Usage counter: n/a
Properties:
Module #7
Name: module-alsa-card
Argument: device_id="0" name="pci-0000_00_1b.0" card_name="alsa_card.pci-0000_00_1b.0" namereg_fail=false tsched=yes fixed_latency_range=no ignore_dB=no deferred_volume=yes use_ucm=yes card_properties="module-udev-detect.discovered=1"
Usage counter: 1
Properties:
module.author = "Lennart Poettering"
module.description = "ALSA Card"
module.version = "4.0"
Module #8
Name: module-udev-detect
Argument:
Usage counter: n/a
Properties:
module.author = "Lennart Poettering"
module.description = "Detect available audio hardware and load matching drivers"
module.version = "4.0"
Module #9
Name: module-bluetooth-policy
Argument:
Usage counter: n/a
Properties:
module.author = "Frédéric Dalleau"
module.description = "When a bluetooth sink or source is added, load module-loopback"
module.version = "4.0"
Module #10
Name: module-bluetooth-discover
Argument:
Usage counter: n/a
Properties:
module.author = "Joao Paulo Rechi Vita"
module.description = "Detect available bluetooth audio devices and load bluetooth audio drivers"
module.version = "4.0"
Module #11
Name: module-native-protocol-unix
Argument:
Usage counter: n/a
Properties:
module.author = "Lennart Poettering"
module.description = "Native protocol (UNIX sockets)"
module.version = "4.0"
Module #12
Name: module-default-device-restore
Argument:
Usage counter: n/a
Properties:
module.author = "Lennart Poettering"
module.description = "Automatically restore the default sink and source"
module.version = "4.0"
Module #13
Name: module-rescue-streams
Argument:
Usage counter: n/a
Properties:
module.author = "Lennart Poettering"
module.description = "When a sink/source is removed, try to move their streams to the default sink/source"
module.version = "4.0"
Module #14
Name: module-always-sink
Argument:
Usage counter: n/a
Properties:
module.author = "Colin Guthrie"
module.description = "Always keeps at least one sink loaded even if it's a null one"
module.version = "4.0"
Module #15
Name: module-intended-roles
Argument:
Usage counter: n/a
Properties:
module.author = "Lennart Poettering"
module.description = "Automatically set device of streams based of intended roles of devices"
module.version = "4.0"
Module #16
Name: module-suspend-on-idle
Argument:
Usage counter: n/a
Properties:
module.author = "Lennart Poettering"
module.description = "When a sink/source is idle for too long, suspend it"
module.version = "4.0"
Module #17
Name: module-systemd-login
Argument:
Usage counter: n/a
Properties:
module.author = "Lennart Poettering"
module.description = "Create a client for each login session of this user"
module.version = "4.0"
Module #18
Name: module-position-event-sounds
Argument:
Usage counter: n/a
Properties:
module.author = "Lennart Poettering"
module.description = "Position event sounds between L and R depending on the position on screen of the widget triggering them."
module.version = "4.0"
Module #19
Name: module-filter-heuristics
Argument:
Usage counter: n/a
Properties:
module.author = "Colin Guthrie"
module.description = "Detect when various filters are desirable"
module.version = "4.0"
Module #20
Name: module-filter-apply
Argument:
Usage counter: n/a
Properties:
module.author = "Colin Guthrie"
module.description = "Load filter sinks automatically when needed"
module.version = "4.0"
Module #26
Name: module-alsa-card
Argument: device_id="1" name="usb-046d_0809_846080B0-02-U0x46d0x809" card_name="alsa_card.usb-046d_0809_846080B0-02-U0x46d0x809" namereg_fail=false tsched=yes fixed_latency_range=no ignore_dB=no deferred_volume=yes use_ucm=yes card_properties="module-udev-detect.discovered=1"
Usage counter: 0
Properties:
module.author = "Lennart Poettering"
module.description = "ALSA Card"
module.version = "4.0"
Module #27
Name: module-alsa-card
Argument: device_id="2" name="usb-Burr-Brown_from_TI_USB_Audio_CODEC-00-CODEC" card_name="alsa_card.usb-Burr-Brown_from_TI_USB_Audio_CODEC-00-CODEC" namereg_fail=false tsched=yes fixed_latency_range=no ignore_dB=no deferred_volume=yes use_ucm=yes card_properties="module-udev-detect.discovered=1"
Usage counter: 1
Properties:
module.author = "Lennart Poettering"
module.description = "ALSA Card"
module.version = "4.0"
Sink #4
State: SUSPENDED
Name: alsa_output.pci-0000_00_1b.0.analog-stereo
Description: Built-in Audio Analogue Stereo
Driver: module-alsa-card.c
Sample Specification: s16le 2ch 44100Hz
Channel Map: front-left,front-right
Owner Module: 7
Mute: yes
Volume: 0: 100% 1: 100%
0: 0.00 dB 1: 0.00 dB
balance 0.00
Base Volume: 100%
0.00 dB
Monitor Source: alsa_output.pci-0000_00_1b.0.analog-stereo.monitor
Latency: 0 usec, configured 0 usec
Flags: HARDWARE HW_MUTE_CTRL HW_VOLUME_CTRL DECIBEL_VOLUME LATENCY
Properties:
alsa.resolution_bits = "16"
device.api = "alsa"
device.class = "sound"
alsa.class = "generic"
alsa.subclass = "generic-mix"
alsa.name = "CX20590 Analog"
alsa.id = "CX20590 Analog"
alsa.subdevice = "0"
alsa.subdevice_name = "subdevice #0"
alsa.device = "0"
alsa.card = "0"
alsa.card_name = "HDA Intel PCH"
alsa.long_card_name = "HDA Intel PCH at 0xf2620000 irq 35"
alsa.driver_name = "snd_hda_intel"
device.bus_path = "pci-0000:00:1b.0"
sysfs.path = "/devices/pci0000:00/0000:00:1b.0/sound/card0"
device.bus = "pci"
device.vendor.id = "8086"
device.vendor.name = "Intel Corporation"
device.product.id = "1c20"
device.product.name = "6 Series/C200 Series Chipset Family High Definition Audio Controller"
device.form_factor = "internal"
device.string = "front:0"
device.buffering.buffer_size = "65536"
device.buffering.fragment_size = "32768"
device.access_mode = "mmap+timer"
device.profile.name = "analog-stereo"
device.profile.description = "Analogue Stereo"
device.description = "Built-in Audio Analogue Stereo"
alsa.mixer_name = "Intel CougarPoint HDMI"
alsa.components = "HDA:14f1506e,17aa21da,00100002 HDA:80862805,80860101,00100000"
module-udev-detect.discovered = "1"
device.icon_name = "audio-card-pci"
Ports:
analog-output-speaker: Speakers (priority: 10000)
analog-output-headphones: Headphones (priority: 9000, not available)
Active Port: analog-output-speaker
Formats:
pcm
Sink #9
State: SUSPENDED
Name: alsa_output.usb-Burr-Brown_from_TI_USB_Audio_CODEC-00-CODEC.analog-stereo
Description: PCM2902 Audio Codec Analogue Stereo
Driver: module-alsa-card.c
Sample Specification: s16le 2ch 44100Hz
Channel Map: front-left,front-right
Owner Module: 27
Mute: no
Volume: 0: 64% 1: 64%
0: -11.63 dB 1: -11.63 dB
balance 0.00
Base Volume: 100%
0.00 dB
Monitor Source: alsa_output.usb-Burr-Brown_from_TI_USB_Audio_CODEC-00-CODEC.analog-stereo.monitor
Latency: 0 usec, configured 0 usec
Flags: HARDWARE HW_MUTE_CTRL HW_VOLUME_CTRL DECIBEL_VOLUME LATENCY
Properties:
alsa.resolution_bits = "16"
device.api = "alsa"
device.class = "sound"
alsa.class = "generic"
alsa.subclass = "generic-mix"
alsa.name = "USB Audio"
alsa.id = "USB Audio"
alsa.subdevice = "0"
alsa.subdevice_name = "subdevice #0"
alsa.device = "0"
alsa.card = "2"
alsa.card_name = "USB Audio CODEC"
alsa.long_card_name = "Burr-Brown from TI USB Audio CODEC at usb-0000:00:1a.0-1.1.1.1.3, full speed"
alsa.driver_name = "snd_usb_audio"
device.bus_path = "pci-0000:00:1a.0-usb-0:1.1.1.1.3:1.0"
sysfs.path = "/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.1/3-1.1.1/3-1.1.1.1/3-1.1.1.1.3/3-1.1.1.1.3:1.0/sound/card2"
udev.id = "usb-Burr-Brown_from_TI_USB_Audio_CODEC-00-CODEC"
device.bus = "usb"
device.vendor.id = "08bb"
device.vendor.name = "Texas Instruments"
device.product.id = "2902"
device.product.name = "PCM2902 Audio Codec"
device.serial = "Burr-Brown_from_TI_USB_Audio_CODEC"
device.string = "front:2"
device.buffering.buffer_size = "352800"
device.buffering.fragment_size = "176400"
device.access_mode = "mmap+timer"
device.profile.name = "analog-stereo"
device.profile.description = "Analogue Stereo"
device.description = "PCM2902 Audio Codec Analogue Stereo"
alsa.mixer_name = "USB Mixer"
alsa.components = "USB08bb:2902"
module-udev-detect.discovered = "1"
device.icon_name = "audio-card-usb"
Ports:
analog-output: Analogue Output (priority: 9900)
Active Port: analog-output
Formats:
pcm
Source #4
State: SUSPENDED
Name: alsa_input.pci-0000_00_1b.0.analog-stereo
Description: Built-in Audio Analogue Stereo
Driver: module-alsa-card.c
Sample Specification: s16le 2ch 44100Hz
Channel Map: front-left,front-right
Owner Module: 7
Mute: yes
Volume: 0: 97% 1: 97%
0: -0.83 dB 1: -0.83 dB
balance 0.00
Base Volume: 13%
-54.00 dB
Monitor of Sink: n/a
Latency: 0 usec, configured 0 usec
Flags: HARDWARE HW_MUTE_CTRL HW_VOLUME_CTRL DECIBEL_VOLUME LATENCY
Properties:
alsa.resolution_bits = "16"
device.api = "alsa"
device.class = "sound"
alsa.class = "generic"
alsa.subclass = "generic-mix"
alsa.name = "CX20590 Analog"
alsa.id = "CX20590 Analog"
alsa.subdevice = "0"
alsa.subdevice_name = "subdevice #0"
alsa.device = "0"
alsa.card = "0"
alsa.card_name = "HDA Intel PCH"
alsa.long_card_name = "HDA Intel PCH at 0xf2620000 irq 35"
alsa.driver_name = "snd_hda_intel"
device.bus_path = "pci-0000:00:1b.0"
sysfs.path = "/devices/pci0000:00/0000:00:1b.0/sound/card0"
device.bus = "pci"
device.vendor.id = "8086"
device.vendor.name = "Intel Corporation"
device.product.id = "1c20"
device.product.name = "6 Series/C200 Series Chipset Family High Definition Audio Controller"
device.form_factor = "internal"
device.string = "front:0"
device.buffering.buffer_size = "65536"
device.buffering.fragment_size = "32768"
device.access_mode = "mmap+timer"
device.profile.name = "analog-stereo"
device.profile.description = "Analogue Stereo"
device.description = "Built-in Audio Analogue Stereo"
alsa.mixer_name = "Intel CougarPoint HDMI"
alsa.components = "HDA:14f1506e,17aa21da,00100002 HDA:80862805,80860101,00100000"
module-udev-detect.discovered = "1"
device.icon_name = "audio-card-pci"
Ports:
analog-input-microphone-internal: Internal Microphone (priority: 8900)
analog-input-microphone-dock: Dock Microphone (priority: 7800, not available)
analog-input-microphone: Microphone (priority: 8700, not available)
Active Port: analog-input-microphone-internal
Formats:
pcm
Source #8
State: SUSPENDED
Name: alsa_output.pci-0000_00_1b.0.analog-stereo.monitor
Description: Monitor of Built-in Audio Analogue Stereo
Driver: module-alsa-card.c
Sample Specification: s16le 2ch 44100Hz
Channel Map: front-left,front-right
Owner Module: 7
Mute: no
Volume: 0: 100% 1: 100%
0: 0.00 dB 1: 0.00 dB
balance 0.00
Base Volume: 100%
0.00 dB
Monitor of Sink: alsa_output.pci-0000_00_1b.0.analog-stereo
Latency: 0 usec, configured 0 usec
Flags: DECIBEL_VOLUME LATENCY
Properties:
device.description = "Monitor of Built-in Audio Analogue Stereo"
device.class = "monitor"
alsa.card = "0"
alsa.card_name = "HDA Intel PCH"
alsa.long_card_name = "HDA Intel PCH at 0xf2620000 irq 35"
alsa.driver_name = "snd_hda_intel"
device.bus_path = "pci-0000:00:1b.0"
sysfs.path = "/devices/pci0000:00/0000:00:1b.0/sound/card0"
device.bus = "pci"
device.vendor.id = "8086"
device.vendor.name = "Intel Corporation"
device.product.id = "1c20"
device.product.name = "6 Series/C200 Series Chipset Family High Definition Audio Controller"
device.form_factor = "internal"
device.string = "0"
module-udev-detect.discovered = "1"
device.icon_name = "audio-card-pci"
Formats:
pcm
Source #16
State: SUSPENDED
Name: alsa_input.usb-046d_0809_846080B0-02-U0x46d0x809.analog-mono
Description: Webcam Pro 9000 Analogue Mono
Driver: module-alsa-card.c
Sample Specification: s16le 1ch 48000Hz
Channel Map: mono
Owner Module: 26
Mute: yes
Volume: 0: 100%
0: 0.00 dB
balance 0.00
Base Volume: 30%
-31.00 dB
Monitor of Sink: n/a
Latency: 0 usec, configured 0 usec
Flags: HARDWARE HW_MUTE_CTRL HW_VOLUME_CTRL DECIBEL_VOLUME LATENCY
Properties:
alsa.resolution_bits = "16"
device.api = "alsa"
device.class = "sound"
alsa.class = "generic"
alsa.subclass = "generic-mix"
alsa.name = "USB Audio"
alsa.id = "USB Audio"
alsa.subdevice = "0"
alsa.subdevice_name = "subdevice #0"
alsa.device = "0"
alsa.card = "1"
alsa.card_name = "USB Device 0x46d:0x809"
alsa.long_card_name = "USB Device 0x46d:0x809 at usb-0000:00:1a.0-1.1.4, high speed"
alsa.driver_name = "snd_usb_audio"
device.bus_path = "pci-0000:00:1a.0-usb-0:1.1.4:1.2"
sysfs.path = "/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.1/3-1.1.4/3-1.1.4:1.2/sound/card1"
udev.id = "usb-046d_0809_846080B0-02-U0x46d0x809"
device.bus = "usb"
device.vendor.id = "046d"
device.vendor.name = "Logitech, Inc."
device.product.id = "0809"
device.product.name = "Webcam Pro 9000"
device.serial = "046d_0809_846080B0"
device.form_factor = "webcam"
device.string = "hw:1"
device.buffering.buffer_size = "192000"
device.buffering.fragment_size = "96000"
device.access_mode = "mmap+timer"
device.profile.name = "analog-mono"
device.profile.description = "Analogue Mono"
device.description = "Webcam Pro 9000 Analogue Mono"
alsa.mixer_name = "USB Mixer"
alsa.components = "USB046d:0809"
module-udev-detect.discovered = "1"
device.icon_name = "camera-web-usb"
Ports:
analog-input-microphone: Microphone (priority: 8700)
Active Port: analog-input-microphone
Formats:
pcm
Source #20
State: SUSPENDED
Name: alsa_output.usb-Burr-Brown_from_TI_USB_Audio_CODEC-00-CODEC.analog-stereo.monitor
Description: Monitor of PCM2902 Audio Codec Analogue Stereo
Driver: module-alsa-card.c
Sample Specification: s16le 2ch 44100Hz
Channel Map: front-left,front-right
Owner Module: 27
Mute: no
Volume: 0: 100% 1: 100%
0: 0.00 dB 1: 0.00 dB
balance 0.00
Base Volume: 100%
0.00 dB
Monitor of Sink: alsa_output.usb-Burr-Brown_from_TI_USB_Audio_CODEC-00-CODEC.analog-stereo
Latency: 0 usec, configured 0 usec
Flags: DECIBEL_VOLUME LATENCY
Properties:
device.description = "Monitor of PCM2902 Audio Codec Analogue Stereo"
device.class = "monitor"
alsa.card = "2"
alsa.card_name = "USB Audio CODEC"
alsa.long_card_name = "Burr-Brown from TI USB Audio CODEC at usb-0000:00:1a.0-1.1.1.1.3, full speed"
alsa.driver_name = "snd_usb_audio"
device.bus_path = "pci-0000:00:1a.0-usb-0:1.1.1.1.3:1.0"
sysfs.path = "/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.1/3-1.1.1/3-1.1.1.1/3-1.1.1.1.3/3-1.1.1.1.3:1.0/sound/card2"
udev.id = "usb-Burr-Brown_from_TI_USB_Audio_CODEC-00-CODEC"
device.bus = "usb"
device.vendor.id = "08bb"
device.vendor.name = "Texas Instruments"
device.product.id = "2902"
device.product.name = "PCM2902 Audio Codec"
device.serial = "Burr-Brown_from_TI_USB_Audio_CODEC"
device.string = "2"
module-udev-detect.discovered = "1"
device.icon_name = "audio-card-usb"
Formats:
pcm
Source #22
State: SUSPENDED
Name: alsa_input.usb-Burr-Brown_from_TI_USB_Audio_CODEC-00-CODEC.analog-stereo
Description: PCM2902 Audio Codec Analogue Stereo
Driver: module-alsa-card.c
Sample Specification: s16le 2ch 44100Hz
Channel Map: front-left,front-right
Owner Module: 27
Mute: no
Volume: 0: 100% 1: 100%
0: 0.00 dB 1: 0.00 dB
balance 0.00
Base Volume: 100%
0.00 dB
Monitor of Sink: n/a
Latency: 0 usec, configured 0 usec
Flags: HARDWARE DECIBEL_VOLUME LATENCY
Properties:
alsa.resolution_bits = "16"
device.api = "alsa"
device.class = "sound"
alsa.class = "generic"
alsa.subclass = "generic-mix"
alsa.name = "USB Audio"
alsa.id = "USB Audio"
alsa.subdevice = "0"
alsa.subdevice_name = "subdevice #0"
alsa.device = "0"
alsa.card = "2"
alsa.card_name = "USB Audio CODEC"
alsa.long_card_name = "Burr-Brown from TI USB Audio CODEC at usb-0000:00:1a.0-1.1.1.1.3, full speed"
alsa.driver_name = "snd_usb_audio"
device.bus_path = "pci-0000:00:1a.0-usb-0:1.1.1.1.3:1.0"
sysfs.path = "/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.1/3-1.1.1/3-1.1.1.1/3-1.1.1.1.3/3-1.1.1.1.3:1.0/sound/card2"
udev.id = "usb-Burr-Brown_from_TI_USB_Audio_CODEC-00-CODEC"
device.bus = "usb"
device.vendor.id = "08bb"
device.vendor.name = "Texas Instruments"
device.product.id = "2902"
device.product.name = "PCM2902 Audio Codec"
device.serial = "Burr-Brown_from_TI_USB_Audio_CODEC"
device.string = "front:2"
device.buffering.buffer_size = "352800"
device.buffering.fragment_size = "176400"
device.access_mode = "mmap+timer"
device.profile.name = "analog-stereo"
device.profile.description = "Analogue Stereo"
device.description = "PCM2902 Audio Codec Analogue Stereo"
alsa.mixer_name = "USB Mixer"
alsa.components = "USB08bb:2902"
module-udev-detect.discovered = "1"
device.icon_name = "audio-card-usb"
Ports:
analog-input: Analogue Input (priority: 10000)
Active Port: analog-input
Formats:
pcm
Sink Input #401
Driver: protocol-native.c
Owner Module: 11
Client: 372
Sink: 4
Sample Specification: s16le 2ch 44100Hz
Channel Map: front-left,front-right
Format: pcm, format.sample_format = "\"s16le\"" format.channels = "2" format.rate = "44100" format.channel_map = "\"front-left,front-right\""
Corked: yes
Mute: no
Volume: 0: 100% 1: 100%
0: 0.00 dB 1: 0.00 dB
balance 0.00
Buffer Latency: 131768 usec
Sink Latency: 0 usec
Resample method: n/a
Properties:
media.name = "'Nu:Sunrise' by 'DJ Space Walrus'"
application.name = "Rhythmbox"
native-protocol.peer = "UNIX socket client"
native-protocol.version = "28"
media.role = "music"
application.process.id = "6834"
application.process.user = "alan"
application.process.host = "deep-thought"
application.process.binary = "rhythmbox"
application.language = "en_GB.UTF-8"
window.x11.display = ":0"
application.process.machine_id = "bd78a1b34bd07d84643ae1b7567ac76f"
application.process.session_id = "c2"
application.icon_name = "rhythmbox"
module-stream-restore.id = "sink-input-by-media-role:music"
media.title = "Nu:Sunrise"
media.artist = "DJ Space Walrus"
Sink Input #483
Driver: protocol-native.c
Owner Module: 11
Client: 436
Sink: 9
Sample Specification: float32le 2ch 44100Hz
Channel Map: front-left,front-right
Format: pcm, format.sample_format = "\"float32le\"" format.rate = "44100" format.channels = "2" format.channel_map = "\"front-left,front-right\""
Corked: yes
Mute: no
Volume: 0: 100% 1: 100%
0: 0.00 dB 1: 0.00 dB
balance 0.00
Buffer Latency: 84104 usec
Sink Latency: 0 usec
Resample method: copy
Properties:
media.role = hex:
phonon.streamid = hex:
media.name = "Playback Stream"
application.name = "Telegram"
native-protocol.peer = "UNIX socket client"
native-protocol.version = "28"
application.process.id = "17244"
application.process.user = "alan"
application.process.host = "deep-thought"
application.process.binary = "Telegram"
application.language = "en_GB.UTF-8"
window.x11.display = ":0"
application.process.machine_id = "bd78a1b34bd07d84643ae1b7567ac76f"
application.process.session_id = "c2"
module-stream-restore.id = "sink-input-by-application-name:Telegram"
Client #0
Driver: module-systemd-login.c
Owner Module: 17
Properties:
application.name = "Login Session c2"
systemd-login.session = "c2"
Client #1
Driver: protocol-native.c
Owner Module: 11
Properties:
application.name = "libcanberra"
native-protocol.peer = "UNIX socket client"
native-protocol.version = "28"
application.version = "0.30"
application.id = "org.freedesktop.libcanberra"
application.process.id = "2051"
application.process.user = "alan"
application.process.host = "deep-thought"
application.process.binary = "unity-settings-daemon"
application.language = "en_GB.UTF-8"
window.x11.display = ":0"
application.process.machine_id = "bd78a1b34bd07d84643ae1b7567ac76f"
application.process.session_id = "c2"
Client #2
Driver: protocol-native.c
Owner Module: 11
Properties:
application.name = "unity-settings-daemon"
native-protocol.peer = "UNIX socket client"
native-protocol.version = "28"
window.x11.display = ":0"
window.x11.screen = "0"
application.process.id = "2051"
application.process.user = "alan"
application.process.host = "deep-thought"
application.process.binary = "unity-settings-daemon"
application.language = "en_GB.UTF-8"
application.process.machine_id = "bd78a1b34bd07d84643ae1b7567ac76f"
application.process.session_id = "c2"
Client #16
Driver: protocol-native.c
Owner Module: 11
Properties:
application.name = "Ubuntu Audio Settings"
native-protocol.peer = "UNIX socket client"
native-protocol.version = "28"
application.id = "com.canonical.settings.sound"
application.icon_name = "multimedia-volume-control"
application.version = "0.1"
application.process.id = "2131"
application.process.user = "alan"
application.process.host = "deep-thought"
application.process.binary = "indicator-sound-service"
application.language = "en_GB.UTF-8"
window.x11.display = ":0"
application.process.machine_id = "bd78a1b34bd07d84643ae1b7567ac76f"
application.process.session_id = "c2"
Client #81
Driver: protocol-native.c
Owner Module: 11
Properties:
application.name = "GNOME Volume Control Media Keys"
native-protocol.peer = "UNIX socket client"
native-protocol.version = "28"
application.id = "org.gnome.VolumeControl"
application.icon_name = "multimedia-volume-control"
application.version = "1.0"
application.process.id = "2051"
application.process.user = "alan"
application.process.host = "deep-thought"
application.process.binary = "unity-settings-daemon"
application.language = "en_GB.UTF-8"
window.x11.display = ":0"
application.process.machine_id = "bd78a1b34bd07d84643ae1b7567ac76f"
application.process.session_id = "c2"
Client #223
Driver: protocol-native.c
Owner Module: 11
Properties:
application.name = "Chrome input"
native-protocol.peer = "UNIX socket client"
native-protocol.version = "28"
application.process.id = "13579"
application.process.user = "alan"
application.process.host = "deep-thought"
application.process.binary = "atom"
application.language = "en_GB.UTF-8"
window.x11.display = ":0"
application.process.machine_id = "bd78a1b34bd07d84643ae1b7567ac76f"
application.process.session_id = "c2"
application.icon_name = "atom"
Client #362
Driver: protocol-native.c
Owner Module: 11
Properties:
application.name = "Chrome input"
native-protocol.peer = "UNIX socket client"
native-protocol.version = "28"
application.process.id = "4062"
application.process.user = "alan"
application.process.host = "deep-thought"
application.process.binary = "chromium-browser"
application.language = "en_GB.UTF-8"
window.x11.display = ":0"
application.process.machine_id = "bd78a1b34bd07d84643ae1b7567ac76f"
application.process.session_id = "c2"
application.icon_name = "chromium-browser"
Client #372
Driver: protocol-native.c
Owner Module: 11
Properties:
application.name = "Rhythmbox"
native-protocol.peer = "UNIX socket client"
native-protocol.version = "28"
media.role = "music"
application.process.id = "6834"
application.process.user = "alan"
application.process.host = "deep-thought"
application.process.binary = "rhythmbox"
application.language = "en_GB.UTF-8"
window.x11.display = ":0"
application.process.machine_id = "bd78a1b34bd07d84643ae1b7567ac76f"
application.process.session_id = "c2"
application.icon_name = "rhythmbox"
Client #436
Driver: protocol-native.c
Owner Module: 11
Properties:
application.name = "Telegram"
native-protocol.peer = "UNIX socket client"
native-protocol.version = "28"
application.process.id = "17244"
application.process.user = "alan"
application.process.host = "deep-thought"
application.process.binary = "Telegram"
application.language = "en_GB.UTF-8"
window.x11.display = ":0"
application.process.machine_id = "bd78a1b34bd07d84643ae1b7567ac76f"
application.process.session_id = "c2"
Client #499
Driver: protocol-native.c
Owner Module: 11
Properties:
application.name = "pactl"
native-protocol.peer = "UNIX socket client"
native-protocol.version = "28"
application.process.id = "6596"
application.process.user = "alan"
application.process.host = "deep-thought"
application.process.binary = "pactl"
application.language = "en_GB.UTF-8"
window.x11.display = ":0"
application.process.machine_id = "bd78a1b34bd07d84643ae1b7567ac76f"
application.process.session_id = "c2"
Sample #0
Name: audio-volume-change
Sample Specification: s16le 2ch 44100Hz
Channel Map: front-left,front-right
Volume: (invalid)
(invalid)
balance 0.00
Duration: 0.1s
Size: 11.5 KiB
Lazy: no
Filename: n/a
Properties:
media.role = "event"
event.description = "volume changed through key press"
event.id = "audio-volume-change"
media.name = "audio-volume-change"
media.filename = "/usr/share//sounds/freedesktop/stereo/audio-volume-change.oga"
application.name = "libcanberra"
native-protocol.peer = "UNIX socket client"
native-protocol.version = "28"
application.version = "0.30"
application.id = "org.freedesktop.libcanberra"
application.process.id = "2051"
application.process.user = "alan"
application.process.host = "deep-thought"
application.process.binary = "unity-settings-daemon"
application.language = "en_GB.UTF-8"
window.x11.display = ":0"
application.process.machine_id = "bd78a1b34bd07d84643ae1b7567ac76f"
application.process.session_id = "c2"
Sample #1
Name: screen-capture
Sample Specification: s16le 2ch 96000Hz
Channel Map: front-left,front-right
Volume: (invalid)
(invalid)
balance 0.00
Duration: 0.9s
Size: 327.1 KiB
Lazy: no
Filename: n/a
Properties:
media.role = "event"
event.description = "Screenshot taken"
event.id = "screen-capture"
media.name = "screen-capture"
media.filename = "/usr/share//sounds/freedesktop/stereo/screen-capture.oga"
application.name = "Screenshot"
native-protocol.peer = "UNIX socket client"
native-protocol.version = "28"
application.icon_name = "applets-screenshooter"
window.x11.display = ":0"
window.x11.screen = "0"
application.process.id = "3559"
application.process.user = "alan"
application.process.host = "deep-thought"
application.process.binary = "gnome-screenshot"
application.language = "en_GB.UTF-8"
application.process.machine_id = "bd78a1b34bd07d84643ae1b7567ac76f"
application.process.session_id = "c2"
Card #2
Name: alsa_card.pci-0000_00_1b.0
Driver: module-alsa-card.c
Owner Module: 7
Properties:
alsa.card = "0"
alsa.card_name = "HDA Intel PCH"
alsa.long_card_name = "HDA Intel PCH at 0xf2620000 irq 35"
alsa.driver_name = "snd_hda_intel"
device.bus_path = "pci-0000:00:1b.0"
sysfs.path = "/devices/pci0000:00/0000:00:1b.0/sound/card0"
device.bus = "pci"
device.vendor.id = "8086"
device.vendor.name = "Intel Corporation"
device.product.id = "1c20"
device.product.name = "6 Series/C200 Series Chipset Family High Definition Audio Controller"
device.form_factor = "internal"
device.string = "0"
device.description = "Built-in Audio"
module-udev-detect.discovered = "1"
device.icon_name = "audio-card-pci"
Profiles:
input:analog-stereo: Analogue Stereo Input (sinks: 0, sources: 1, priority. 60)
output:analog-stereo: Analogue Stereo Output (sinks: 1, sources: 0, priority. 6000)
output:analog-stereo+input:analog-stereo: Analogue Stereo Duplex (sinks: 1, sources: 1, priority. 6060)
output:analog-surround-40: Analogue Surround 4.0 Output (sinks: 1, sources: 0, priority. 700)
output:analog-surround-40+input:analog-stereo: Analogue Surround 4.0 Output + Analogue Stereo Input (sinks: 1, sources: 1, priority. 760)
output:hdmi-stereo: Digital Stereo (HDMI) Output (sinks: 1, sources: 0, priority. 5400)
output:hdmi-stereo+input:analog-stereo: Digital Stereo (HDMI) Output + Analogue Stereo Input (sinks: 1, sources: 1, priority. 5460)
output:hdmi-surround: Digital Surround 5.1 (HDMI) Output (sinks: 1, sources: 0, priority. 300)
output:hdmi-surround+input:analog-stereo: Digital Surround 5.1 (HDMI) Output + Analogue Stereo Input (sinks: 1, sources: 1, priority. 360)
output:hdmi-stereo-extra1: Digital Stereo (HDMI) Output (sinks: 1, sources: 0, priority. 5200)
output:hdmi-stereo-extra1+input:analog-stereo: Digital Stereo (HDMI) Output + Analogue Stereo Input (sinks: 1, sources: 1, priority. 5260)
output:hdmi-stereo-extra2: Digital Stereo (HDMI) Output (sinks: 1, sources: 0, priority. 5200)
output:hdmi-stereo-extra2+input:analog-stereo: Digital Stereo (HDMI) Output + Analogue Stereo Input (sinks: 1, sources: 1, priority. 5260)
output:hdmi-surround-extra2: Digital Surround 5.1 (HDMI) Output (sinks: 1, sources: 0, priority. 100)
output:hdmi-surround-extra2+input:analog-stereo: Digital Surround 5.1 (HDMI) Output + Analogue Stereo Input (sinks: 1, sources: 1, priority. 160)
off: Off (sinks: 0, sources: 0, priority. 0)
Active Profile: output:analog-stereo+input:analog-stereo
Ports:
analog-input-microphone-internal: Internal Microphone (priority: 8900, latency offset: 0 usec)
Properties:
device.icon_name = "audio-input-microphone"
Part of profile(s): input:analog-stereo, output:analog-stereo+input:analog-stereo, output:analog-surround-40+input:analog-stereo, output:hdmi-stereo+input:analog-stereo, output:hdmi-surround+input:analog-stereo, output:hdmi-stereo-extra1+input:analog-stereo, output:hdmi-stereo-extra2+input:analog-stereo, output:hdmi-surround-extra2+input:analog-stereo
analog-input-microphone-dock: Dock Microphone (priority: 7800, latency offset: 0 usec, not available)
Properties:
device.icon_name = "audio-input-microphone"
Part of profile(s): input:analog-stereo, output:analog-stereo+input:analog-stereo, output:analog-surround-40+input:analog-stereo, output:hdmi-stereo+input:analog-stereo, output:hdmi-surround+input:analog-stereo, output:hdmi-stereo-extra1+input:analog-stereo, output:hdmi-stereo-extra2+input:analog-stereo, output:hdmi-surround-extra2+input:analog-stereo
analog-input-microphone: Microphone (priority: 8700, latency offset: 0 usec, not available)
Properties:
device.icon_name = "audio-input-microphone"
Part of profile(s): input:analog-stereo, output:analog-stereo+input:analog-stereo, output:analog-surround-40+input:analog-stereo, output:hdmi-stereo+input:analog-stereo, output:hdmi-surround+input:analog-stereo, output:hdmi-stereo-extra1+input:analog-stereo, output:hdmi-stereo-extra2+input:analog-stereo, output:hdmi-surround-extra2+input:analog-stereo
analog-output-speaker: Speakers (priority: 10000, latency offset: 0 usec)
Properties:
device.icon_name = "audio-speakers"
Part of profile(s): output:analog-stereo, output:analog-stereo+input:analog-stereo, output:analog-surround-40, output:analog-surround-40+input:analog-stereo
analog-output-headphones: Headphones (priority: 9000, latency offset: 0 usec, not available)
Properties:
device.icon_name = "audio-headphones"
Part of profile(s): output:analog-stereo, output:analog-stereo+input:analog-stereo
hdmi-output-0: HDMI / DisplayPort (priority: 5900, latency offset: 0 usec, not available)
Properties:
device.icon_name = "video-display"
Part of profile(s): output:hdmi-stereo, output:hdmi-stereo+input:analog-stereo, output:hdmi-surround, output:hdmi-surround+input:analog-stereo
hdmi-output-1: HDMI / DisplayPort 2 (priority: 5800, latency offset: 0 usec, available)
Properties:
device.icon_name = "video-display"
device.product.name = "Philips 234EL"
Part of profile(s): output:hdmi-stereo-extra1, output:hdmi-stereo-extra1+input:analog-stereo
hdmi-output-2: HDMI / DisplayPort 3 (priority: 5700, latency offset: 0 usec, not available)
Properties:
device.icon_name = "video-display"
Part of profile(s): output:hdmi-stereo-extra2, output:hdmi-stereo-extra2+input:analog-stereo, output:hdmi-surround-extra2, output:hdmi-surround-extra2+input:analog-stereo
Card #7
Name: alsa_card.usb-046d_0809_846080B0-02-U0x46d0x809
Driver: module-alsa-card.c
Owner Module: 26
Properties:
alsa.card = "1"
alsa.card_name = "USB Device 0x46d:0x809"
alsa.long_card_name = "USB Device 0x46d:0x809 at usb-0000:00:1a.0-1.1.4, high speed"
alsa.driver_name = "snd_usb_audio"
device.bus_path = "pci-0000:00:1a.0-usb-0:1.1.4:1.2"
sysfs.path = "/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.1/3-1.1.4/3-1.1.4:1.2/sound/card1"
udev.id = "usb-046d_0809_846080B0-02-U0x46d0x809"
device.bus = "usb"
device.vendor.id = "046d"
device.vendor.name = "Logitech, Inc."
device.product.id = "0809"
device.product.name = "Webcam Pro 9000"
device.serial = "046d_0809_846080B0"
device.form_factor = "webcam"
device.string = "1"
device.description = "Webcam Pro 9000"
module-udev-detect.discovered = "1"
device.icon_name = "camera-web-usb"
Profiles:
input:analog-mono: Analogue Mono Input (sinks: 0, sources: 1, priority. 1)
off: Off (sinks: 0, sources: 0, priority. 0)
Active Profile: input:analog-mono
Ports:
analog-input-microphone: Microphone (priority: 8700, latency offset: 0 usec)
Properties:
device.icon_name = "audio-input-microphone"
Part of profile(s): input:analog-mono
Card #8
Name: alsa_card.usb-Burr-Brown_from_TI_USB_Audio_CODEC-00-CODEC
Driver: module-alsa-card.c
Owner Module: 27
Properties:
alsa.card = "2"
alsa.card_name = "USB Audio CODEC"
alsa.long_card_name = "Burr-Brown from TI USB Audio CODEC at usb-0000:00:1a.0-1.1.1.1.3, full speed"
alsa.driver_name = "snd_usb_audio"
device.bus_path = "pci-0000:00:1a.0-usb-0:1.1.1.1.3:1.0"
sysfs.path = "/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.1/3-1.1.1/3-1.1.1.1/3-1.1.1.1.3/3-1.1.1.1.3:1.0/sound/card2"
udev.id = "usb-Burr-Brown_from_TI_USB_Audio_CODEC-00-CODEC"
device.bus = "usb"
device.vendor.id = "08bb"
device.vendor.name = "Texas Instruments"
device.product.id = "2902"
device.product.name = "PCM2902 Audio Codec"
device.serial = "Burr-Brown_from_TI_USB_Audio_CODEC"
device.string = "2"
device.description = "PCM2902 Audio Codec"
module-udev-detect.discovered = "1"
device.icon_name = "audio-card-usb"
Profiles:
input:analog-mono: Analogue Mono Input (sinks: 0, sources: 1, priority. 1)
input:analog-stereo: Analogue Stereo Input (sinks: 0, sources: 1, priority. 60)
input:iec958-stereo: Digital Stereo (IEC958) Input (sinks: 0, sources: 1, priority. 55)
output:analog-mono: Analogue Mono Output (sinks: 1, sources: 0, priority. 100)
output:analog-mono+input:analog-mono: Analogue Mono Duplex (sinks: 1, sources: 1, priority. 101)
output:analog-mono+input:analog-stereo: Analogue Mono Output + Analogue Stereo Input (sinks: 1, sources: 1, priority. 160)
output:analog-mono+input:iec958-stereo: Analogue Mono Output + Digital Stereo (IEC958) Input (sinks: 1, sources: 1, priority. 155)
output:analog-stereo: Analogue Stereo Output (sinks: 1, sources: 0, priority. 6000)
output:analog-stereo+input:analog-mono: Analogue Stereo Output + Analogue Mono Input (sinks: 1, sources: 1, priority. 6001)
output:analog-stereo+input:analog-stereo: Analogue Stereo Duplex (sinks: 1, sources: 1, priority. 6060)
output:analog-stereo+input:iec958-stereo: Analogue Stereo Output + Digital Stereo (IEC958) Input (sinks: 1, sources: 1, priority. 6055)
output:iec958-stereo: Digital Stereo (IEC958) Output (sinks: 1, sources: 0, priority. 5500)
output:iec958-stereo+input:analog-mono: Digital Stereo (IEC958) Output + Analogue Mono Input (sinks: 1, sources: 1, priority. 5501)
output:iec958-stereo+input:analog-stereo: Digital Stereo (IEC958) Output + Analogue Stereo Input (sinks: 1, sources: 1, priority. 5560)
output:iec958-stereo+input:iec958-stereo: Digital Stereo Duplex (IEC958) (sinks: 1, sources: 1, priority. 5555)
off: Off (sinks: 0, sources: 0, priority. 0)
Active Profile: output:analog-stereo+input:analog-stereo
Ports:
analog-input: Analogue Input (priority: 10000, latency offset: 0 usec)
Part of profile(s): input:analog-mono, input:analog-stereo, output:analog-mono+input:analog-mono, output:analog-mono+input:analog-stereo, output:analog-stereo+input:analog-mono, output:analog-stereo+input:analog-stereo, output:iec958-stereo+input:analog-mono, output:iec958-stereo+input:analog-stereo
iec958-stereo-input: Digital Input (S/PDIF) (priority: 0, latency offset: 0 usec)
Part of profile(s): input:iec958-stereo, output:analog-mono+input:iec958-stereo, output:analog-stereo+input:iec958-stereo, output:iec958-stereo+input:iec958-stereo
analog-output: Analogue Output (priority: 9900, latency offset: 0 usec)
Part of profile(s): output:analog-mono, output:analog-mono+input:analog-mono, output:analog-mono+input:analog-stereo, output:analog-mono+input:iec958-stereo, output:analog-stereo, output:analog-stereo+input:analog-mono, output:analog-stereo+input:analog-stereo, output:analog-stereo+input:iec958-stereo
iec958-stereo-output: Digital Output (S/PDIF) (priority: 0, latency offset: 0 usec)
Part of profile(s): output:iec958-stereo, output:iec958-stereo+input:analog-mono, output:iec958-stereo+input:analog-stereo, output:iec958-stereo+input:iec958-stereo
|