So when my video loads and begins to play, the audio from the device (ipod, spotify) stops playing. If I force the audio to play (by switching over to ipod and pressing play and combing back to my app) the video is frozen. I also tested out an audio file directly in the app and that works perfectly fine while the video is playing. The audio works all through out the app and I placed it in the same UIView as the video. All videos in the app do not have any audio files. I have tried the "muted" preference in the video tag with no luck. This is an essential part of the app and any help would be really appreciated.
HTML:
<div style="height:85%;width:100%;border:0px solid purple;border-radius:100px;margin-left:auto;margin-right:auto;margin-top:0%;" ng-click="showIt();" on-swipe-right="prev()" on-swipe-left="next()">
<video webkit-playsinline muted autoplay loop ng-src="{{keeper}}" style="width:100%;height:100%;border:0px solid white;border-radius:100px;z-index:1;">
</video>
</div>
I am willing to try anything, so please feel free to throw out any ideas you may have.