Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Pipewire detects sound card but does not play sound
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Multimedia
View previous topic :: View next topic  
Author Message
Antegentoo
n00b
n00b


Joined: 15 Sep 2023
Posts: 15

PostPosted: Thu Oct 12, 2023 11:13 am    Post subject: Pipewire detects sound card but does not play sound Reply with quote

This is true for all applications. I am able to start pipewire, and it is detected as a sound system in alsamixer. However, no sound is played.
Back to top
View user's profile Send private message
alamahant
Advocate
Advocate


Joined: 23 Mar 2019
Posts: 3879

PostPosted: Thu Oct 12, 2023 12:16 pm    Post subject: Reply with quote

What is the output of
Code:

emerge -pv pipewire libpulse pulseaudio

?
How do you start pipewire?
Via DM, xinitrc or manually?
_________________
:)
Back to top
View user's profile Send private message
Antegentoo
n00b
n00b


Joined: 15 Sep 2023
Posts: 15

PostPosted: Thu Oct 12, 2023 12:29 pm    Post subject: Reply with quote

Code:
These are the packages that would be merged, in order:

Calculating dependencies... done!
Dependency resolution took 3.38 s.

[ebuild     U ~] media-video/pipewire-0.3.81:0/0.4::gentoo [0.3.80:0/0.4::gentoo] USE="X bluetooth dbus extra gstreamer pipewire-alsa readline sound-server ssl -doc -echo-cancel -ffmpeg -flatpak -gsettings -ieee1394 -jack-client -jack-sdk -liblc3 -lv2 -modemmanager -roc (-system-service) -systemd -test -v4l -zeroconf" ABI_X86="32 (64) (-x32)" 1,620 KiB
[ebuild     U ~] media-libs/libpulse-16.1-r3::gentoo [16.1-r2::gentoo] USE="X asyncns dbus glib -doc -gtk (-selinux) -systemd -test -valgrind" ABI_X86="32 (64) (-x32)" 0 KiB
[ebuild  N     ] media-sound/pulseaudio-16.1::gentoo  USE="bluetooth glib -daemon -jack -ofono-headset" ABI_X86="(64) -32 (-x32)" 0 KiB

Total: 3 packages (2 upgrades, 1 new), Size of downloads: 1,620 KiB

!!! The following installed packages are masked:
- dev-python/setuptools-scm-8.0.1::gentoo (masked by: package.mask)
/var/db/repos/gentoo/profiles/package.mask:
# Michał Górny <mgorny@gentoo.org> (2023-09-22)
# =dev-python/setuptools-scm-8.0.1 broke compatibility hard but reverted
# the changes in 8.0.2.

I start pipewire manually. Also, not sure if this would help but bluetooth audio works fine. It's just the sound from the speakers that is not working. I do not think it is a hardware issue.

[Moderator edit: added [code] tags to preserve output layout. -Hu]
Back to top
View user's profile Send private message
alamahant
Advocate
Advocate


Joined: 23 Mar 2019
Posts: 3879

PostPosted: Thu Oct 12, 2023 12:37 pm    Post subject: Reply with quote

Try
Code:

emerge -1av pulseaudio
USE="-pipewire-alsa" emerge -1av pipewire

and see if it is solved.
Run as user
Code:

LANG=C pactl info | grep "Server Name"


If yes add USE="pulseaudio" in make.conf and rebuild @world and remove USE "pipewire-alsa" from pipewire.
_________________
:)
Back to top
View user's profile Send private message
Antegentoo
n00b
n00b


Joined: 15 Sep 2023
Posts: 15

PostPosted: Thu Oct 12, 2023 12:48 pm    Post subject: Reply with quote

Wouldn't that install pulseaudio though? I want to use pipewire
Back to top
View user's profile Send private message
alamahant
Advocate
Advocate


Joined: 23 Mar 2019
Posts: 3879

PostPosted: Thu Oct 12, 2023 12:50 pm    Post subject: Reply with quote

