Re: [pulseaudio-discuss] How to create a virtual microphone with source set as default monitor device?

2020-09-28 Thread Sean Greenslade
On Tue, Sep 22, 2020 at 06:29:05AM -0700, guest271314 wrote: > > Point Espeak's output to the "Feed Espeak" sink, and point your > recording application at the "ESpeak output virtual mic". > > What is meant by "point" here? How to do that? It depends on the application. Most applications that

Re: [pulseaudio-discuss] How to create a virtual microphone with source set as default monitor device?

2020-09-22 Thread guest271314
> Point Espeak's output to the "Feed Espeak" sink, and point your recording application at the "ESpeak output virtual mic". What is meant by "point" here? How to do that? Were you able to successfully carry out the procedure yourself? What would be ideal is to be able to control pavucontrol -t

Re: [pulseaudio-discuss] How to create a virtual microphone with source set as default monitor device?

2020-09-15 Thread Sean Greenslade
On Sun, Sep 13, 2020 at 05:18:23PM +, guest271314 wrote: > This project started attempting to capture the output of > window.speechSynthesis.speak(). > > Consider https://stackoverflow.com/a/43553706. > > If run $ pacmd list-sink-inputs will get > > index: 219 > driver: >

Re: [pulseaudio-discuss] How to create a virtual microphone with source set as default monitor device?

2020-09-13 Thread guest271314
This project started attempting to capture the output of window.speechSynthesis.speak(). Consider https://stackoverflow.com/a/43553706. If run $ pacmd list-sink-inputs will get index: 219 driver: flags: state: RUNNING sink: 4 volume: mono: 64460 / 98% / -0.43 dB

Re: [pulseaudio-discuss] How to create a virtual microphone with source set as default monitor device?

2020-09-08 Thread guest271314
> Electron is a whole separate discussion. Electron applications have different levels of access to the system than the vanilla chromium browser. Native Messaging provides access to the system. > With the amount of work you're seeming to have put into workarounds, maybe you would be better off

Re: [pulseaudio-discuss] How to create a virtual microphone with source set as default monitor device?

2020-09-08 Thread Sean Greenslade
On Mon, Sep 07, 2020 at 05:03:59PM -0700, guest271314 wrote: > > I doubt that will be possible. Pavucontrol makes use of the native > > pulseaudio APIs, which are not exposed to javascript. > > If mpv can be embedded in an HTML document > https://github.com/Kagami/mpv.js it should be possible to

Re: [pulseaudio-discuss] How to create a virtual microphone with source set as default monitor device?

2020-09-07 Thread guest271314
> I doubt that will be possible. Pavucontrol makes use of the native pulseaudio APIs, which are not exposed to javascript. If mpv can be embedded in an HTML document https://github.com/Kagami/mpv.js it should be possible to embed pavucontrol or pavucontrol-qt

Re: [pulseaudio-discuss] How to create a virtual microphone with source set as default monitor device?

2020-09-07 Thread Sean Greenslade
On Mon, Sep 07, 2020 at 12:31:22AM -0700, guest271314 wrote: > > There are a couple of options. One is to simply redirect the sink input > > once it is opened (e.g. with pavucontrol). > > That option is used at > https://github.com/guest271314/captureSystemAudio#launch_pavucontrol. > > For the

Re: [pulseaudio-discuss] How to create a virtual microphone with source set as default monitor device?

2020-09-07 Thread guest271314
> There are a couple of options. One is to simply redirect the sink input once it is opened (e.g. with pavucontrol). That option is used at https://github.com/guest271314/captureSystemAudio#launch_pavucontrol. For the pavucontrol option the next goal is to embed pavucontrol in an HTML document.

Re: [pulseaudio-discuss] How to create a virtual microphone with source set as default monitor device?

2020-09-07 Thread Sean Greenslade
On Sat, Sep 05, 2020 at 09:10:36AM -0700, guest271314 wrote: > Chromium browser does not support capture of monitor devices when > navigator.mediaDevices.getUserMedia() is called. Chromium only > supports capture of non-monitor microphone input devices. > > How to create a virtual microphone with