Brad Isbell

Results 17 issues of Brad Isbell

I'm using Authom like this: ``` app.use('/auth/:service', authom.app); ``` I'm trying to authentication with Google, which uses OAuth2. The `redirect_uri` passed to Google contains `/` instead of `/auth/google`. I think...

Suppose I have a database of music with separate models for tracks, artists, and albums. I want to be able to search tracks based on artist name, album name, etc....

enhancement
question
documentation

After running `npm install omnitone`, I'm trying the following in my code: ```js const Omnitone = require('omnitone'); ``` This results in an empty object. I see on the browser's console...

This code throws an error: ``` const registry = require('windows-registry'); const windef = registry.windef; const key = new registry.Key(windef.HKEY.HKEY_LOCAL_MACHINE, 'SOFTWARE\\SomeVendor\\SomeApp\\Settings'); ``` > Failed to open key error: undefined This happens...

Currently, to get a media device list we must first make a call to `getUserMedia()`. This creates UX headaches for use cases where the user needs to pick a device...

## Issue Description ### What are you doing? Attempting to register an `afterConnect()` hook. ```js const Sequelize = require('sequelize'); const sequelize = new Sequelize({ dialect: 'sqlite', storage: 'db.sqlite', }); sequelize.afterConnect(async...

type: bug
dialect: sqlite

When using the `windows-asio` API, it seems to ignore what `deviceId` I set when constructing the audio stream. It always picks a device that I don't have plugged in: >...

I'm having trouble with the basic audio input example. The audio input callback stops being called after about 7 seconds. Some notes: - This occurs with both WASAPI and DirectShow...

In addition to the existing `getSampleRate()`, it would be useful to `getChannelCount()` as well as `getFormat()` so we could know these parameters for the audio being recorded. That way, if...

### Preflight Checklist - [X] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/main/CONTRIBUTING.md) for this project. - [X] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/main/CODE_OF_CONDUCT.md) that this project adheres to. -...

enhancement :sparkles: