You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When i record an audio on an Apple device (iPhone or Mac), with the Wav encoder, the result in the blob is only 44B in size. The data only contains 'RIFF$WAVEfmt D-+data'.
The recording process works well and I can fetch the data in bytes on Chrome.
Record configuration :
RecordConfig(
encoder: AudioEncoder.wav,
bitRate: bitRate ?? kBitRate, // here 128000
sampleRate: sampleRate ?? kSampleRate, // here : 44100
),
To Reproduce
Launch a simple record on a flutter web project, and try to read the content from the blob url data.
The text was updated successfully, but these errors were encountered:
@elios-cama yes, I have the same issue. I'm recording audio and sending it to the server based on XFile. The file uploads correctly and also the file size is reasonable and ok but no audio while it's working on Chrome
Package version
record: ^5.1.2
Environment
Describe the bug
When i record an audio on an Apple device (iPhone or Mac), with the Wav encoder, the result in the blob is only 44B in size. The data only contains 'RIFF$WAVEfmt D-+data'.
The recording process works well and I can fetch the data in bytes on Chrome.
Record configuration :
RecordConfig(
encoder: AudioEncoder.wav,
bitRate: bitRate ?? kBitRate, // here 128000
sampleRate: sampleRate ?? kSampleRate, // here : 44100
),
To Reproduce
Launch a simple record on a flutter web project, and try to read the content from the blob url data.
The text was updated successfully, but these errors were encountered: