Levi Melamed

Results 31 comments of Levi Melamed

@FatmaMahmoud698 I created a fork, which does not depend on expo-localization. https://www.npmjs.com/package/expo-react-native-version-checker

I created a fork, which does not depend on expo-localization. https://www.npmjs.com/package/expo-react-native-version-checker

> Thanks but what about Android, does it work? Play Store has changed and version number hidden in popup menu. Android is working currently. The play store source contains some...

Experiencing the same issue. Looks to be limited to Samsung devices, running Android 12. Running Expo 45.0.8. I wonder if this issue might be caused by the EAS build process?...

@Thijmen The client only sends ping/pong after a period of inactivity is reached (defaults to 30 seconds). I suspect what is happening is, perhaps due to browser inactivity, the socket...

> Having the same issue today. An update would be appreciated. I was able to "solve" it, by downgrading to version 0.8.3

@xaksis I am on Linux (via Windows WSL), so used curl: ``` sudo curl -o /usr/local/bin/cog -L "https://github.com/replicate/cog/releases/download/v0.8.3/cog_$(uname -s)_$(uname -m)" sudo chmod +x /usr/local/bin/cog ```

This is still an issue, as seen on the official demo: ![RW6adeDGx7GD](https://github.com/themesberg/flowbite/assets/1766843/68ece09f-7175-4cd0-a53c-4eeddb9508f1)

I was able to get around this, by using the Vad implementation from faster-whisper. ``` from faster_whisper.vad import get_speech_timestamps, VadOptions, collect_chunks, SpeechTimestampsMap audio_data = load_audio(audio_file) speech_chunks = get_speech_timestamps(audio_data, VadOptions()) audio_without_silence...

Anecdotally, I would say the accuracy is worse. The huggingface implementation, which this uses, applies a stride to the chunks. Meaning, some of the input, is duplicated across multiple chunks....