public static VideoInformation Parse(IEnumerable<HttpContent> contents)
        {
            var videoInforamtion = new VideoInformation();
            string title;
            string description;

            contents.TryGetFormFieldStringValue(VideoTitleFormField, out title);
            contents.TryGetFormFieldStringValue(VideoDescriptionFormField, out description);

            videoInforamtion.FileInformation = FileInformation.Parse(contents, VideoFileUploadFormField);
            videoInforamtion.Title = title;
            videoInforamtion.Description = description;

            return videoInforamtion;
        }