Esempio n. 1
0
 private void txtVideoFramerate_Validating(object sender, CancelEventArgs e)
 {
     if (!string.IsNullOrEmpty(txtVideoFramerate.Text))
     {
         int               value;
         Media.IntRange    range = null;
         bool              valid = int.TryParse(txtVideoFramerate.Text, out value);
         VideoCodecWrapper codec = cmbVideoCodec.SelectedItem as VideoCodecWrapper;
         if (codec != null)
         {
             range = codec.GetFrameLimit();
             if ((range != null) && (valid))
             {
                 valid = (value >= range.Min) && (value <= range.Max);
             }
         }
         if (!valid)
         {
             string message = "Please enter integer value";
             if (range != null)
             {
                 message += string.Format(" between {0} and {1}", range.Min, range.Max);
             }
             ShowPrompt(message, "Error");
             e.Cancel = true;
         }
     }
 }
Esempio n. 2
0
        private void cmbVideoCodec_SelectedIndexChanged(object sender, EventArgs e)
        {
            cmbVideoResolution.Items.Clear();
            txtVideoBitrate.Text   = null;
            txtVideoFramerate.Text = null;
            VideoCodecWrapper encoder = cmbVideoCodec.SelectedItem as VideoCodecWrapper;

            if (encoder != null)
            {
                Media.VideoResolution[] resolutions = encoder.GetResolutions();
                if (resolutions != null)
                {
                    foreach (Media.VideoResolution resolution in resolutions)
                    {
                        cmbVideoResolution.Items.Add(new VideoResolutionWrapper {
                            Resolution = resolution
                        });
                    }
                }
                Media.IntRange framerate = encoder.GetFrameLimit();
                if (framerate != null)
                {
                    txtVideoFramerate.Text = framerate.Min.ToString();
                }
            }
            if (cmbVideoResolution.Items.Count > 0)
            {
                cmbVideoResolution.SelectedIndex = 0;
            }
        }