You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Performance improvements, in particular changed source from AVPlayer to AVPlayerItem to ensure only one AVPlayer is init. This will result in better performance when changing source directly on the video tag.
Significant issues were identified on Android when using VideoView with the NativeScript animation engine. No animations were possible on the video itself and it'd result in the video going black. This turns out to be a known problem with animations and VideoView. This is because VideoView inherits from SurfaceView and "...it cannot be transformed (moved, scaled, rotated) efficiently". (https://android-developers.googleblog.com/2011/11/android-40-graphics-and-animations.html). Based on this, Android was changed to using a TextureView. More information can be read at the aforementioned blogpost.