getVideoSource

Retrieves the current video source URI.

Returns the currently loaded media source, including its configuration if set.

Example usage:

SurfaceView surfaceView = findViewById(R.id.surface_view);
SandboxedPlayer player = new SandboxedPlayer(context, surfaceView);
player.loadVideoSource("http://example.com/video.mp4", null);
Pairsource = player.getVideoSource();
if (source != null) {
    Log.d("Client", "Current URI: " + source.first);
}

Return

The loaded URI and its configuration as a Pair, or null if no source is set.