Skip to content Skip to sidebar Skip to footer

Does Google Webrtc Support Cisco Open H.264?

Knowing the fact that Cisco has its h.264 codec made as open source I wanted to add it to the Android WebRTC SDK. I tried to create custom VideoEncoder using the webRTC API but I f

Solution 1:

WebRTC (https://webrtc.googlesource.com/src) supports h264 using openH264. but it needs to be build for target platform. For Android is has been build in chrome or chromium but not on the Android SDK. so you can't have openH264 using Android SDK. you need to build WebRTC for android yourself and then add the wrapper class to call the native apis. You can use WebRTC JS API on a web application thou.


Post a Comment for "Does Google Webrtc Support Cisco Open H.264?"