sharing only Audio

Reebo

New Member
Can I only share audio from a webpage?
When I'm in a conference, can I share the audio from another browser window (youtube) to share just the music and mix it to my microphone?

Thanks in advanced.
 

Max

Administrator
Staff member
Good day.
Can I only share audio from a webpage?
You can publish audio only stream using constraints
Code:
publishStream = session.createStream({
    ...
    constraints: {
           video: false,
           audio: true
    }
    ...
}).publish();
When I'm in a conference, can I share the audio from another browser window (youtube) to share just the music and mix it to my microphone?
You can capture audio stream from canvas as described here, then publish audio only stream as recommended above.
But it seems much simpler to publish audio only stream from virtual webcam or using ffmpeg.
 

Reebo

New Member
But it seems much simpler to publish audio only stream from virtual webcam or using ffmpeg.
Thanks!!!

How can I, without an hardware mixer, sharing audio from mic and other source (like music player or youtube webpage)?
 
Top