It will just install it.But you will be using pipewire.
You will hopefully get
Code:

LANG=C pactl info | grep "Server Name"
Server Name: PulseAudio (on PipeWire 0.3.39)


See https://wiki.gentoo.org/wiki/PipeWire#USE_flags
_________________
:)
Back to top
View user's profile Send private message
Antegentoo
n00b
n00b


Joined: 15 Sep 2023
Posts: 15

PostPosted: Thu Oct 12, 2023 1:11 pm    Post subject: Reply with quote

The output is as expected, but the sound is still not working.
Back to top
View user's profile Send private message
Antegentoo
n00b
n00b


Joined: 15 Sep 2023
Posts: 15

PostPosted: Thu Oct 12, 2023 1:22 pm    Post subject: Reply with quote

Never mind, it's working. Thanks for the help!
Back to top
View user's profile Send private message
Antegentoo
n00b
n00b


Joined: 15 Sep 2023
Posts: 15

PostPosted: Thu Oct 12, 2023 1:25 pm    Post subject: Reply with quote

Btw, could you tell what the -1 does? I have never seen it before..
Back to top
View user's profile Send private message
alamahant
Advocate
Advocate


Joined: 23 Mar 2019
Posts: 3879

PostPosted: Thu Oct 12, 2023 1:29 pm    Post subject: Reply with quote

It means (re)building a package without creating an entry for it in world file( /var/lib/portage/world).
Packages in that file are normally not un-merged during --depcleaning.
They are persistent either because they belong to the @system set or because you explicitly emerged them.
It is equivalent to
Code:

emerge --oneshot

This is useful for rebuilding packages pulled in as a dependency by another package you explicitly emerged or by a USE flag.
Or for temporarily emerging a package that will be --depcleaned in next update.
Generally you should avoid having dependent packages in word file because it can potentially create problems in future updates
For example pulseaudio is pulled by USE="pulseaudio" in make.conf.
You do not need to explicitly emerge it like
Code:

emerge -av pulseaudio

It will be pulled by the use flag @world update or rebuild.
Sometimes a common mistake is when you need to rebuild an already existing package for testing purposes or a changed USE flag you commonly do
Code:

emerge <package>

You should always do
Code:

emerge -1 <package>

Only use explicit emerging if a package is a major package you need and is not pulled by any dependency.
_________________
:)


Last edited by alamahant on Thu Oct 12, 2023 1:54 pm; edited 6 times in total
Back to top
View user's profile Send private message
Antegentoo
n00b
n00b


Joined: 15 Sep 2023
Posts: 15

PostPosted: Thu Oct 12, 2023 1:37 pm    Post subject: Reply with quote

Alright. Thanks for the help!
Back to top
View user's profile Send private message
alamahant
Advocate
Advocate


Joined: 23 Mar 2019
Posts: 3879

PostPosted: Thu Oct 12, 2023 1:43 pm    Post subject: Reply with quote

Please see above.
Also when you wish to register a package in world file
do
Code:

emerge --noreplace <package>

If you wish to remove it from world file without deleting it
do
Code:

emerge --deselect <package>


You are welcome!
_________________
:)
Back to top
View user's profile Send private message
Anon-E-moose
Watchman
Watchman


Joined: 23 May 2008
Posts: 6103
Location: Dallas area

PostPosted: Thu Oct 12, 2023 1:52 pm    Post subject: Reply with quote

You should only use pipewire pulseaudio, if you were already using pulseaudio.
You don't need it to play audio through alsa, but alsa does require wireplumber and use flags for pipewire-alsa and sound-server.

When you are trying pipewire, open another terminal and run either "pw-link -l" or "pw-top" they both show info for pipewire.

You could also run "wpctl status" to see what devices wireplumber actually sees.
_________________
PRIME x570-pro, 3700x, 6.1 zen kernel
gcc 13, profile 17.0 (custom bare multilib), openrc, wayland
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Multimedia All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum