Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Not allowed to load local resource: blob:blobinternal:///

I am using https://github.com/BasqueVoIPMafia/cordova-plugin-iosrtc and I am having a hard time to allow ios 11 to work with internal blobs.

Do you have any idea how to configure cordova 7 (ios engine 4.5+) in order to make this works?

Thank you!

like image 203
Andrej Avatar asked Mar 01 '18 22:03

Andrej


1 Answers

what actually fixed it for me was changing video.srcObject = stream; to video.src = window.URL.createObjectURL(stream);

like image 128
syonip Avatar answered Oct 23 '22 16:10

syonip