예제 #1
0
 public void Play()
 {
     Logger.Debug("Play()");
     // If there is an associated media player then make sure the video surface
     // is attached
     if (mediaPlayer is EmbeddedMediaPlayer)
     {
         ((EmbeddedMediaPlayer)mediaPlayer).AttachVideoSurface();
     }
     LibVlc.libvlc_media_list_player_play(mediaListPlayerInstance);
 }