| 26 Feb 2023 |
Yuu Yin | This is how Firefox connects to the audio source/mic in meet.jit.si. It's the same for the gum test. | 11:53:59 |
mindtree | I’ve been using pipewire + Firefox + jitsi without issue fwiw (not sure about pipewire-pulse) | 11:54:00 |
Minijackson | that's weird | 11:55:00 |
Minijackson | specific webapps on firefox are not working ? Have you tried other things on firefox (like call.element.io, or bigbluebutton if you have access to an instance) | 11:55:55 |
Minijackson | or on Chrome ? | 11:55:59 |
Yuu Yin | In reply to @mindtree:matrix.org I’ve been using pipewire + Firefox + jitsi without issue fwiw (not sure about pipewire-pulse) nice, so it is really an issue on my end/setup. i do not have any config files on ~/.config/pipewire or ~/.config/pulse. my nix audio config is
{
# Disable ALSA.
sound.enable = false;
# Disable PulseAudio sound server.
hardware.pulseaudio.enable = false;
# PipeWire
# (rtkit is optional but recommended)
security.rtkit.enable = true;
services.pipewire = {
enable = true;
jack = {
enable = true;
};
pulse = {
enable = true;
};
alsa = {
enable = false;
support32Bit = true;
};
wireplumber = {
enable = true;
};
};
}
| 12:00:58 |
Minijackson | it seems pretty close to what I have | 12:03:21 |
Minijackson | I just don't have the alsa.support32bit, but it shouldn't matter for Firefox | 12:03:48 |
Minijackson | I'm also using pipewire from the unstable channel, not sure if it changes things | 12:04:14 |
Yuu Yin | In reply to @Minijackson:matrix.org specific webapps on firefox are not working ? Have you tried other things on firefox (like call.element.io, or bigbluebutton if you have access to an instance) on firefox with a clean/stock profile, i just tried call.element.io and web.whatsapp.com. same issue. on firefox, only https://mozilla.github.io/webrtc-landing/gum_test.html has worked so far. | 12:18:36 |