/// <summary>
        /// Prepare and start a new playlist, hooked up to the ready event.
        /// </summary>
        private void SetPlaylist(string value)
        {
            Playlist = new PlaylistMgr(value);

            Playlist.PlaylistReady += Playlist_PlaylistReady;
            Playlist.StartReading();
        }
        /// <summary>
        /// Prepare and start a new playlist, hooked up to the ready event.
        /// </summary>
        private void SetPlaylist(string value)
        {
            Playlist = new PlaylistMgr(value /*"http://www.arqiva.twofourstaging.net/hls/index.m3u8.gz"*/);

            Playlist.PlaylistReady += new EventHandler(Playlist_PlaylistReady);
            Playlist.StartReading();
        }