Failed to parse SessionDescription

Radu

New Member
Getting the following error on Chrome (OSX Mojave) only using Chrome Version 70.0.3538.67 (Official Build) (64-bit). Anyone experienced anything related, is it a config issue from the server-side?

Failed to parse SessionDescription: a=rtpmap:111 opus/48000/2 Invalid value: 2.

Settings

codecs =opus,alaw,ulaw,g729,speex16,g722,mpeg4-generic,telephone-event,vp9,vp8,h264,flv,mpv
#codecs =mpeg4-generic,opus,alaw,ulaw,g729,speex16,g722,telephone-event,h264,flv,mpv
codecs_exclude_sip =mpeg4-generic,flv,mpv
codecs_exclude_streaming =flv,telephone-event
codecs_exclude_sip_rtmp =opus,g729,g722,mpeg4-generic,vp8,mpv



 

Max

Administrator
Staff member
Good day.
We tested WebRTC stream publishing and playback with Chrome 70.0.3538.67, macOS Mojave 10.14, WCS 5.1.3600, and it works perfect. Please prepare a report as described here and send to support@flashphoner.com, we will check.
 

Radu

New Member
Just solved the error by removing the audio constraints:

let audioConstraints ={ bitrate: 44100 }

is now just:

let audioConstraints=true
 
Top