// GET: /Video/GetPlayingInfo
        public ContentResult GetPlayingInfo()
        {
            StringWriter writer = new StringWriter();

            Zoom.GetInfo().Save(writer);
            return(this.Content(writer.ToString(), @"text/xml", writer.Encoding));
        }