Vídeo como uma tela inicial em vez de Picture

Estou fazendo o Tutorial de programação do Android nas telas de apresentação, onde você mostra uma imagem ou texto por 5 segundos do que o aplicativo principal. Minha pergunta é ... Em vez de texto ou imagens, quero exibir um arquivo de vídeo por 5 segundos antes de ir para a próxima página do aplicativ

Não estou falando de quando o Aplicativo Carrega. Estou falando quando ele é Carregado e você o programa para exibir algo em uma página Java e XML separada para exibir algo e depois mover para outro item ... aqui está o meu código atua

@Override
protected void onCreate(Bundle SplashScreen1) {
    // TODO Auto-generated method stub
    super.onCreate(SplashScreen1);
    setContentView(R.layout.splash);
    ourSong = MediaPlayer.create(Splash.this, R.raw.splashsound);
    ourSong.start();
    Thread timer = new Thread(){
        public void run(){
            try{
                sleep(5000);
            } catch (InterruptedException e){
                e.printStackTrace();
            }finally{
                Intent openStartingPoint = new Intent("com.Player.Splash.STARTINGPOINT");
                startActivity(openStartingPoint);

            }
        }
    };
    timer.start();

}

@Override
protected void onPause() {
    // TODO Auto-generated method stub
    super.onPause();
    ourSong.release();
    finish();
}

Então, o que faço para exibir um arquivo de mídia de vídeo sem iniciar / parar et

questionAnswers(5)

yourAnswerToTheQuestion