public void nextVideo()
        {
            if (!isInitialized)
            {
                Debug.Log(LOG_TAG + " not initialized.");
                return;
            }

            decoder.stopDecoding();
            fileSeeker.toNext();

            onChangeVideo.Invoke();
        }