Makie display error when used with VideoIO

I am trying to view some video images recorded as mp4 on a cell phone. I have loaded VideoIO and Makie along with the backend GLMakie.

I am using Windows 10, Julia 1.6.1 and have tried restarting Julia a few times and using the ] build Makie & build GLMakie, as well as removing them and reinstalling.
When adding the Makie and GLMakie I get the following errors:

(@v1.6) pkg> add Makie
    Updating registry at `C:\Users\jakez\.julia\registries\General`
    Updating git-repo `https://github.com/JuliaRegistries/General.git`
   Resolving package versions...
    Updating `C:\Users\jakez\.julia\environments\v1.6\Project.toml`
  [ee78f7c6] + Makie v0.13.14
    Updating `C:\Users\jakez\.julia\environments\v1.6\Manifest.toml`
  [27a7e980] + Animations v0.4.1
  [4fba245c] + ArrayInterface v3.1.17
  [fa961155] + CEnum v0.4.1
  [a2cac450] + ColorBrewer v0.4.0
  [c3611d14] + ColorVectorSpace v0.9.5
  [da5c29d0] + EllipsisNotation v1.1.0
  [b38be410] + FreeType v4.0.0
  [663a7486] + FreeTypeAbstraction v0.9.1
  [3955a311] + GridLayoutBase v0.5.4
  [615f187c] + IfElse v0.1.0
  [82e4d734] + ImageIO v0.5.5
  [9b13fd28] + IndirectArrays v0.5.1
  [8197267c] + IntervalSets v0.5.3
  [f1662d9f] + Isoband v0.1.1
  [5ab0869b] + KernelDensity v0.6.3
  [ee78f7c6] + Makie v0.13.14
  [7eb4fadd] + Match v1.1.0
  [f09324ee] + Netpbm v1.0.1
  [f57f5aa1] + PNGFiles v0.3.7
  [19eb6ba3] + Packing v0.4.1
  [eebad327] + PkgVersion v0.1.1
  [647866c9] + PolygonOps v0.1.1
  [73760f76] + SignedDistanceFields v0.4.0
  [aedffcd0] + Static v0.2.5
  [62fd8b95] + TensorCore v0.1.1
  [731e570b] + TiffImages v0.3.2
  [1cfade01] + UnicodeFun v0.4.1
  [9a68df92] + isoband_jll v0.2.2+0
Precompiling project...
  ? Netpbm
  ? FreeTypeAbstraction
  ? Makie
  2 dependencies successfully precompiled in 8 seconds (291 already precompiled, 2 skipped during auto due to previous errors)
  3 dependencies failed but may be precompilable after restarting julia

(@v1.6) pkg>

and

(@v1.6) pkg> add GLMakie
   Resolving package versions...
    Updating `C:\Users\jakez\.julia\environments\v1.6\Project.toml`
  [e9467ef8] + GLMakie v0.2.7
    Updating `C:\Users\jakez\.julia\environments\v1.6\Manifest.toml`
  [537997a7] + AbstractPlotting v0.18.2
  [c3611d14] ↓ ColorVectorSpace v0.9.5 ⇒ v0.8.7
  [b38be410] ↓ FreeType v4.0.0 ⇒ v3.0.1
  [663a7486] ↓ FreeTypeAbstraction v0.9.1 ⇒ v0.8.4
  [f7f18e0c] + GLFW v3.4.1
  [e9467ef8] + GLMakie v0.2.7
  [7269a6da] + MeshIO v0.4.7
  [66fc600b] + ModernGL v1.1.2
  [65257c39] + ShaderAbstractions v0.2.6
  [62fd8b95] - TensorCore v0.1.1
Precompiling project...
  ? Netpbm
  ? FreeTypeAbstraction
  ? Makie
  ? AbstractPlotting
  2 dependencies successfully precompiled in 9 seconds (295 already precompiled, 2 skipped during auto due to previous errors)
  4 dependencies failed but may be precompilable after restarting julia

(@v1.6) pkg>

I am not sure what I should be doing now? I can maybe guess that the + to the left of the package means it precompiled, the down arrow and minus sign mean there is a problem?

After restarting Julia and going through the build again I get the following results.

(@v1.6) pkg> build Makie
Precompiling project...
  6 dependencies successfully precompiled in 68 seconds (295 already precompiled, 2 skipped during auto due to previous errors)

(@v1.6) pkg>

and

(@v1.6) pkg> build GLMakie
    Building ModernGL → `C:\Users\jakez\.julia\scratchspaces\44cfe95a-1eb2-52ea-b672-e2afdf69b78f\326957556e9cc9253615114c04bb0096a2a69bb8\build.log`

(@v1.6) pkg>

Thanks in advance

That doesn’t look right, AbstractPlotting is not in use anymore in the latest versions. Make sure that you install the right ones

Thank you. Without reading documentation I assumed that I needed to load Makie first and didn’t think about loading backends until things didn’t work. Then I loaded GLMakie and it still didn’t work. I removed both and just loaded GLMakie and all the tests pass.