Use Object Loader parse-Text Geometry-Video Texture Show on AR

Hi
I have a scene that I add different kind of object to this like gltf ,geometry ,textgeometry ,videoTexture ,…
And then I group all of them and save as json then parse them with **
** THREE.ObjectLoader().parse(myJSON)

for using in AR.
all things parse correctly and I can show them on AR camera(I use ARnft)
But for video and TextGeometry I can not see anything there
" THREE.ObjectLoader().parse(myJSON)" can not parse textGeometry
Can you help me!!!
And How can I use video object with video Texture for showing on AR???

For three js Scene I use this and it is worked:
let video=document.createElement( ‘video’ );
video.src=url
video.play();
video.addEventListener( ‘play’, function () {
this.currentTime = 3;
} );

let texture = new THREE.VideoTexture( video );
parameters = { color: 0xffffff, map: texture, side: THREE.DoubleSide };
geometry =new THREE.BoxGeometry();
materialVideo = new THREE.MeshBasicMaterial(parameters);
mesh = new THREE.Mesh( geometry, materialVideo);
scene.add(mesh