Click here to view the code snippet
<div ng-app="myApp" ng-controller="testCtrl">
<section ng-if="url">
<video id="player1" playsinline autoplay loop muted volume="0.0">
<source ng-src="{{url | trusturl}}" type="video/mp4"> Your browser does not support the video tag.
</video>
</section>
</div>
Since updating to chrome 64, my video is no longer muting. When I move the video outside of the ng-if and hardcode the URL, it works correctly.
Any suggestions on how to solve this issue?