I've not found any answer in the Forum to this, what I thought would be a common question, but apologies if I've not had a thorough look.
I have some code in a legacy project which plays a video file:
There is other code which adjusts the location of the node (MediaViewNode) and size of the JavaObject (mv) to suit various circumstances.
Now I want to be able to load a sequence of other video files following completion of the originally loaded video file.
However I cannot see how I can just load the next file and play it. It seems I must create a new instance of the MediaPlayer and JavaObject for each new file and this is inconvenient because I have to resize the JavaObject and remove / relocate the MediaViewNode to match that previously used. It would be far better if I could use the existing instances and just point to the new file, but this may not be possible.
Any and all feedback appreciated.
I have some code in a legacy project which plays a video file:
B4X:
Dim mp As MediaPlayer
Dim mv As JavaObject
Dim MediaViewNode As Node
mp.Initialize("mp",File.GetUri(p,n))
mv.InitializeNewInstance("javafx.scene.media.MediaView",Array(mp))
MediaViewNode = mv
Display.fullPane.AddNode(MediaViewNode,0,0,-1,-1)
mp.play
MediaViewNode.Visible = True
There is other code which adjusts the location of the node (MediaViewNode) and size of the JavaObject (mv) to suit various circumstances.
Now I want to be able to load a sequence of other video files following completion of the originally loaded video file.
However I cannot see how I can just load the next file and play it. It seems I must create a new instance of the MediaPlayer and JavaObject for each new file and this is inconvenient because I have to resize the JavaObject and remove / relocate the MediaViewNode to match that previously used. It would be far better if I could use the existing instances and just point to the new file, but this may not be possible.
Any and all feedback appreciated.