jt274

Results 71 comments of jt274

@russellwheatley I'm not sure if this is completed yet, as it didn't appear to make it into the last pub release after you merged.

@russellwheatley apparently was merged, but does not seem to be released yet.

@russellwheatley branch should be fixed!

@llfbandit According to Apple Developer docs, opus codec is supported on iOS 11+ using `kAudioFormatOpus` for `AVFormatIDKey`. https://developer.apple.com/documentation/coreaudiotypes/kaudioformatopus `record_darwin` specifies this here: https://github.com/llfbandit/record/blob/de508bbeddff92aa087412c4e20660d0e65fe03c/record_darwin/darwin/Classes/RecorderFormat.swift#L80

> Opus is available for decoding only. @llfbandit I edited this file: https://github.com/llfbandit/record/blob/de508bbeddff92aa087412c4e20660d0e65fe03c/record_darwin/darwin/Classes/Recorder.swift#L127 I added the line: `AudioEncoder.opus.rawValue` I then tried recording using `AudioEncoder.opus` on iOS, and the recording was...

I used the following config: ``` RecordConfig( encoder: AudioEncoder.opus, sampleRate: 16000, bitRate: 8000, numChannels: 1, ) ``` After recording an audio file, I analyzed it with `ffprobe`: ``` Input #0,...

Yes, ideally there would be a solution to convert to OGG container, but I can figure something out for that.

@narayana-plivo This is still an issue: ``` import * as plivo from 'plivo'; let client = new plivo.Client('',''); client.verify_session.create({ app_uuid:'', recipient: '', url:'https://.com/sms_status/', method:'POST', channel:'sms' }).then(function(response) { console.log(response) }); ```...

@KennyHuRadar Almost a year later and this issue still persists.