Corey Cole

Results 31 comments of Corey Cole

@sim590 if you run nvim server on the wsl, then you can use msys clangd.exe on the windows side ``` which clangd /mingw64/bin/clangd ``` ^ On windows powershell shell on...

@joecaine do you know what about the MediaObject needs to be changed to avoid the delay? I tried making the mp3 url unique each time I play it, but I'm...

Hey @yrmartinez no there is still a pause of a seemingly random interval between audio files in my skill. I've had an open support ticket with Christian Dale since January....

Same for me. ```dart await incall.start(media: MediaType.AUDIO, auto: true, ringback: ''); await incall.setForceSpeakerphoneOn(flag: ForceSpeakerType.FORCE_ON); ``` Audio comes out of speaker on android, but quietly from earpiece on iOS. When I...

Over in @GioviQ 's fork there are some changes ``` flutter_incall_manager: git: url: git://github.com/GioviQ/flutter-incall-manager.git ``` You can see [here](https://github.com/GioviQ/flutter-incall-manager/blob/master/ios/Classes/FlutterIncallManagerPlugin.m#L383) they are using `overrideOutputAudioPort:AVAudioSessionPortOverrideSpeaker` not `overrideOutputAudioPort:AVAudioSessionPortBuiltInSpeaker`. Maybe that is the issue...

I found on cloudwebrtc `MediaStreamTrack` there is a function to `enableSpeakerphone()` https://github.com/cloudwebrtc/flutter-webrtc/blob/master/lib/media_stream_track.dart#L58

If anyone is still confused, you add to your pubspec.yaml dependencies: ```yaml dependencies: # ... flutter_incall_manager: git: url: git://github.com/kangshaojun/flutter-incall-manager.git ```

@dcousens do you mind taking a look at my `:ALEInfo` error? I am on windows using mingw gcc. ``` Directory: C:\path\to\gstreamer-1.20.2\1.0\mingw_x86_64\include\gstreamer-1.0\gst\gst.h ``` My `compile_commands.json` is set up with include paths...

This is an example of a separate stubs package for numpy https://github.com/numpy/numpy-stubs

I'm still new to using mypy and I realized today we already have typing information for falcon, I just didn't know how to utilize it: ```python def on_post(self, req: falcon.Request,...