jamsch

Results 19 comments of jamsch

It seems as though Safari 14.0.3 now has MediaRecorder API support with `audio/mp4` support, but not `audio/wav`. Still using this library to polyfill override the default MediaRecorder on Safari because...

Came across the same issue when using the BlurView inside a `FlatList`. Tried `expo-blur` as well. `expo-blur` works... although it doesn't actually do any blurring on Android.

Related issue https://github.com/react-native-community/react-native-audio-toolkit/issues/154

I lodged an issue on the react native voice repository. It's related to the audio session category management (since iOS requires you to handle a single audio session throughout the...

FYI, we just released our app with this updated library to production and are receiving a number of reports from Huawei users claiming that they aren't able to play any...

The performance probably is probably not great, but the easiest way would be to call setInterval like the following: ```js const Easing = { // no easing, no acceleration linear(t)...

@markwk Something like this https://github.com/jamsch/react-native-voice/blob/78e7aabf3b6d27168d33d288bb03ae10b6a777ff/ios/Voice/Voice.m#L199

You could also do something like `HanziWriterInstance._character.strokes.length` in the onComplete() callback.

Not so much a bug fix, but the intention is to make it easier for users to add in their own custom characters without requiring them to write an algo...

@chanind Yep, makes sense. Will add to this PR with your suggested changes soon. If I'm understanding you correctly, we'd implement a default character parser/transformer (as we're assuming this is...