Routing audio from two different browsers using qjackctl and JACKHow to use JACK and Pulseaudio/ALSA at the same time on the same audio device?How to make each application have its own audio monitor in pulseaudio?How to I configure which Audio Hardware is being used by Pulse Audio, ALSA, and Jack Audio?JACK breaks audio. How do I fix it?Can't start QjackCtlRecording stereo mix from YouTube to RenoiseRouting Pulseaudio to JACK causes glitchesNo app sound in 18.04 , system sound OK, speaker test OK. Firefox NOK, VLC NOKConsistent Sound Issues in Ubuntu 18.04 LTSIs there an audio mixer able to map any audio source to any output in the system?Ubuntu 18.10 Headphones/Speakers “linked” (Speakers have no sound)Jack output to bluetooth speaker
Is categoricity retained when reducing the language?
Can a person survive on blood in place of water?
Is keeping the forking link on a true fork necessary (Github/GPL)?
“For nothing” = “pour rien”?
How does the Earth's center produce heat?
Natural Armour and Weapons
Are runways booked by airlines to land their planes?
Testing using real data of the customer
Count all vowels in string
Are there any German nonsense poems (Jabberwocky)?
Is there a simple example that empirical evidence is misleading?
If a (distance) metric on a connected Riemannian manifold locally agrees with the Riemannian metric, is it equal to the induced metric?
Did 20% of US soldiers in Vietnam use heroin, 95% of whom quit afterwards?
Find all permutations of 2 arrays in JS
When playing Edgar Markov, what is the definition of a "Vampire spell"?
Manager questioning my time estimates for a project
Why did it take so long for Germany to allow electric scooters / e-rollers on the roads?
Gravitational Force Between Numbers
What's difference between "depends on" and "is blocked by" relations between issues in Jira next-gen board?
Expected maximum number of unpaired socks
“Quand même” to mean “anyway”
Can a character with the War Caster feat call a bolt with Call Lightning instead of making an opportunity attack?
Do photons bend spacetime or not?
On San Andreas Speedruns, why do players blow up the Picador in the mission Ryder?
Routing audio from two different browsers using qjackctl and JACK
How to use JACK and Pulseaudio/ALSA at the same time on the same audio device?How to make each application have its own audio monitor in pulseaudio?How to I configure which Audio Hardware is being used by Pulse Audio, ALSA, and Jack Audio?JACK breaks audio. How do I fix it?Can't start QjackCtlRecording stereo mix from YouTube to RenoiseRouting Pulseaudio to JACK causes glitchesNo app sound in 18.04 , system sound OK, speaker test OK. Firefox NOK, VLC NOKConsistent Sound Issues in Ubuntu 18.04 LTSIs there an audio mixer able to map any audio source to any output in the system?Ubuntu 18.10 Headphones/Speakers “linked” (Speakers have no sound)Jack output to bluetooth speaker
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
(first post here, apologize in advance for any formatting problems etc.)
Hi all,
I'm trying to route audio from Chrome and Firefox as two separate streams into Supercollider so that I can mix them separately. Right now I've been successful in routing all app sound to a pulseaudio sink which I can then route to SC (using the instructions here), but this means that all app audio is summed before getting to SC so I can't edit the streams separately.
I'm relatively new to Linux audio so have mostly been stumbling around various posts on here to try and see if this is possible. This post seemed promising, but I couldn't get it to work. This might be because Chrome and Firefox now use pulseaudio instead of alsa as their default? Any ideas would be much appreciated!
I'm on Ubuntu 18.04 LTS and using qjackctl and jackd2, hopefully with all the correct libraries installed.
Image of my qjackctl session (I'd basically like each browser to have its own 'pulseaudio jack sink'):
screenshot
18.04 sound pulseaudio alsa jack
add a comment |
(first post here, apologize in advance for any formatting problems etc.)
Hi all,
I'm trying to route audio from Chrome and Firefox as two separate streams into Supercollider so that I can mix them separately. Right now I've been successful in routing all app sound to a pulseaudio sink which I can then route to SC (using the instructions here), but this means that all app audio is summed before getting to SC so I can't edit the streams separately.
I'm relatively new to Linux audio so have mostly been stumbling around various posts on here to try and see if this is possible. This post seemed promising, but I couldn't get it to work. This might be because Chrome and Firefox now use pulseaudio instead of alsa as their default? Any ideas would be much appreciated!
I'm on Ubuntu 18.04 LTS and using qjackctl and jackd2, hopefully with all the correct libraries installed.
Image of my qjackctl session (I'd basically like each browser to have its own 'pulseaudio jack sink'):
screenshot
18.04 sound pulseaudio alsa jack
add a comment |
(first post here, apologize in advance for any formatting problems etc.)
Hi all,
I'm trying to route audio from Chrome and Firefox as two separate streams into Supercollider so that I can mix them separately. Right now I've been successful in routing all app sound to a pulseaudio sink which I can then route to SC (using the instructions here), but this means that all app audio is summed before getting to SC so I can't edit the streams separately.
I'm relatively new to Linux audio so have mostly been stumbling around various posts on here to try and see if this is possible. This post seemed promising, but I couldn't get it to work. This might be because Chrome and Firefox now use pulseaudio instead of alsa as their default? Any ideas would be much appreciated!
I'm on Ubuntu 18.04 LTS and using qjackctl and jackd2, hopefully with all the correct libraries installed.
Image of my qjackctl session (I'd basically like each browser to have its own 'pulseaudio jack sink'):
screenshot
18.04 sound pulseaudio alsa jack
(first post here, apologize in advance for any formatting problems etc.)
Hi all,
I'm trying to route audio from Chrome and Firefox as two separate streams into Supercollider so that I can mix them separately. Right now I've been successful in routing all app sound to a pulseaudio sink which I can then route to SC (using the instructions here), but this means that all app audio is summed before getting to SC so I can't edit the streams separately.
I'm relatively new to Linux audio so have mostly been stumbling around various posts on here to try and see if this is possible. This post seemed promising, but I couldn't get it to work. This might be because Chrome and Firefox now use pulseaudio instead of alsa as their default? Any ideas would be much appreciated!
I'm on Ubuntu 18.04 LTS and using qjackctl and jackd2, hopefully with all the correct libraries installed.
Image of my qjackctl session (I'd basically like each browser to have its own 'pulseaudio jack sink'):
screenshot
18.04 sound pulseaudio alsa jack
18.04 sound pulseaudio alsa jack
asked Apr 13 at 15:21
Greg KappesGreg Kappes
82
82
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
use command
pactl load-module module-jack-sink sink_name=voip_in client_name=voip_in
you should get 2nd sink loaded called 'Pulseaudio Jack Sink 01' available in QjackCtl
command can be added to QjackCtl 'Execute script after startup' to load 2nd sink automatically when JACK is started
Also need to change one of the browsers to use new sink in pavucontrol --tab 1
from drop-down list of playback outputs
Thanks, I ended up doing exactly this and got it working :) The next step is connecting the second browser to the second sink without using the pavucontrol gui (IE with a script).
– Greg Kappes
Apr 18 at 9:22
if you only use 2nd browser connected to 2nd sink, pavucontrol usually remembers manual setting when used again.
– nik gnomic
Apr 19 at 10:49
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1133559%2frouting-audio-from-two-different-browsers-using-qjackctl-and-jack%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
use command
pactl load-module module-jack-sink sink_name=voip_in client_name=voip_in
you should get 2nd sink loaded called 'Pulseaudio Jack Sink 01' available in QjackCtl
command can be added to QjackCtl 'Execute script after startup' to load 2nd sink automatically when JACK is started
Also need to change one of the browsers to use new sink in pavucontrol --tab 1
from drop-down list of playback outputs
Thanks, I ended up doing exactly this and got it working :) The next step is connecting the second browser to the second sink without using the pavucontrol gui (IE with a script).
– Greg Kappes
Apr 18 at 9:22
if you only use 2nd browser connected to 2nd sink, pavucontrol usually remembers manual setting when used again.
– nik gnomic
Apr 19 at 10:49
add a comment |
use command
pactl load-module module-jack-sink sink_name=voip_in client_name=voip_in
you should get 2nd sink loaded called 'Pulseaudio Jack Sink 01' available in QjackCtl
command can be added to QjackCtl 'Execute script after startup' to load 2nd sink automatically when JACK is started
Also need to change one of the browsers to use new sink in pavucontrol --tab 1
from drop-down list of playback outputs
Thanks, I ended up doing exactly this and got it working :) The next step is connecting the second browser to the second sink without using the pavucontrol gui (IE with a script).
– Greg Kappes
Apr 18 at 9:22
if you only use 2nd browser connected to 2nd sink, pavucontrol usually remembers manual setting when used again.
– nik gnomic
Apr 19 at 10:49
add a comment |
use command
pactl load-module module-jack-sink sink_name=voip_in client_name=voip_in
you should get 2nd sink loaded called 'Pulseaudio Jack Sink 01' available in QjackCtl
command can be added to QjackCtl 'Execute script after startup' to load 2nd sink automatically when JACK is started
Also need to change one of the browsers to use new sink in pavucontrol --tab 1
from drop-down list of playback outputs
use command
pactl load-module module-jack-sink sink_name=voip_in client_name=voip_in
you should get 2nd sink loaded called 'Pulseaudio Jack Sink 01' available in QjackCtl
command can be added to QjackCtl 'Execute script after startup' to load 2nd sink automatically when JACK is started
Also need to change one of the browsers to use new sink in pavucontrol --tab 1
from drop-down list of playback outputs
answered Apr 17 at 8:32
nik gnomicnik gnomic
36129
36129
Thanks, I ended up doing exactly this and got it working :) The next step is connecting the second browser to the second sink without using the pavucontrol gui (IE with a script).
– Greg Kappes
Apr 18 at 9:22
if you only use 2nd browser connected to 2nd sink, pavucontrol usually remembers manual setting when used again.
– nik gnomic
Apr 19 at 10:49
add a comment |
Thanks, I ended up doing exactly this and got it working :) The next step is connecting the second browser to the second sink without using the pavucontrol gui (IE with a script).
– Greg Kappes
Apr 18 at 9:22
if you only use 2nd browser connected to 2nd sink, pavucontrol usually remembers manual setting when used again.
– nik gnomic
Apr 19 at 10:49
Thanks, I ended up doing exactly this and got it working :) The next step is connecting the second browser to the second sink without using the pavucontrol gui (IE with a script).
– Greg Kappes
Apr 18 at 9:22
Thanks, I ended up doing exactly this and got it working :) The next step is connecting the second browser to the second sink without using the pavucontrol gui (IE with a script).
– Greg Kappes
Apr 18 at 9:22
if you only use 2nd browser connected to 2nd sink, pavucontrol usually remembers manual setting when used again.
– nik gnomic
Apr 19 at 10:49
if you only use 2nd browser connected to 2nd sink, pavucontrol usually remembers manual setting when used again.
– nik gnomic
Apr 19 at 10:49
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1133559%2frouting-audio-from-two-different-browsers-using-qjackctl-and-jack%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown