상속: MonoBehaviour
예제 #1
0
 private void Awake()
 {
     instance = this;
     //string dateInput = "Wed Aug 01 2018 08:55:04 GMT+0700";
     //string dateInput = "Jul 31 2018 22:16:25";
     //CalcTime(dateInput);
 }
예제 #2
0
    protected override void OnDeath()
    {
        base.OnDeath();
        if (pounceTimer != null)
        {
            TimeControl.RemoveTimer(pounceTimer.id);
        }
        //todo - turn into corpse
        int foodToDrop = foodDroppedRange.second == 0 ? 0 : Random.Range(foodDroppedRange.first, foodDroppedRange.second + 1);

        if (GameEngine.instance.player.HasTrait(Trait.Type.HUNTER))
        {
            foodToDrop *= 2;
        }
        while (foodToDrop > 0)
        {
            var food = Instantiate(foodOnDeath, transform.position, Quaternion.identity);
            food.GetComponent <Collider2D>().enabled = false;
            food.transform.DOMove(new Vector3(Random.Range(-1f, 1f), Random.Range(-1f, 1f), 0f), .4f)
            .SetEase(Ease.InQuad)
            .SetRelative()
            .OnComplete(() => food.GetComponent <Collider2D>().enabled = true);
            foodToDrop--;
        }
        Destroy(this.gameObject);
    }
예제 #3
0
    /// <summary>
    /// 创建计时器
    /// </summary>
    /// <param name="gobjName"></param>
    /// <returns></returns>
    public static TimeControl CreaterTimer(string gobjName = "Timer")
    {
        GameObject  g     = new GameObject(gobjName);
        TimeControl timer = g.AddComponent <TimeControl>();

        return(timer);
    }
예제 #4
0
    // Start is called before the first frame update
    void Start()
    {
        pause = GameObject.FindGameObjectWithTag("MainCamera").GetComponent <Pause>();

        hs   = GameObject.FindGameObjectWithTag("Help").GetComponent <HelpScript>();
        time = GameObject.FindGameObjectWithTag("TimeControl").GetComponent <TimeControl>();

        walkSound     = GameObject.FindGameObjectWithTag("WalkSound").GetComponent <AudioSource>();
        jumpSound     = GameObject.FindGameObjectWithTag("PlayerJumpSound").GetComponent <AudioSource>();
        shootSound    = GameObject.FindGameObjectWithTag("ShootSound").GetComponent <AudioSource>();
        deathSound    = GameObject.FindGameObjectWithTag("DeathSound").GetComponent <AudioSource>();
        safeSpotSound = GameObject.FindGameObjectWithTag("FireSound").GetComponent <AudioSource>();
        pickUpSound   = GameObject.FindGameObjectWithTag("PickUpSound").GetComponent <AudioSource>();
        stealSound    = GameObject.FindGameObjectWithTag("StealSound").GetComponent <AudioSource>();


        rBody    = gameObject.GetComponent <Rigidbody2D>();
        anim     = gameObject.GetComponent <Animator>();
        renderer = gameObject.GetComponent <SpriteRenderer>();

        originalColor = renderer.material.color;
        currHealth    = maxHealth;
        currSanity    = maxSanity;
        currFed       = maxFed;
        mushroom      = 1;
        weed          = 1;
        wood          = 1;
        stone         = 1;
    }
        public static Grid Grid_Time(ref TimeControl time, string str_lbl, string str_txt)
        {
            //-----------------------Label----------------
            Label lbl = new Label();

            lbl.Content             = str_lbl;
            lbl.HorizontalAlignment = HorizontalAlignment.Left;


            //---------------------TimeControl-----------------
            time.Name = str_txt;
            time.HorizontalAlignment = HorizontalAlignment.Left;
            time.Margin = new Thickness(150, 0, 0, 0);
            time.Width  = 200;


            //-----------------------Grid-----------------
            Grid grid = new Grid();

            grid.Children.Add(lbl);
            grid.Children.Add(time);
            grid.Margin = new Thickness(300, 10, 300, 0);
            DockPanel.SetDock(grid, Dock.Top);

            return(grid);
        }
예제 #6
0
 public IEnumerable <Game> Run()
 {
     foreach (MatchRecord gameRecord in GameList)
     {
         PendingGames.Enqueue(gameRecord);
     }
     while (PendingGames.Count > 0)
     {
         MatchRecord currentGameRecord = PendingGames.Dequeue();
         if (currentGameRecord.SavedGameFile != null)
         {
             if (File.Exists(CurrentPath + Path.DirectorySeparatorChar + currentGameRecord.SavedGameFile))
             {
                 System.GC.Collect();
                 TextReader reader = new StreamReader(CurrentPath + Path.DirectorySeparatorChar + currentGameRecord.SavedGameFile);
                 Game       game   = Manager.LoadGame(reader);
                 reader.Close();
                 game.StartMatch();
                 game.ComputerControlled[0] = true;
                 game.ComputerControlled[1] = true;
                 game.AddInternalEngine(0);
                 game.AddInternalEngine(1);
                 TimeControl timeControl = new TimeControl(currentGameRecord.TimeControl);
                 game.Match.SetTimeControl(timeControl);
                 yield return(game);
             }
             else
             {
                 throw new Exception("Cannot find saved game: " + currentGameRecord.SavedGameFile);
             }
         }
     }
 }
예제 #7
0
 public void Button_OnClick_True()
 {
     m_UIPanel.SetActive(false);
     m_Text.enabled = true;
     m_TimeControl  = TimeControl.RegionSearch;
     m_Text.text    = "开始搜索...";
 }
예제 #8
0
 // Start is called before the first frame update
 void Start()
 {
     _movement            = GetComponentInChildren <AircraftMovement>();
     _textureManager      = GetComponent <AircraftTextureManager>();
     _aircraftAudioSource = gameObject.AddComponent <AudioSource>();
     timeControl          = FindObjectOfType <TimeControl>();
 }
예제 #9
0
 void OnDestroy()
 {
     if (pounceTimer != null)
     {
         TimeControl.RemoveTimer(pounceTimer.id);
     }
 }
예제 #10
0
 override protected void OnButtonDown(Controller.Command command)
 {
     if (command == Controller.Command.ATTACK)
     {
         if (isAttacking)
         {
             return;
         }
         isAttacking     = true;
         speedMultiplier = 0f;
         float stareTime = attackCharge;
         GetComponentInChildren <SpriteRenderer>().DOColor(Color.blue, stareTime);
         GetComponent <Animator>().enabled = false;
         pounceTimer = TimeControl.StartTimer(stareTime, () => {
             speedMultiplier = attackSpeedMultiplier;
             GetComponent <Attack>().isAttacking = true;
             audio.clip = attackSFX;
             audio.Play();
             pounceTimer = TimeControl.StartTimer(attackTime, () =>
             {
                 speedMultiplier = defaultSpeedMultiplier;
                 GetComponent <Attack>().isAttacking = false;
                 isAttacking = false;
                 GetComponent <Animator>().enabled = true;
                 GetComponentInChildren <SpriteRenderer>().color = Color.white;
             });
         });
     }
 }
예제 #11
0
 public static void CreateTimeControlMarks(TimeControl tc, TraceProcessorBase trace)
 {
     // Build set of times stamps from marks
     {
         var m = new List <TimeControl.Mark>();
         m.Add(new TimeControl.Mark {
             Name = "Start", Time = 0.0
         });
         var marks = new List <TraceMark>();
         trace.MetaData.GetTraceMarks(marks);
         foreach (var mark in marks)
         {
             m.Add(new TimeControl.Mark
             {
                 Name = mark.Name,
                 Time = mark.TimeStamp / (double)trace.MetaData.TimerFrequency
             });
         }
         tc.MinTime = 0;
         tc.MaxTime = trace.MetaData.MaxTimeStamp / (double)trace.MetaData.TimerFrequency;
         m.Add(new TimeControl.Mark {
             Name = "End", Time = tc.MaxTime
         });
         tc.SetMarks(m);
     }
 }
예제 #12
0
        private void dispatcherTimer_Tick(object sender, EventArgs e)
        {
            try
            {
                if (_wkDTOInProgress == null)
                {
                    return;
                }
                if (lstLog.Items.Count > 20)
                {
                    lstLog.Items.Clear();
                }
                int idleTime = (int)(TimeControl.GetIdleTime() / 1000);
                if (idleTime >= configdto.IdleCicle)
                {
                    lstLog.Items.Add(FindResource("IdleTime").ToString() + ": " + idleTime);
                    btnStatus.Fill = new SolidColorBrush(Colors.Red);
                }
                else
                {
                    btnStatus.Fill = new SolidColorBrush(Colors.LightGreen);
                    _wkDTOInProgress.TimeWorked += configdto.UpdateCicle;
                }

                if (_wkDTOInProgress.TimeWorked >= configdto.SyncCicle)
                {
                    var boWkInProgress = _wkBO.GetValidInProgress();
                    if (boWkInProgress.isValid())
                    {
                        if (boWkInProgress.ObjectList.Count() > 1)
                        {
                            ni.ShowBalloonTip(50000, FindResource("Job").ToString(), FindResource("MultiProgressMsg").ToString(), System.Windows.Forms.ToolTipIcon.Warning);
                            return;
                        }
                        if (_wkDTOInProgress.RemainingWork == 0)
                        {
                            ni.ShowBalloonTip(50000, FindResource("Job").ToString(), FindResource("JobTimeMsg").ToString(), System.Windows.Forms.ToolTipIcon.Warning);
                            return;
                        }
                        double percentTime = _wkDTOInProgress.TimeWorkedPercent;
                        _wkDTOInProgress = boWkInProgress.ObjectList.First();
                        _wkDTOInProgress.CompletedWork += percentTime;
                        var boUpdate = _wkBO.UpdateWorked(_wkDTOInProgress);
                        if (boUpdate.isValid())
                        {
                            _wkDTOInProgress            = boUpdate.ObjectList.First();
                            _wkDTOInProgress.TimeWorked = 0;
                        }
                    }
                    new Thread(() => { Start(); }).Start();
                }
                if (_wkDTOInProgress.TimeWorked >= configdto.UpdateCicle * 20)
                {
                    checkVersion();
                }
            }
            catch (Exception ex) {
                lstLog.Items.Add(ex.Message);
            }
        }
예제 #13
0
        static int _m_CreaterTimer_xlua_st_(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);



                int gen_param_count = LuaAPI.lua_gettop(L);

                if (gen_param_count == 1 && (LuaAPI.lua_isnil(L, 1) || LuaAPI.lua_type(L, 1) == LuaTypes.LUA_TSTRING))
                {
                    string _gobjName = LuaAPI.lua_tostring(L, 1);

                    TimeControl gen_ret = TimeControl.CreaterTimer(_gobjName);
                    translator.Push(L, gen_ret);



                    return(1);
                }
                if (gen_param_count == 0)
                {
                    TimeControl gen_ret = TimeControl.CreaterTimer(  );
                    translator.Push(L, gen_ret);



                    return(1);
                }
            } catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }

            return(LuaAPI.luaL_error(L, "invalid arguments to TimeControl.CreaterTimer!"));
        }
예제 #14
0
 void DWrongButton()
 {
     // remaining--;
     //remainingAttempts.text = remaining.ToString();
     HUDController.health -= 25;
     TimeControl.ResumeGame();
     Destroy(this.gameObject);
 }
예제 #15
0
 void DRightButton()
 {
     //remaining++;
     //remainingAttempts.text = remaining.ToString();
     HUDController.score += 1500 * (int)Time.deltaTime + 700;
     TimeControl.ResumeGame();
     Destroy(this.gameObject);
 }
예제 #16
0
 private void Awake()
 {
     obstacleControl = GetComponent<ObstacleQueueControl>();
     scoreControl = GetComponent<ScoreControl>();
     timeControl = GetComponent<TimeControl>();
     flowControl = GetComponent<FlowControl>();
     deerLeft = GameObject.Find("DeerLeft");
     deerRight = GameObject.Find("DeerRight");
 }
예제 #17
0
 /// <summary>
 /// Sets the name
 /// </summary>
 /// <param name="clock">Clock</param>
 /// <returns>Builder</returns>
 public TBuilderType Clock(TimeControl clock)
 {
     if (clock == null)
     {
         throw new ArgumentNullException(nameof(clock));
     }
     TimeClock = clock;
     return(_concreteBuilderInstance);
 }
예제 #18
0
 void Awake()
 {
     //each time we start the game there's only one TimeController and this variable can be accessed by anywhere
     if (instance != null)
     {
         Debug.LogError("More than one GameController in scene");
     }
     instance = this;
 }
    public override void Init()
    {
        _timeControl = GameObject.FindObjectOfType <TimeControl>();
        var timeScaleJSON = new JSONStorableFloat("Time Scale", 1f, val => _timeControl.currentScale = val, 0.1f, 1f);

        RegisterFloat(timeScaleJSON);
        CreateSlider(timeScaleJSON).label = "Time Scale (Set Only)";
        _timeControl.currentScale         = timeScaleJSON.val;
    }
예제 #20
0
 private void Awake()
 {
     obstacleQueueControl = GetComponent<ObstacleQueueControl>();
     scoreControl = GetComponent<ScoreControl>();
     timeControl = GetComponent<TimeControl>();
     treeTapControl = GetComponent<TreeTapControl>();
     loseText = GameObject.Find ("LoseText").GetComponent<GUIText>();
     highScore = GameObject.Find ("HighScoreText").GetComponent<GUIText>();
 }
예제 #21
0
    // Start is called before the first frame update
    void Start()
    {
        time = GameObject.FindGameObjectWithTag("TimeControl").GetComponent <TimeControl>();

        float timeAmount = time.elapsedTime % 1;
        float days       = time.daysCount - 1;

        deathText.text    = "You have survived for " + days + " days, " + Mathf.Floor(timeAmount % 1f * 24).ToString("00") + " hours, " + Mathf.Floor(((timeAmount % 1f * 24) % 1f) * 60).ToString("00") + " minutes.";
        continueText.text = "Press 'R' to start a new game, or 'E' to exit";
    }
예제 #22
0
 public void OnRootHit(Collider2D col)
 {
     if (col.gameObject.CompareTag("Harmful") && !invincible)
     {
         TimeControl.Hitstop(.05f);
         CameraShake.Shake(.1f, .1f);
         GameOver();
     }
     //Debug.Log("ROOT HIT " + col);
 }
예제 #23
0
 private void Start()
 {
     //初始化
     m_TimeControl = TimeControl.Default;
     //获取到ui对象
     m_UIPanel = m_UIControl.m_UIPanel;
     m_Text    = m_UIControl.m_Text;
     //获取到地面搜索
     m_FloorObj = m_ObjControl.m_FloorObj;
 }
예제 #24
0
 // Start is called before the first frame update
 void Start()
 {
     player         = Player.Instance;
     timeController = TimeControl.instance;
     GameIsOver     = false;
     demon          = (GameObject)Instantiate(demon, new Vector2(spawnPoint.position.x, spawnPoint.position.y), spawnPoint.rotation);
     demon.name     = "Demon";
     cam.FollowPlayer();
     StartCoroutine(autoSave());
 }
예제 #25
0
 private void Awake()
 {
     if (instance == null)
     {
         instance = this;
     }
     else
     {
         Destroy(gameObject);
     }
 }
예제 #26
0
    public override bool StartAttack()
    {
        if (!base.StartAttack())
        {
            return(false);
        }

        //transform.DOLocalRotate(new Vector3(0f, 0f, -90f), attackTime).SetRelative().OnComplete(FinishAttack);
        TimeControl.StartTimer(attackTime, FinishAttack);
        return(true);
    }
예제 #27
0
 private void ScheduleControl_Load(object sender, EventArgs e)
 {
     day1 = TimeControl.FirstDayOfWeek(DateTime.Today);
     day2 = TimeControl.FirstDayOfWeek(DateTime.Today).AddDays(1);
     day3 = TimeControl.FirstDayOfWeek(DateTime.Today).AddDays(2);
     day4 = TimeControl.FirstDayOfWeek(DateTime.Today).AddDays(3);
     day5 = TimeControl.FirstDayOfWeek(DateTime.Today).AddDays(4);
     day6 = TimeControl.FirstDayOfWeek(DateTime.Today).AddDays(5);
     day7 = TimeControl.FirstDayOfWeek(DateTime.Today).AddDays(6);
     UpdateLivingText();
 }
예제 #28
0
        /// <summary>
        /// Convert a string to a TimeControl object.
        /// </summary>
        /// <param name="timeControlString">The time control string.</param>
        /// <returns>The time control object.</returns>
        public static GameTimeControl TimeControlFromTimeControlString(string timeControlString)
        {
            var standardParts = TimeControl
                                .parseTimeControl(timeControlString)
                                .Select(DescriptorToTimeControlPart)
                                .ToList();

            return(new GameTimeControl()
            {
                TimeControlParts = standardParts,
            });
        }
예제 #29
0
        // *** HELPER FUNCTIONS *** //

        private void nextGame()
        {
            //	find next unfinished game to start
            MatchRecord nextMatch = null;

            foreach (MatchRecord match in MatchSet)
            {
                if (match.Result == null)
                {
                    nextMatch = match;
                    break;
                }
            }
            if (nextMatch != null)
            {
                StreamReader reader      = new StreamReader(nextMatch.SavedGameFile);
                Game         currentGame = Program.Manager.LoadGame(reader);
                currentGame.StartMatch();
                TimeControl timeControl = new TimeControl(nextMatch.TimeControl);
                currentGame.ComputerControlled[0] = true;
                currentGame.ComputerControlled[1] = true;
                if (nextMatch.Engines[0] == Program.Manager.InternalEngine)
                {
                    currentGame.AddInternalEngine(0);
                }
                else
                {
                    currentGame.AddEngine(Program.Manager.EngineLibrary.AdaptEngine(currentGame, nextMatch.Engines[0]), 0);
                }
                if (nextMatch.Engines[1] == Program.Manager.InternalEngine)
                {
                    currentGame.AddInternalEngine(1);
                }
                else
                {
                    currentGame.AddEngine(Program.Manager.EngineLibrary.AdaptEngine(currentGame, nextMatch.Engines[1]), 1);
                }
                currentGame.Match.SetTimeControl(timeControl);
                currentGame.IsAutomatedMatch = true;
                nextMatch.PlayerNames[0]     = currentGame.PerformSymbolExpansion(nextMatch.PlayerNames[0]);
                nextMatch.PlayerNames[1]     = currentGame.PerformSymbolExpansion(nextMatch.PlayerNames[1]);
                nextMatch.Game = currentGame;
                currentMatches.Add(nextMatch);
                GameForm gameForm = new GameForm(currentGame);
                gameForm.Show();
            }
            else
            {
                timer.Stop();
                outputFile.Close();
            }
        }
예제 #30
0
        private void menuitem_MultiPVAnalysis_Click(object sender, EventArgs e)
        {
            MultiPVAnalysisForm form = new MultiPVAnalysisForm();

            if (form.ShowDialog() == DialogResult.OK)
            {
                TimeControl fixedDepthTC = new TimeControl();
                fixedDepthTC.Infinite = true;
                fixedDepthTC.PlyLimit = Convert.ToInt32(form.NumDepth);
                engineThinking        = true;
                Game.Think(fixedDepthTC, form.NumVariations);
            }
        }
예제 #31
0
 private void Start()
 {
     soundAccess = GameObject.FindWithTag("GameController").GetComponent <SFXController>();
     timer       = Instantiate(Timer, new Vector2(100, 100), Quaternion.identity).GetComponent <TimeControl>();
     perfect     = Instantiate(Timer, new Vector2(100, 100), Quaternion.identity).GetComponent <TimeControl>();
     //timer = new Timer(stamina, false, staminaDegenRate); //Create a timer for counting down the remaining block time.
     timer.time                = stamina;
     timer.countDown           = false;
     timer.countdownMultiplier = staminaDegenRate;
     //perfect = new Timer(perfectWindow, false); //Create a timer for the perfect block window.
     perfect.time      = perfectWindow;
     perfect.countDown = false;
 }
예제 #32
0
 // Start is called before the first frame update
 void Start()
 {
     soundAccess         = GameObject.FindWithTag("GameController").GetComponent <SFXController>();
     anim                = GetComponent <Animator>();
     specialAC           = GetComponent <SpecialAttackControl>();
     timer               = Instantiate(timer, new Vector2(100, 100), Quaternion.identity).GetComponent <TimeControl>();
     timer.countDown     = true;
     moveQueue           = new Queue <int>(9);
     lightAttackDamage   = damageArray[0];
     heavyAttackDamage   = damageArray[1];
     rangedAttackDamage  = damageArray[2];
     specialAttackDamage = damageArray[3];
 }
예제 #33
0
    public void AddMsg(uint gameVer, ulong userID, ICmdNum.CmdNum msgID, System.Object data, float interval, int count, bool addNum, ulong msgNum)
    {
        TimeControl tc = new TimeControl();
        tc.userID = userID;
        tc.msgID = msgID;
        tc.gameVer = gameVer;

        tc.interval = interval;
        tc.count = count;
        tc.data = data;
        tc.addNum = addNum;
        tc.msgNum = msgNum;
        tc.time = Time.time;
        msgList.Add(tc);
    }
예제 #34
0
    public void AddMsg(UInt32 gameVer, UInt64 userID, CmdNum msgID, System.Object data, float interval, int count, EndPoint remote, bool addNum, UInt64 msgNum)
    {
        TimeControl tc = new TimeControl();
        tc.gameVer = gameVer;
        tc.userID = userID;
        tc.msgID = msgID;

        tc.interval = interval;
        tc.count = count;
        tc.data = data;
        tc.remote = remote;
        tc.addNum = addNum;
        tc.msgNum = msgNum;
        tc.time = (float)((double)timeGetTime()/(double)1000);
        msgList.Add(tc);
    }
        public Game CreateGame(Player whitePlayer, Player blackPlayer, DateTime date, TimeControl time, string result, string movesStr)
        {
            var moves = ParseMoves(movesStr);

            var game = _entities.Games.Add(new Game
            {
                PlayerWhite = _entities.Players.Find(whitePlayer.Id),
                PlayerBlack = _entities.Players.Find(blackPlayer.Id),
                Date = date,
                TimeControl = time,
                Result = result,
                Moves = moves
            });

            _entities.SaveChanges();

            return game;
        }
예제 #36
0
 void Start()
 {
     obj = this;
     OnStart += Empty;
     OnStop += Empty;
     timeSlider = FindObjectOfType<Slider>();
 }
예제 #37
0
 void Start()
 {
     //Busca recipiente
     recipient = GameObject.FindWithTag("Recipiente").GetComponent<Recipient>();
     //Busca temporizador
     timeControl = GetComponent<TimeControl> ();
     //Busca Janela
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EncodingAMEStandard));
     this.label3 = new System.Windows.Forms.Label();
     this.textboxoutputassetname = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.textBoxJobName = new System.Windows.Forms.TextBox();
     this.labelWarningJSON = new System.Windows.Forms.Label();
     this.moreinfopresetslink = new System.Windows.Forms.LinkLabel();
     this.richTextBoxDesc = new System.Windows.Forms.RichTextBox();
     this.label4KWarning = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.listboxPresets = new System.Windows.Forms.ListBox();
     this.buttonSaveXML = new System.Windows.Forms.Button();
     this.buttonLoadXML = new System.Windows.Forms.Button();
     this.label2 = new System.Windows.Forms.Label();
     this.textBoxConfiguration = new System.Windows.Forms.TextBox();
     this.comboBoxProcessor = new System.Windows.Forms.ComboBox();
     this.processorlabel = new System.Windows.Forms.Label();
     this.label34 = new System.Windows.Forms.Label();
     this.buttonCancel = new System.Windows.Forms.Button();
     this.buttonOk = new System.Windows.Forms.Button();
     this.panel1 = new System.Windows.Forms.Panel();
     this.openFileDialogPreset = new System.Windows.Forms.OpenFileDialog();
     this.saveFileDialogPreset = new System.Windows.Forms.SaveFileDialog();
     this.moreinfoame = new System.Windows.Forms.LinkLabel();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.Preset = new System.Windows.Forms.TabPage();
     this.Advanced = new System.Windows.Forms.TabPage();
     this.checkBoxAddAutomatic = new System.Windows.Forms.CheckBox();
     this.groupBoxTrim = new System.Windows.Forms.GroupBox();
     this.textBoxSourceDurationTime = new System.Windows.Forms.TextBox();
     this.label7 = new System.Windows.Forms.Label();
     this.timeControlEndTime = new AMSExplorer.TimeControl();
     this.timeControlStartTime = new AMSExplorer.TimeControl();
     this.checkBoxSourceTrimming = new System.Windows.Forms.CheckBox();
     this.labelsummaryjob = new System.Windows.Forms.Label();
     this.buttonJobOptions = new AMSExplorer.ButtonJobOptions();
     this.panel1.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.Preset.SuspendLayout();
     this.Advanced.SuspendLayout();
     this.groupBoxTrim.SuspendLayout();
     this.SuspendLayout();
     //
     // label3
     //
     this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(25, 557);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(126, 15);
     this.label3.TabIndex = 22;
     this.label3.Text = "Output asset(s) name :";
     //
     // textboxoutputassetname
     //
     this.textboxoutputassetname.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.textboxoutputassetname.Location = new System.Drawing.Point(27, 575);
     this.textboxoutputassetname.Name = "textboxoutputassetname";
     this.textboxoutputassetname.Size = new System.Drawing.Size(521, 23);
     this.textboxoutputassetname.TabIndex = 21;
     //
     // label1
     //
     this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(25, 509);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(77, 15);
     this.label1.TabIndex = 18;
     this.label1.Text = "Job(s) name :";
     //
     // textBoxJobName
     //
     this.textBoxJobName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxJobName.Location = new System.Drawing.Point(28, 527);
     this.textBoxJobName.Name = "textBoxJobName";
     this.textBoxJobName.Size = new System.Drawing.Size(522, 23);
     this.textBoxJobName.TabIndex = 13;
     //
     // labelWarningJSON
     //
     this.labelWarningJSON.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.labelWarningJSON.ForeColor = System.Drawing.Color.Red;
     this.labelWarningJSON.Location = new System.Drawing.Point(151, 157);
     this.labelWarningJSON.Name = "labelWarningJSON";
     this.labelWarningJSON.Size = new System.Drawing.Size(554, 21);
     this.labelWarningJSON.TabIndex = 77;
     this.labelWarningJSON.Tag = "JSON Syntax error. {0}";
     this.labelWarningJSON.Text = "JSON Syntax error. {0}";
     this.labelWarningJSON.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.labelWarningJSON.Visible = false;
     //
     // moreinfopresetslink
     //
     this.moreinfopresetslink.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.moreinfopresetslink.AutoSize = true;
     this.moreinfopresetslink.Location = new System.Drawing.Point(547, 84);
     this.moreinfopresetslink.Name = "moreinfopresetslink";
     this.moreinfopresetslink.Size = new System.Drawing.Size(158, 15);
     this.moreinfopresetslink.TabIndex = 76;
     this.moreinfopresetslink.TabStop = true;
     this.moreinfopresetslink.Text = "More information on presets";
     this.moreinfopresetslink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.moreinfopresetslink_LinkClicked);
     //
     // richTextBoxDesc
     //
     this.richTextBoxDesc.AcceptsTab = true;
     this.richTextBoxDesc.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.richTextBoxDesc.Location = new System.Drawing.Point(318, 29);
     this.richTextBoxDesc.Name = "richTextBoxDesc";
     this.richTextBoxDesc.ReadOnly = true;
     this.richTextBoxDesc.Size = new System.Drawing.Size(387, 52);
     this.richTextBoxDesc.TabIndex = 75;
     this.richTextBoxDesc.Text = "";
     //
     // label4KWarning
     //
     this.label4KWarning.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label4KWarning.ForeColor = System.Drawing.Color.Red;
     this.label4KWarning.Location = new System.Drawing.Point(318, 100);
     this.label4KWarning.Name = "label4KWarning";
     this.label4KWarning.Size = new System.Drawing.Size(387, 23);
     this.label4KWarning.TabIndex = 73;
     this.label4KWarning.Tag = "Warning : you should use a Premium Encoding RU for 4K";
     this.label4KWarning.Text = "Warning : you should use a Premium Encoding RU for 4K";
     this.label4KWarning.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(10, 10);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(187, 15);
     this.label4.TabIndex = 44;
     this.label4.Text = "Select a preset or load a JSON file :";
     //
     // listboxPresets
     //
     this.listboxPresets.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.listboxPresets.FormattingEnabled = true;
     this.listboxPresets.ItemHeight = 15;
     this.listboxPresets.Location = new System.Drawing.Point(14, 29);
     this.listboxPresets.Name = "listboxPresets";
     this.listboxPresets.Size = new System.Drawing.Size(285, 109);
     this.listboxPresets.TabIndex = 43;
     this.listboxPresets.SelectedIndexChanged += new System.EventHandler(this.listboxPresets_SelectedIndexChanged);
     //
     // buttonSaveXML
     //
     this.buttonSaveXML.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonSaveXML.Location = new System.Drawing.Point(548, 127);
     this.buttonSaveXML.Name = "buttonSaveXML";
     this.buttonSaveXML.Size = new System.Drawing.Size(157, 27);
     this.buttonSaveXML.TabIndex = 42;
     this.buttonSaveXML.Text = "Save edited JSON...";
     this.buttonSaveXML.UseVisualStyleBackColor = true;
     this.buttonSaveXML.Click += new System.EventHandler(this.buttonSaveXML_Click);
     //
     // buttonLoadXML
     //
     this.buttonLoadXML.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonLoadXML.Location = new System.Drawing.Point(385, 127);
     this.buttonLoadXML.Name = "buttonLoadXML";
     this.buttonLoadXML.Size = new System.Drawing.Size(157, 27);
     this.buttonLoadXML.TabIndex = 41;
     this.buttonLoadXML.Text = "Load a preset JSON file...";
     this.buttonLoadXML.UseVisualStyleBackColor = true;
     this.buttonLoadXML.Click += new System.EventHandler(this.buttonLoadJSON_Click);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(10, 160);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(135, 15);
     this.label2.TabIndex = 38;
     this.label2.Text = "JSON or XML (editable) :";
     //
     // textBoxConfiguration
     //
     this.textBoxConfiguration.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxConfiguration.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBoxConfiguration.Location = new System.Drawing.Point(14, 179);
     this.textBoxConfiguration.Multiline = true;
     this.textBoxConfiguration.Name = "textBoxConfiguration";
     this.textBoxConfiguration.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.textBoxConfiguration.Size = new System.Drawing.Size(691, 179);
     this.textBoxConfiguration.TabIndex = 27;
     this.textBoxConfiguration.TextChanged += new System.EventHandler(this.textBoxConfiguration_TextChanged);
     //
     // comboBoxProcessor
     //
     this.comboBoxProcessor.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBoxProcessor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxProcessor.FormattingEnabled = true;
     this.comboBoxProcessor.Location = new System.Drawing.Point(23, 68);
     this.comboBoxProcessor.Name = "comboBoxProcessor";
     this.comboBoxProcessor.Size = new System.Drawing.Size(733, 23);
     this.comboBoxProcessor.TabIndex = 32;
     //
     // processorlabel
     //
     this.processorlabel.Location = new System.Drawing.Point(20, 51);
     this.processorlabel.Name = "processorlabel";
     this.processorlabel.Size = new System.Drawing.Size(73, 25);
     this.processorlabel.TabIndex = 31;
     this.processorlabel.Text = "Processor:";
     //
     // label34
     //
     this.label34.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label34.AutoSize = true;
     this.label34.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold);
     this.label34.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(46)))), ((int)(((byte)(128)))), ((int)(((byte)(171)))));
     this.label34.Location = new System.Drawing.Point(524, 13);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(232, 25);
     this.label34.TabIndex = 63;
     this.label34.Text = "Media Encoder Standard";
     this.label34.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // buttonCancel
     //
     this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.buttonCancel.Location = new System.Drawing.Point(656, 15);
     this.buttonCancel.Name = "buttonCancel";
     this.buttonCancel.Size = new System.Drawing.Size(115, 27);
     this.buttonCancel.TabIndex = 4;
     this.buttonCancel.Text = "Cancel";
     this.buttonCancel.UseVisualStyleBackColor = true;
     //
     // buttonOk
     //
     this.buttonOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonOk.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.buttonOk.Image = global::AMSExplorer.Bitmaps.encoding;
     this.buttonOk.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.buttonOk.Location = new System.Drawing.Point(487, 15);
     this.buttonOk.Name = "buttonOk";
     this.buttonOk.Size = new System.Drawing.Size(163, 27);
     this.buttonOk.TabIndex = 5;
     this.buttonOk.Text = "Launch encoding";
     this.buttonOk.UseVisualStyleBackColor = true;
     //
     // panel1
     //
     this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.panel1.BackColor = System.Drawing.SystemColors.Control;
     this.panel1.Controls.Add(this.buttonCancel);
     this.panel1.Controls.Add(this.buttonOk);
     this.panel1.Location = new System.Drawing.Point(1, 606);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(783, 55);
     this.panel1.TabIndex = 66;
     //
     // openFileDialogPreset
     //
     this.openFileDialogPreset.DefaultExt = "xml";
     this.openFileDialogPreset.Filter = "Preset files|*.json|All files|*.*";
     //
     // saveFileDialogPreset
     //
     this.saveFileDialogPreset.DefaultExt = "xml";
     this.saveFileDialogPreset.Filter = "Preset file|*.json|All files|*.*";
     //
     // moreinfoame
     //
     this.moreinfoame.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.moreinfoame.AutoSize = true;
     this.moreinfoame.Location = new System.Drawing.Point(655, 38);
     this.moreinfoame.Name = "moreinfoame";
     this.moreinfoame.Size = new System.Drawing.Size(101, 15);
     this.moreinfoame.TabIndex = 73;
     this.moreinfoame.TabStop = true;
     this.moreinfoame.Text = "More information";
     this.moreinfoame.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.moreinfoame_LinkClicked);
     //
     // tabControl1
     //
     this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.tabControl1.Controls.Add(this.Preset);
     this.tabControl1.Controls.Add(this.Advanced);
     this.tabControl1.Location = new System.Drawing.Point(24, 111);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(732, 389);
     this.tabControl1.TabIndex = 74;
     //
     // Preset
     //
     this.Preset.Controls.Add(this.labelWarningJSON);
     this.Preset.Controls.Add(this.label4);
     this.Preset.Controls.Add(this.moreinfopresetslink);
     this.Preset.Controls.Add(this.textBoxConfiguration);
     this.Preset.Controls.Add(this.richTextBoxDesc);
     this.Preset.Controls.Add(this.label2);
     this.Preset.Controls.Add(this.label4KWarning);
     this.Preset.Controls.Add(this.buttonLoadXML);
     this.Preset.Controls.Add(this.buttonSaveXML);
     this.Preset.Controls.Add(this.listboxPresets);
     this.Preset.Location = new System.Drawing.Point(4, 24);
     this.Preset.Name = "Preset";
     this.Preset.Padding = new System.Windows.Forms.Padding(3);
     this.Preset.Size = new System.Drawing.Size(724, 361);
     this.Preset.TabIndex = 0;
     this.Preset.Text = "Preset";
     this.Preset.UseVisualStyleBackColor = true;
     //
     // Advanced
     //
     this.Advanced.Controls.Add(this.checkBoxAddAutomatic);
     this.Advanced.Controls.Add(this.groupBoxTrim);
     this.Advanced.Location = new System.Drawing.Point(4, 24);
     this.Advanced.Name = "Advanced";
     this.Advanced.Padding = new System.Windows.Forms.Padding(3);
     this.Advanced.Size = new System.Drawing.Size(724, 361);
     this.Advanced.TabIndex = 1;
     this.Advanced.Text = "Advanced";
     this.Advanced.UseVisualStyleBackColor = true;
     //
     // checkBoxAddAutomatic
     //
     this.checkBoxAddAutomatic.AutoSize = true;
     this.checkBoxAddAutomatic.Checked = true;
     this.checkBoxAddAutomatic.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBoxAddAutomatic.Location = new System.Drawing.Point(16, 13);
     this.checkBoxAddAutomatic.Name = "checkBoxAddAutomatic";
     this.checkBoxAddAutomatic.Size = new System.Drawing.Size(266, 19);
     this.checkBoxAddAutomatic.TabIndex = 4;
     this.checkBoxAddAutomatic.Text = "Automatically update the JSON configuration";
     this.checkBoxAddAutomatic.UseVisualStyleBackColor = true;
     this.checkBoxAddAutomatic.CheckedChanged += new System.EventHandler(this.checkBoxAddAutomatic_CheckedChanged);
     //
     // groupBoxTrim
     //
     this.groupBoxTrim.Controls.Add(this.textBoxSourceDurationTime);
     this.groupBoxTrim.Controls.Add(this.label7);
     this.groupBoxTrim.Controls.Add(this.timeControlEndTime);
     this.groupBoxTrim.Controls.Add(this.timeControlStartTime);
     this.groupBoxTrim.Controls.Add(this.checkBoxSourceTrimming);
     this.groupBoxTrim.Location = new System.Drawing.Point(16, 38);
     this.groupBoxTrim.Name = "groupBoxTrim";
     this.groupBoxTrim.Size = new System.Drawing.Size(672, 169);
     this.groupBoxTrim.TabIndex = 3;
     this.groupBoxTrim.TabStop = false;
     //
     // textBoxSourceDurationTime
     //
     this.textBoxSourceDurationTime.Enabled = false;
     this.textBoxSourceDurationTime.Location = new System.Drawing.Point(517, 123);
     this.textBoxSourceDurationTime.Name = "textBoxSourceDurationTime";
     this.textBoxSourceDurationTime.ReadOnly = true;
     this.textBoxSourceDurationTime.Size = new System.Drawing.Size(123, 23);
     this.textBoxSourceDurationTime.TabIndex = 88;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(514, 105);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(59, 15);
     this.label7.TabIndex = 82;
     this.label7.Text = "Duration :";
     //
     // timeControlEndTime
     //
     this.timeControlEndTime.BackColor = System.Drawing.SystemColors.Window;
     this.timeControlEndTime.DisplayTrackBar = false;
     this.timeControlEndTime.Enabled = false;
     this.timeControlEndTime.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.timeControlEndTime.Label1 = "";
     this.timeControlEndTime.Label2 = "End time";
     this.timeControlEndTime.Location = new System.Drawing.Point(44, 105);
     this.timeControlEndTime.Max = System.TimeSpan.Parse("10675199.02:48:05.4775807");
     this.timeControlEndTime.Min = System.TimeSpan.Parse("00:00:00");
     this.timeControlEndTime.Name = "timeControlEndTime";
     this.timeControlEndTime.ScaledFirstTimestampOffset = ((ulong)(0ul));
     this.timeControlEndTime.Size = new System.Drawing.Size(441, 58);
     this.timeControlEndTime.TabIndex = 7;
     this.timeControlEndTime.TimeScale = null;
     this.timeControlEndTime.TotalDuration = System.TimeSpan.Parse("1.00:00:00");
     this.timeControlEndTime.ValueChanged += new System.EventHandler(this.timeControlDuration_ValueChanged);
     //
     // timeControlStartTime
     //
     this.timeControlStartTime.BackColor = System.Drawing.SystemColors.Window;
     this.timeControlStartTime.DisplayTrackBar = false;
     this.timeControlStartTime.Enabled = false;
     this.timeControlStartTime.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.timeControlStartTime.Label1 = "";
     this.timeControlStartTime.Label2 = "Start time";
     this.timeControlStartTime.Location = new System.Drawing.Point(44, 47);
     this.timeControlStartTime.Max = System.TimeSpan.Parse("10675199.02:48:05.4775807");
     this.timeControlStartTime.Min = System.TimeSpan.Parse("00:00:00");
     this.timeControlStartTime.Name = "timeControlStartTime";
     this.timeControlStartTime.ScaledFirstTimestampOffset = ((ulong)(0ul));
     this.timeControlStartTime.Size = new System.Drawing.Size(441, 58);
     this.timeControlStartTime.TabIndex = 6;
     this.timeControlStartTime.TimeScale = null;
     this.timeControlStartTime.TotalDuration = System.TimeSpan.Parse("1.00:00:00");
     this.timeControlStartTime.ValueChanged += new System.EventHandler(this.timeControlStartTime_ValueChanged);
     //
     // checkBoxSourceTrimming
     //
     this.checkBoxSourceTrimming.AutoSize = true;
     this.checkBoxSourceTrimming.Location = new System.Drawing.Point(16, 22);
     this.checkBoxSourceTrimming.Name = "checkBoxSourceTrimming";
     this.checkBoxSourceTrimming.Size = new System.Drawing.Size(117, 19);
     this.checkBoxSourceTrimming.TabIndex = 5;
     this.checkBoxSourceTrimming.Text = "Source Trimming";
     this.checkBoxSourceTrimming.UseVisualStyleBackColor = true;
     this.checkBoxSourceTrimming.CheckedChanged += new System.EventHandler(this.checkBoxSourceTrimming_CheckedChanged);
     //
     // labelsummaryjob
     //
     this.labelsummaryjob.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.labelsummaryjob.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelsummaryjob.Location = new System.Drawing.Point(20, 21);
     this.labelsummaryjob.Name = "labelsummaryjob";
     this.labelsummaryjob.Size = new System.Drawing.Size(498, 20);
     this.labelsummaryjob.TabIndex = 76;
     this.labelsummaryjob.Text = "You will submit n jobs with n tasks";
     //
     // buttonJobOptions
     //
     this.buttonJobOptions.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonJobOptions.Location = new System.Drawing.Point(596, 527);
     this.buttonJobOptions.Name = "buttonJobOptions";
     this.buttonJobOptions.Size = new System.Drawing.Size(160, 27);
     this.buttonJobOptions.TabIndex = 75;
     this.buttonJobOptions.Text = "Job options...";
     this.buttonJobOptions.UseVisualStyleBackColor = true;
     //
     // EncodingAMEStandard
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.Window;
     this.CancelButton = this.buttonCancel;
     this.ClientSize = new System.Drawing.Size(784, 661);
     this.Controls.Add(this.labelsummaryjob);
     this.Controls.Add(this.buttonJobOptions);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.textboxoutputassetname);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.textBoxJobName);
     this.Controls.Add(this.comboBoxProcessor);
     this.Controls.Add(this.processorlabel);
     this.Controls.Add(this.label34);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.moreinfoame);
     this.Controls.Add(this.tabControl1);
     this.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "EncodingAMEStandard";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Media Encoder Standard";
     this.Load += new System.EventHandler(this.EncodingAMEStandard_Load);
     this.Shown += new System.EventHandler(this.EncodingAMEStandard_Shown);
     this.panel1.ResumeLayout(false);
     this.tabControl1.ResumeLayout(false);
     this.Preset.ResumeLayout(false);
     this.Preset.PerformLayout();
     this.Advanced.ResumeLayout(false);
     this.Advanced.PerformLayout();
     this.groupBoxTrim.ResumeLayout(false);
     this.groupBoxTrim.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EncodingAMEStandard));
     this.label3 = new System.Windows.Forms.Label();
     this.textboxoutputassetname = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.textBoxJobName = new System.Windows.Forms.TextBox();
     this.labelWarningJSON = new System.Windows.Forms.Label();
     this.moreinfopresetslink = new System.Windows.Forms.LinkLabel();
     this.richTextBoxDesc = new System.Windows.Forms.RichTextBox();
     this.label4KWarning = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.listboxPresets = new System.Windows.Forms.ListBox();
     this.buttonSaveXML = new System.Windows.Forms.Button();
     this.buttonLoadXML = new System.Windows.Forms.Button();
     this.label2 = new System.Windows.Forms.Label();
     this.textBoxConfiguration = new System.Windows.Forms.TextBox();
     this.label34 = new System.Windows.Forms.Label();
     this.buttonCancel = new System.Windows.Forms.Button();
     this.buttonOk = new System.Windows.Forms.Button();
     this.panel1 = new System.Windows.Forms.Panel();
     this.openFileDialogPreset = new System.Windows.Forms.OpenFileDialog();
     this.saveFileDialogPreset = new System.Windows.Forms.SaveFileDialog();
     this.moreinfoame = new System.Windows.Forms.LinkLabel();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.TabPagePreset = new System.Windows.Forms.TabPage();
     this.TabPageFeatures = new System.Windows.Forms.TabPage();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.labelOffset = new System.Windows.Forms.Label();
     this.textBoxOffset = new System.Windows.Forms.TextBox();
     this.timeControlEndTime = new AMSExplorer.TimeControl();
     this.checkBoxSourceTrimmingEnd = new System.Windows.Forms.CheckBox();
     this.label7 = new System.Windows.Forms.Label();
     this.timeControlStartTime = new AMSExplorer.TimeControl();
     this.textBoxSourceDurationTime = new System.Windows.Forms.TextBox();
     this.checkBoxSourceTrimmingStart = new System.Windows.Forms.CheckBox();
     this.linkLabelMoreInfoPreserveResRotation = new System.Windows.Forms.LinkLabel();
     this.checkBoxPreserveResAfterRotation = new System.Windows.Forms.CheckBox();
     this.checkBoxDisableAutoDeinterlacing = new System.Windows.Forms.CheckBox();
     this.checkBoxInsertSilentAudioTrack = new System.Windows.Forms.CheckBox();
     this.checkBoxAddAutomatic = new System.Windows.Forms.CheckBox();
     this.tabPageThPNG = new System.Windows.Forms.TabPage();
     this.linkLabelThumbnail2 = new System.Windows.Forms.LinkLabel();
     this.panelThumbnailsPNG = new System.Windows.Forms.Panel();
     this.checkBoxBestPNG = new System.Windows.Forms.CheckBox();
     this.radioButtonPercentPNG = new System.Windows.Forms.RadioButton();
     this.radioButtonPixelsPNG = new System.Windows.Forms.RadioButton();
     this.checkBoxPresResRotPNG = new System.Windows.Forms.CheckBox();
     this.numericUpDownThHeightPNG = new System.Windows.Forms.NumericUpDown();
     this.label6 = new System.Windows.Forms.Label();
     this.textBoxThFileNamePNG = new System.Windows.Forms.TextBox();
     this.numericUpDownThWidthPNG = new System.Windows.Forms.NumericUpDown();
     this.label12 = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.label20 = new System.Windows.Forms.Label();
     this.label21 = new System.Windows.Forms.Label();
     this.label22 = new System.Windows.Forms.Label();
     this.textBoxThTimeStartPNG = new System.Windows.Forms.TextBox();
     this.label24 = new System.Windows.Forms.Label();
     this.textBoxThTimeStepPNG = new System.Windows.Forms.TextBox();
     this.label26 = new System.Windows.Forms.Label();
     this.label27 = new System.Windows.Forms.Label();
     this.textBoxThTimeRangePNG = new System.Windows.Forms.TextBox();
     this.checkBoxGenThumbnailsPNG = new System.Windows.Forms.CheckBox();
     this.tabPageThJPG = new System.Windows.Forms.TabPage();
     this.linkLabelThumbnail1 = new System.Windows.Forms.LinkLabel();
     this.panelThumbnailsJPG = new System.Windows.Forms.Panel();
     this.checkBoxBestJPG = new System.Windows.Forms.CheckBox();
     this.radioButtonPercentJPG = new System.Windows.Forms.RadioButton();
     this.radioButtonPixelsJPG = new System.Windows.Forms.RadioButton();
     this.checkBoxPresResRotJPG = new System.Windows.Forms.CheckBox();
     this.numericUpDownThHeightJPG = new System.Windows.Forms.NumericUpDown();
     this.label18 = new System.Windows.Forms.Label();
     this.textBoxThFileNameJPG = new System.Windows.Forms.TextBox();
     this.numericUpDownThWidthJPG = new System.Windows.Forms.NumericUpDown();
     this.label8 = new System.Windows.Forms.Label();
     this.label17 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.textBoxThTimeStartJPG = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.numericUpDownThQuality = new System.Windows.Forms.NumericUpDown();
     this.textBoxThTimeStepJPG = new System.Windows.Forms.TextBox();
     this.label13 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.textBoxThTimeRangeJPG = new System.Windows.Forms.TextBox();
     this.checkBoxGenThumbnailsJPG = new System.Windows.Forms.CheckBox();
     this.tabPageThBMP = new System.Windows.Forms.TabPage();
     this.linkLabelThumbnail3 = new System.Windows.Forms.LinkLabel();
     this.panelThumbnailsBMP = new System.Windows.Forms.Panel();
     this.checkBoxBestBMP = new System.Windows.Forms.CheckBox();
     this.radioButtonPercentBMP = new System.Windows.Forms.RadioButton();
     this.radioButtonPixelsBMP = new System.Windows.Forms.RadioButton();
     this.checkBoxPresResRotBMP = new System.Windows.Forms.CheckBox();
     this.numericUpDownThHeightBMP = new System.Windows.Forms.NumericUpDown();
     this.label28 = new System.Windows.Forms.Label();
     this.textBoxThFileNameBMP = new System.Windows.Forms.TextBox();
     this.numericUpDownThWidthBMP = new System.Windows.Forms.NumericUpDown();
     this.label29 = new System.Windows.Forms.Label();
     this.label30 = new System.Windows.Forms.Label();
     this.label31 = new System.Windows.Forms.Label();
     this.label32 = new System.Windows.Forms.Label();
     this.label33 = new System.Windows.Forms.Label();
     this.textBoxThTimeStartBMP = new System.Windows.Forms.TextBox();
     this.label36 = new System.Windows.Forms.Label();
     this.textBoxThTimeStepBMP = new System.Windows.Forms.TextBox();
     this.label38 = new System.Windows.Forms.Label();
     this.label39 = new System.Windows.Forms.Label();
     this.textBoxThTimeRangeBMP = new System.Windows.Forms.TextBox();
     this.checkBoxGenThumbnailsBMP = new System.Windows.Forms.CheckBox();
     this.tabPageOverlay = new System.Windows.Forms.TabPage();
     this.linkLabelInfoOverlay = new System.Windows.Forms.LinkLabel();
     this.panelOverlay = new System.Windows.Forms.Panel();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.label37 = new System.Windows.Forms.Label();
     this.label35 = new System.Windows.Forms.Label();
     this.numericUpDownVOverlayRectY = new System.Windows.Forms.NumericUpDown();
     this.label43 = new System.Windows.Forms.Label();
     this.numericUpDownVOverlayRectX = new System.Windows.Forms.NumericUpDown();
     this.label44 = new System.Windows.Forms.Label();
     this.label40 = new System.Windows.Forms.Label();
     this.label41 = new System.Windows.Forms.Label();
     this.numericUpDownVOverlayRectH = new System.Windows.Forms.NumericUpDown();
     this.numericUpDownVOverlayRectW = new System.Windows.Forms.NumericUpDown();
     this.checkBoxOverlayResize = new System.Windows.Forms.CheckBox();
     this.button1 = new System.Windows.Forms.Button();
     this.label42 = new System.Windows.Forms.Label();
     this.textBoxOverlayFileName = new System.Windows.Forms.TextBox();
     this.groupBoxFade = new System.Windows.Forms.GroupBox();
     this.panelFade = new System.Windows.Forms.Panel();
     this.textBoxVOverlayFadeInStartTime = new System.Windows.Forms.TextBox();
     this.label54 = new System.Windows.Forms.Label();
     this.label25 = new System.Windows.Forms.Label();
     this.label48 = new System.Windows.Forms.Label();
     this.textBoxVOverlayFadeOutStartTime = new System.Windows.Forms.TextBox();
     this.textBoxVOverlayFadeOutDuration = new System.Windows.Forms.TextBox();
     this.label23 = new System.Windows.Forms.Label();
     this.textBoxVOverlayFadeInDuration = new System.Windows.Forms.TextBox();
     this.label46 = new System.Windows.Forms.Label();
     this.label50 = new System.Windows.Forms.Label();
     this.checkBoxOverlayFade = new System.Windows.Forms.CheckBox();
     this.label51 = new System.Windows.Forms.Label();
     this.checkBoxOverlayDuration = new System.Windows.Forms.CheckBox();
     this.numericUpDownOverlayLoop = new System.Windows.Forms.NumericUpDown();
     this.checkBoxOverlayLoop = new System.Windows.Forms.CheckBox();
     this.textBoxOverlayDuration = new System.Windows.Forms.TextBox();
     this.label49 = new System.Windows.Forms.Label();
     this.checkBoxOverlay = new System.Windows.Forms.CheckBox();
     this.labelsummaryjob = new System.Windows.Forms.Label();
     this.labelProcessorVersion = new System.Windows.Forms.Label();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.buttonJobOptions = new AMSExplorer.ButtonJobOptions();
     this.panelEDL = new System.Windows.Forms.Panel();
     this.buttonAddEDLEntry = new System.Windows.Forms.Button();
     this.buttonShowEDL = new AMSExplorer.ButtonEDL();
     this.checkBoxUseEDL = new System.Windows.Forms.CheckBox();
     this.panel1.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.TabPagePreset.SuspendLayout();
     this.TabPageFeatures.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.tabPageThPNG.SuspendLayout();
     this.panelThumbnailsPNG.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownThHeightPNG)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownThWidthPNG)).BeginInit();
     this.tabPageThJPG.SuspendLayout();
     this.panelThumbnailsJPG.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownThHeightJPG)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownThWidthJPG)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownThQuality)).BeginInit();
     this.tabPageThBMP.SuspendLayout();
     this.panelThumbnailsBMP.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownThHeightBMP)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownThWidthBMP)).BeginInit();
     this.tabPageOverlay.SuspendLayout();
     this.panelOverlay.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownVOverlayRectY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownVOverlayRectX)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownVOverlayRectH)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownVOverlayRectW)).BeginInit();
     this.groupBoxFade.SuspendLayout();
     this.panelFade.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownOverlayLoop)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.panelEDL.SuspendLayout();
     this.SuspendLayout();
     //
     // label3
     //
     this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(25, 550);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(126, 15);
     this.label3.TabIndex = 22;
     this.label3.Text = "Output asset(s) name :";
     //
     // textboxoutputassetname
     //
     this.textboxoutputassetname.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.textboxoutputassetname.Location = new System.Drawing.Point(27, 568);
     this.textboxoutputassetname.Name = "textboxoutputassetname";
     this.textboxoutputassetname.Size = new System.Drawing.Size(521, 23);
     this.textboxoutputassetname.TabIndex = 21;
     //
     // label1
     //
     this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(25, 502);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(77, 15);
     this.label1.TabIndex = 18;
     this.label1.Text = "Job(s) name :";
     //
     // textBoxJobName
     //
     this.textBoxJobName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxJobName.Location = new System.Drawing.Point(28, 520);
     this.textBoxJobName.Name = "textBoxJobName";
     this.textBoxJobName.Size = new System.Drawing.Size(522, 23);
     this.textBoxJobName.TabIndex = 13;
     //
     // labelWarningJSON
     //
     this.labelWarningJSON.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.labelWarningJSON.ForeColor = System.Drawing.Color.Red;
     this.labelWarningJSON.Location = new System.Drawing.Point(151, 157);
     this.labelWarningJSON.Name = "labelWarningJSON";
     this.labelWarningJSON.Size = new System.Drawing.Size(554, 21);
     this.labelWarningJSON.TabIndex = 77;
     this.labelWarningJSON.Tag = "JSON Syntax error. {0}";
     this.labelWarningJSON.Text = "JSON Syntax error. {0}";
     this.labelWarningJSON.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.labelWarningJSON.Visible = false;
     //
     // moreinfopresetslink
     //
     this.moreinfopresetslink.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.moreinfopresetslink.AutoSize = true;
     this.moreinfopresetslink.Location = new System.Drawing.Point(547, 84);
     this.moreinfopresetslink.Name = "moreinfopresetslink";
     this.moreinfopresetslink.Size = new System.Drawing.Size(158, 15);
     this.moreinfopresetslink.TabIndex = 76;
     this.moreinfopresetslink.TabStop = true;
     this.moreinfopresetslink.Text = "More information on presets";
     this.moreinfopresetslink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel_LinkClicked);
     //
     // richTextBoxDesc
     //
     this.richTextBoxDesc.AcceptsTab = true;
     this.richTextBoxDesc.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.richTextBoxDesc.Location = new System.Drawing.Point(318, 29);
     this.richTextBoxDesc.Name = "richTextBoxDesc";
     this.richTextBoxDesc.ReadOnly = true;
     this.richTextBoxDesc.Size = new System.Drawing.Size(387, 52);
     this.richTextBoxDesc.TabIndex = 75;
     this.richTextBoxDesc.Text = "";
     //
     // label4KWarning
     //
     this.label4KWarning.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label4KWarning.ForeColor = System.Drawing.Color.Red;
     this.label4KWarning.Location = new System.Drawing.Point(318, 100);
     this.label4KWarning.Name = "label4KWarning";
     this.label4KWarning.Size = new System.Drawing.Size(387, 23);
     this.label4KWarning.TabIndex = 73;
     this.label4KWarning.Tag = "Warning : you should use a S1 (Premium) Media RU for 4K";
     this.label4KWarning.Text = "Warning : you should use a S1 (Premium) Media RU for 4K";
     this.label4KWarning.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(10, 10);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(187, 15);
     this.label4.TabIndex = 44;
     this.label4.Text = "Select a preset or load a JSON file :";
     //
     // listboxPresets
     //
     this.listboxPresets.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.listboxPresets.FormattingEnabled = true;
     this.listboxPresets.ItemHeight = 15;
     this.listboxPresets.Location = new System.Drawing.Point(14, 29);
     this.listboxPresets.Name = "listboxPresets";
     this.listboxPresets.Size = new System.Drawing.Size(285, 109);
     this.listboxPresets.TabIndex = 43;
     this.listboxPresets.SelectedIndexChanged += new System.EventHandler(this.listboxPresets_SelectedIndexChanged);
     //
     // buttonSaveXML
     //
     this.buttonSaveXML.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonSaveXML.Location = new System.Drawing.Point(548, 127);
     this.buttonSaveXML.Name = "buttonSaveXML";
     this.buttonSaveXML.Size = new System.Drawing.Size(157, 27);
     this.buttonSaveXML.TabIndex = 42;
     this.buttonSaveXML.Text = "Save edited JSON...";
     this.buttonSaveXML.UseVisualStyleBackColor = true;
     this.buttonSaveXML.Click += new System.EventHandler(this.buttonSaveXML_Click);
     //
     // buttonLoadXML
     //
     this.buttonLoadXML.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonLoadXML.Location = new System.Drawing.Point(385, 127);
     this.buttonLoadXML.Name = "buttonLoadXML";
     this.buttonLoadXML.Size = new System.Drawing.Size(157, 27);
     this.buttonLoadXML.TabIndex = 41;
     this.buttonLoadXML.Text = "Load a preset JSON file...";
     this.buttonLoadXML.UseVisualStyleBackColor = true;
     this.buttonLoadXML.Click += new System.EventHandler(this.buttonLoadJSON_Click);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(10, 160);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(135, 15);
     this.label2.TabIndex = 38;
     this.label2.Text = "JSON or XML (editable) :";
     //
     // textBoxConfiguration
     //
     this.textBoxConfiguration.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxConfiguration.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBoxConfiguration.Location = new System.Drawing.Point(14, 179);
     this.textBoxConfiguration.Multiline = true;
     this.textBoxConfiguration.Name = "textBoxConfiguration";
     this.textBoxConfiguration.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.textBoxConfiguration.Size = new System.Drawing.Size(691, 138);
     this.textBoxConfiguration.TabIndex = 27;
     this.textBoxConfiguration.TextChanged += new System.EventHandler(this.textBoxConfiguration_TextChanged);
     //
     // label34
     //
     this.label34.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label34.AutoSize = true;
     this.label34.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold);
     this.label34.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(46)))), ((int)(((byte)(128)))), ((int)(((byte)(171)))));
     this.label34.Location = new System.Drawing.Point(524, 13);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(232, 25);
     this.label34.TabIndex = 63;
     this.label34.Text = "Media Encoder Standard";
     this.label34.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // buttonCancel
     //
     this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.buttonCancel.Location = new System.Drawing.Point(656, 15);
     this.buttonCancel.Name = "buttonCancel";
     this.buttonCancel.Size = new System.Drawing.Size(115, 27);
     this.buttonCancel.TabIndex = 4;
     this.buttonCancel.Text = "Cancel";
     this.buttonCancel.UseVisualStyleBackColor = true;
     //
     // buttonOk
     //
     this.buttonOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonOk.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.buttonOk.Image = global::AMSExplorer.Bitmaps.encoding;
     this.buttonOk.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.buttonOk.Location = new System.Drawing.Point(487, 15);
     this.buttonOk.Name = "buttonOk";
     this.buttonOk.Size = new System.Drawing.Size(163, 27);
     this.buttonOk.TabIndex = 5;
     this.buttonOk.Text = "Launch encoding";
     this.buttonOk.UseVisualStyleBackColor = true;
     //
     // panel1
     //
     this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.panel1.BackColor = System.Drawing.SystemColors.Control;
     this.panel1.Controls.Add(this.buttonCancel);
     this.panel1.Controls.Add(this.buttonOk);
     this.panel1.Location = new System.Drawing.Point(1, 606);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(783, 55);
     this.panel1.TabIndex = 66;
     //
     // openFileDialogPreset
     //
     this.openFileDialogPreset.DefaultExt = "xml";
     this.openFileDialogPreset.Filter = "Preset files|*.json|All files|*.*";
     //
     // saveFileDialogPreset
     //
     this.saveFileDialogPreset.DefaultExt = "xml";
     this.saveFileDialogPreset.Filter = "Preset file|*.json|All files|*.*";
     //
     // moreinfoame
     //
     this.moreinfoame.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.moreinfoame.AutoSize = true;
     this.moreinfoame.Location = new System.Drawing.Point(655, 68);
     this.moreinfoame.Name = "moreinfoame";
     this.moreinfoame.Size = new System.Drawing.Size(101, 15);
     this.moreinfoame.TabIndex = 73;
     this.moreinfoame.TabStop = true;
     this.moreinfoame.Text = "More information";
     this.moreinfoame.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.moreinfoame_LinkClicked);
     //
     // tabControl1
     //
     this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.tabControl1.Controls.Add(this.TabPagePreset);
     this.tabControl1.Controls.Add(this.TabPageFeatures);
     this.tabControl1.Controls.Add(this.tabPageThPNG);
     this.tabControl1.Controls.Add(this.tabPageThJPG);
     this.tabControl1.Controls.Add(this.tabPageThBMP);
     this.tabControl1.Controls.Add(this.tabPageOverlay);
     this.tabControl1.Location = new System.Drawing.Point(24, 97);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(732, 389);
     this.tabControl1.TabIndex = 74;
     //
     // TabPagePreset
     //
     this.TabPagePreset.Controls.Add(this.labelWarningJSON);
     this.TabPagePreset.Controls.Add(this.label4);
     this.TabPagePreset.Controls.Add(this.moreinfopresetslink);
     this.TabPagePreset.Controls.Add(this.textBoxConfiguration);
     this.TabPagePreset.Controls.Add(this.richTextBoxDesc);
     this.TabPagePreset.Controls.Add(this.label2);
     this.TabPagePreset.Controls.Add(this.label4KWarning);
     this.TabPagePreset.Controls.Add(this.buttonLoadXML);
     this.TabPagePreset.Controls.Add(this.buttonSaveXML);
     this.TabPagePreset.Controls.Add(this.listboxPresets);
     this.TabPagePreset.Location = new System.Drawing.Point(4, 24);
     this.TabPagePreset.Name = "TabPagePreset";
     this.TabPagePreset.Padding = new System.Windows.Forms.Padding(3);
     this.TabPagePreset.Size = new System.Drawing.Size(724, 361);
     this.TabPagePreset.TabIndex = 0;
     this.TabPagePreset.Text = "Preset";
     this.TabPagePreset.UseVisualStyleBackColor = true;
     //
     // TabPageFeatures
     //
     this.TabPageFeatures.Controls.Add(this.groupBox1);
     this.TabPageFeatures.Controls.Add(this.linkLabelMoreInfoPreserveResRotation);
     this.TabPageFeatures.Controls.Add(this.checkBoxPreserveResAfterRotation);
     this.TabPageFeatures.Controls.Add(this.checkBoxDisableAutoDeinterlacing);
     this.TabPageFeatures.Controls.Add(this.checkBoxInsertSilentAudioTrack);
     this.TabPageFeatures.Controls.Add(this.checkBoxAddAutomatic);
     this.TabPageFeatures.Location = new System.Drawing.Point(4, 24);
     this.TabPageFeatures.Name = "TabPageFeatures";
     this.TabPageFeatures.Padding = new System.Windows.Forms.Padding(3);
     this.TabPageFeatures.Size = new System.Drawing.Size(724, 361);
     this.TabPageFeatures.TabIndex = 1;
     this.TabPageFeatures.Text = "Features";
     this.TabPageFeatures.UseVisualStyleBackColor = true;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.panelEDL);
     this.groupBox1.Controls.Add(this.labelOffset);
     this.groupBox1.Controls.Add(this.textBoxOffset);
     this.groupBox1.Controls.Add(this.timeControlEndTime);
     this.groupBox1.Controls.Add(this.checkBoxSourceTrimmingEnd);
     this.groupBox1.Controls.Add(this.label7);
     this.groupBox1.Controls.Add(this.timeControlStartTime);
     this.groupBox1.Controls.Add(this.textBoxSourceDurationTime);
     this.groupBox1.Controls.Add(this.checkBoxSourceTrimmingStart);
     this.groupBox1.Location = new System.Drawing.Point(16, 17);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(691, 190);
     this.groupBox1.TabIndex = 94;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Source Trimming";
     //
     // labelOffset
     //
     this.labelOffset.AutoSize = true;
     this.labelOffset.Location = new System.Drawing.Point(506, 24);
     this.labelOffset.Name = "labelOffset";
     this.labelOffset.Size = new System.Drawing.Size(45, 15);
     this.labelOffset.TabIndex = 94;
     this.labelOffset.Text = "Offset :";
     this.labelOffset.Visible = false;
     //
     // textBoxOffset
     //
     this.textBoxOffset.Location = new System.Drawing.Point(509, 42);
     this.textBoxOffset.Name = "textBoxOffset";
     this.textBoxOffset.ReadOnly = true;
     this.textBoxOffset.Size = new System.Drawing.Size(158, 23);
     this.textBoxOffset.TabIndex = 95;
     this.textBoxOffset.Visible = false;
     //
     // timeControlEndTime
     //
     this.timeControlEndTime.BackColor = System.Drawing.SystemColors.Window;
     this.timeControlEndTime.DisplayTrackBar = false;
     this.timeControlEndTime.Enabled = false;
     this.timeControlEndTime.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.timeControlEndTime.Label1 = "";
     this.timeControlEndTime.Label2 = "End time";
     this.timeControlEndTime.Location = new System.Drawing.Point(33, 75);
     this.timeControlEndTime.Max = System.TimeSpan.Parse("10675199.02:48:05.4775807");
     this.timeControlEndTime.Min = System.TimeSpan.Parse("00:00:00");
     this.timeControlEndTime.Name = "timeControlEndTime";
     this.timeControlEndTime.ScaledFirstTimestampOffset = ((ulong)(0ul));
     this.timeControlEndTime.Size = new System.Drawing.Size(441, 58);
     this.timeControlEndTime.TabIndex = 7;
     this.timeControlEndTime.TimeScale = null;
     this.timeControlEndTime.TotalDuration = System.TimeSpan.Parse("1.00:00:00");
     this.timeControlEndTime.ValueChanged += new System.EventHandler(this.timeControlDuration_ValueChanged);
     //
     // checkBoxSourceTrimmingEnd
     //
     this.checkBoxSourceTrimmingEnd.AutoSize = true;
     this.checkBoxSourceTrimmingEnd.Location = new System.Drawing.Point(12, 97);
     this.checkBoxSourceTrimmingEnd.Name = "checkBoxSourceTrimmingEnd";
     this.checkBoxSourceTrimmingEnd.Size = new System.Drawing.Size(15, 14);
     this.checkBoxSourceTrimmingEnd.TabIndex = 93;
     this.checkBoxSourceTrimmingEnd.UseVisualStyleBackColor = true;
     this.checkBoxSourceTrimmingEnd.CheckedChanged += new System.EventHandler(this.checkBoxSourceTrimmingEnd_CheckedChanged);
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(506, 75);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(59, 15);
     this.label7.TabIndex = 82;
     this.label7.Text = "Duration :";
     //
     // timeControlStartTime
     //
     this.timeControlStartTime.BackColor = System.Drawing.SystemColors.Window;
     this.timeControlStartTime.DisplayTrackBar = false;
     this.timeControlStartTime.Enabled = false;
     this.timeControlStartTime.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.timeControlStartTime.Label1 = "";
     this.timeControlStartTime.Label2 = "Start time";
     this.timeControlStartTime.Location = new System.Drawing.Point(33, 21);
     this.timeControlStartTime.Max = System.TimeSpan.Parse("10675199.02:48:05.4775807");
     this.timeControlStartTime.Min = System.TimeSpan.Parse("00:00:00");
     this.timeControlStartTime.Name = "timeControlStartTime";
     this.timeControlStartTime.ScaledFirstTimestampOffset = ((ulong)(0ul));
     this.timeControlStartTime.Size = new System.Drawing.Size(441, 58);
     this.timeControlStartTime.TabIndex = 6;
     this.timeControlStartTime.TimeScale = null;
     this.timeControlStartTime.TotalDuration = System.TimeSpan.Parse("1.00:00:00");
     this.timeControlStartTime.ValueChanged += new System.EventHandler(this.timeControlStartTime_ValueChanged);
     //
     // textBoxSourceDurationTime
     //
     this.textBoxSourceDurationTime.Enabled = false;
     this.textBoxSourceDurationTime.Location = new System.Drawing.Point(509, 93);
     this.textBoxSourceDurationTime.Name = "textBoxSourceDurationTime";
     this.textBoxSourceDurationTime.ReadOnly = true;
     this.textBoxSourceDurationTime.Size = new System.Drawing.Size(158, 23);
     this.textBoxSourceDurationTime.TabIndex = 88;
     //
     // checkBoxSourceTrimmingStart
     //
     this.checkBoxSourceTrimmingStart.AutoSize = true;
     this.checkBoxSourceTrimmingStart.Location = new System.Drawing.Point(12, 42);
     this.checkBoxSourceTrimmingStart.Name = "checkBoxSourceTrimmingStart";
     this.checkBoxSourceTrimmingStart.Size = new System.Drawing.Size(15, 14);
     this.checkBoxSourceTrimmingStart.TabIndex = 5;
     this.checkBoxSourceTrimmingStart.UseVisualStyleBackColor = true;
     this.checkBoxSourceTrimmingStart.CheckedChanged += new System.EventHandler(this.checkBoxSourceTrimming_CheckedChanged);
     //
     // linkLabelMoreInfoPreserveResRotation
     //
     this.linkLabelMoreInfoPreserveResRotation.AutoSize = true;
     this.linkLabelMoreInfoPreserveResRotation.Location = new System.Drawing.Point(211, 277);
     this.linkLabelMoreInfoPreserveResRotation.Name = "linkLabelMoreInfoPreserveResRotation";
     this.linkLabelMoreInfoPreserveResRotation.Size = new System.Drawing.Size(109, 15);
     this.linkLabelMoreInfoPreserveResRotation.TabIndex = 78;
     this.linkLabelMoreInfoPreserveResRotation.TabStop = true;
     this.linkLabelMoreInfoPreserveResRotation.Text = "(more information)";
     this.linkLabelMoreInfoPreserveResRotation.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel_LinkClicked);
     //
     // checkBoxPreserveResAfterRotation
     //
     this.checkBoxPreserveResAfterRotation.AutoSize = true;
     this.checkBoxPreserveResAfterRotation.Location = new System.Drawing.Point(16, 276);
     this.checkBoxPreserveResAfterRotation.Name = "checkBoxPreserveResAfterRotation";
     this.checkBoxPreserveResAfterRotation.Size = new System.Drawing.Size(198, 19);
     this.checkBoxPreserveResAfterRotation.TabIndex = 91;
     this.checkBoxPreserveResAfterRotation.Text = "Preserve resolution after rotation";
     this.checkBoxPreserveResAfterRotation.UseVisualStyleBackColor = true;
     this.checkBoxPreserveResAfterRotation.CheckedChanged += new System.EventHandler(this.checkBoxPreserveResAfterRotation_CheckedChanged);
     //
     // checkBoxDisableAutoDeinterlacing
     //
     this.checkBoxDisableAutoDeinterlacing.AutoSize = true;
     this.checkBoxDisableAutoDeinterlacing.Location = new System.Drawing.Point(16, 251);
     this.checkBoxDisableAutoDeinterlacing.Name = "checkBoxDisableAutoDeinterlacing";
     this.checkBoxDisableAutoDeinterlacing.Size = new System.Drawing.Size(168, 19);
     this.checkBoxDisableAutoDeinterlacing.TabIndex = 90;
     this.checkBoxDisableAutoDeinterlacing.Text = "Disable auto de-interlacing";
     this.checkBoxDisableAutoDeinterlacing.UseVisualStyleBackColor = true;
     this.checkBoxDisableAutoDeinterlacing.CheckedChanged += new System.EventHandler(this.checkBoxDisableAutoDeinterlacing_CheckedChanged);
     //
     // checkBoxInsertSilentAudioTrack
     //
     this.checkBoxInsertSilentAudioTrack.AutoSize = true;
     this.checkBoxInsertSilentAudioTrack.Location = new System.Drawing.Point(16, 226);
     this.checkBoxInsertSilentAudioTrack.Name = "checkBoxInsertSilentAudioTrack";
     this.checkBoxInsertSilentAudioTrack.Size = new System.Drawing.Size(291, 19);
     this.checkBoxInsertSilentAudioTrack.TabIndex = 89;
     this.checkBoxInsertSilentAudioTrack.Text = "Insert a silent audio track when input has no audio";
     this.checkBoxInsertSilentAudioTrack.UseVisualStyleBackColor = true;
     this.checkBoxInsertSilentAudioTrack.CheckedChanged += new System.EventHandler(this.checkBoxInsertSilentAudioTrack_CheckedChanged);
     //
     // checkBoxAddAutomatic
     //
     this.checkBoxAddAutomatic.AutoSize = true;
     this.checkBoxAddAutomatic.Checked = true;
     this.checkBoxAddAutomatic.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBoxAddAutomatic.Location = new System.Drawing.Point(16, 336);
     this.checkBoxAddAutomatic.Name = "checkBoxAddAutomatic";
     this.checkBoxAddAutomatic.Size = new System.Drawing.Size(459, 19);
     this.checkBoxAddAutomatic.TabIndex = 4;
     this.checkBoxAddAutomatic.Text = "Automatically update the JSON configuration for features, thumbnails and overlay";
     this.checkBoxAddAutomatic.UseVisualStyleBackColor = true;
     this.checkBoxAddAutomatic.CheckedChanged += new System.EventHandler(this.checkBoxAddAutomatic_CheckedChanged);
     //
     // tabPageThPNG
     //
     this.tabPageThPNG.Controls.Add(this.linkLabelThumbnail2);
     this.tabPageThPNG.Controls.Add(this.panelThumbnailsPNG);
     this.tabPageThPNG.Controls.Add(this.checkBoxGenThumbnailsPNG);
     this.tabPageThPNG.Location = new System.Drawing.Point(4, 24);
     this.tabPageThPNG.Name = "tabPageThPNG";
     this.tabPageThPNG.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageThPNG.Size = new System.Drawing.Size(724, 361);
     this.tabPageThPNG.TabIndex = 3;
     this.tabPageThPNG.Text = "Thumbnails (PNG)";
     this.tabPageThPNG.UseVisualStyleBackColor = true;
     //
     // linkLabelThumbnail2
     //
     this.linkLabelThumbnail2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.linkLabelThumbnail2.AutoSize = true;
     this.linkLabelThumbnail2.Location = new System.Drawing.Point(537, 18);
     this.linkLabelThumbnail2.Name = "linkLabelThumbnail2";
     this.linkLabelThumbnail2.Size = new System.Drawing.Size(181, 15);
     this.linkLabelThumbnail2.TabIndex = 115;
     this.linkLabelThumbnail2.TabStop = true;
     this.linkLabelThumbnail2.Text = "More information on thumbnails";
     this.linkLabelThumbnail2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel_LinkClicked);
     //
     // panelThumbnailsPNG
     //
     this.panelThumbnailsPNG.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.panelThumbnailsPNG.Controls.Add(this.checkBoxBestPNG);
     this.panelThumbnailsPNG.Controls.Add(this.radioButtonPercentPNG);
     this.panelThumbnailsPNG.Controls.Add(this.radioButtonPixelsPNG);
     this.panelThumbnailsPNG.Controls.Add(this.checkBoxPresResRotPNG);
     this.panelThumbnailsPNG.Controls.Add(this.numericUpDownThHeightPNG);
     this.panelThumbnailsPNG.Controls.Add(this.label6);
     this.panelThumbnailsPNG.Controls.Add(this.textBoxThFileNamePNG);
     this.panelThumbnailsPNG.Controls.Add(this.numericUpDownThWidthPNG);
     this.panelThumbnailsPNG.Controls.Add(this.label12);
     this.panelThumbnailsPNG.Controls.Add(this.label19);
     this.panelThumbnailsPNG.Controls.Add(this.label20);
     this.panelThumbnailsPNG.Controls.Add(this.label21);
     this.panelThumbnailsPNG.Controls.Add(this.label22);
     this.panelThumbnailsPNG.Controls.Add(this.textBoxThTimeStartPNG);
     this.panelThumbnailsPNG.Controls.Add(this.label24);
     this.panelThumbnailsPNG.Controls.Add(this.textBoxThTimeStepPNG);
     this.panelThumbnailsPNG.Controls.Add(this.label26);
     this.panelThumbnailsPNG.Controls.Add(this.label27);
     this.panelThumbnailsPNG.Controls.Add(this.textBoxThTimeRangePNG);
     this.panelThumbnailsPNG.Enabled = false;
     this.panelThumbnailsPNG.Location = new System.Drawing.Point(15, 43);
     this.panelThumbnailsPNG.Name = "panelThumbnailsPNG";
     this.panelThumbnailsPNG.Size = new System.Drawing.Size(645, 301);
     this.panelThumbnailsPNG.TabIndex = 114;
     //
     // checkBoxBestPNG
     //
     this.checkBoxBestPNG.AutoSize = true;
     this.checkBoxBestPNG.Location = new System.Drawing.Point(6, 62);
     this.checkBoxBestPNG.Name = "checkBoxBestPNG";
     this.checkBoxBestPNG.Size = new System.Drawing.Size(206, 19);
     this.checkBoxBestPNG.TabIndex = 119;
     this.checkBoxBestPNG.Text = "Best mode (first interesting frame)";
     this.checkBoxBestPNG.UseVisualStyleBackColor = true;
     this.checkBoxBestPNG.CheckedChanged += new System.EventHandler(this.checkBoxBestPNG_CheckedChanged);
     //
     // radioButtonPercentPNG
     //
     this.radioButtonPercentPNG.AutoSize = true;
     this.radioButtonPercentPNG.Location = new System.Drawing.Point(257, 26);
     this.radioButtonPercentPNG.Name = "radioButtonPercentPNG";
     this.radioButtonPercentPNG.Size = new System.Drawing.Size(84, 19);
     this.radioButtonPercentPNG.TabIndex = 115;
     this.radioButtonPercentPNG.Text = "Percentage";
     this.radioButtonPercentPNG.UseVisualStyleBackColor = true;
     this.radioButtonPercentPNG.CheckedChanged += new System.EventHandler(this.radioButtonPercentPNG_CheckedChanged);
     //
     // radioButtonPixelsPNG
     //
     this.radioButtonPixelsPNG.AutoSize = true;
     this.radioButtonPixelsPNG.Checked = true;
     this.radioButtonPixelsPNG.Location = new System.Drawing.Point(197, 26);
     this.radioButtonPixelsPNG.Name = "radioButtonPixelsPNG";
     this.radioButtonPixelsPNG.Size = new System.Drawing.Size(54, 19);
     this.radioButtonPixelsPNG.TabIndex = 114;
     this.radioButtonPixelsPNG.TabStop = true;
     this.radioButtonPixelsPNG.Text = "Pixels";
     this.radioButtonPixelsPNG.UseVisualStyleBackColor = true;
     //
     // checkBoxPresResRotPNG
     //
     this.checkBoxPresResRotPNG.AutoSize = true;
     this.checkBoxPresResRotPNG.Location = new System.Drawing.Point(393, 26);
     this.checkBoxPresResRotPNG.Name = "checkBoxPresResRotPNG";
     this.checkBoxPresResRotPNG.Size = new System.Drawing.Size(198, 19);
     this.checkBoxPresResRotPNG.TabIndex = 113;
     this.checkBoxPresResRotPNG.Text = "Preserve resolution after rotation";
     this.checkBoxPresResRotPNG.UseVisualStyleBackColor = true;
     this.checkBoxPresResRotPNG.Visible = false;
     this.checkBoxPresResRotPNG.CheckedChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // numericUpDownThHeightPNG
     //
     this.numericUpDownThHeightPNG.Location = new System.Drawing.Point(105, 26);
     this.numericUpDownThHeightPNG.Maximum = new decimal(new int[] {
     10000,
     0,
     0,
     0});
     this.numericUpDownThHeightPNG.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.numericUpDownThHeightPNG.Name = "numericUpDownThHeightPNG";
     this.numericUpDownThHeightPNG.Size = new System.Drawing.Size(76, 23);
     this.numericUpDownThHeightPNG.TabIndex = 111;
     this.numericUpDownThHeightPNG.Value = new decimal(new int[] {
     360,
     0,
     0,
     0});
     this.numericUpDownThHeightPNG.ValueChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(102, 9);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(49, 15);
     this.label6.TabIndex = 110;
     this.label6.Text = "Height :";
     //
     // textBoxThFileNamePNG
     //
     this.textBoxThFileNamePNG.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxThFileNamePNG.Location = new System.Drawing.Point(6, 268);
     this.textBoxThFileNamePNG.Name = "textBoxThFileNamePNG";
     this.textBoxThFileNamePNG.Size = new System.Drawing.Size(566, 23);
     this.textBoxThFileNamePNG.TabIndex = 93;
     this.textBoxThFileNamePNG.Text = "{Basename}_{Index}{Extension}";
     this.textBoxThFileNamePNG.TextChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // numericUpDownThWidthPNG
     //
     this.numericUpDownThWidthPNG.Location = new System.Drawing.Point(8, 26);
     this.numericUpDownThWidthPNG.Maximum = new decimal(new int[] {
     10000,
     0,
     0,
     0});
     this.numericUpDownThWidthPNG.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.numericUpDownThWidthPNG.Name = "numericUpDownThWidthPNG";
     this.numericUpDownThWidthPNG.Size = new System.Drawing.Size(76, 23);
     this.numericUpDownThWidthPNG.TabIndex = 109;
     this.numericUpDownThWidthPNG.Value = new decimal(new int[] {
     640,
     0,
     0,
     0});
     this.numericUpDownThWidthPNG.ValueChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(5, 250);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(128, 15);
     this.label12.TabIndex = 94;
     this.label12.Text = "Thumbnail files name :";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(5, 9);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(45, 15);
     this.label19.TabIndex = 108;
     this.label19.Text = "Width :";
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.ForeColor = System.Drawing.SystemColors.WindowFrame;
     this.label20.Location = new System.Drawing.Point(154, 216);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(181, 15);
     this.label20.TabIndex = 107;
     this.label20.Text = "examples : 00:00:50 or 90% or 120";
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Location = new System.Drawing.Point(3, 85);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(67, 15);
     this.label21.TabIndex = 96;
     this.label21.Text = "Time Start :";
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.ForeColor = System.Drawing.SystemColors.WindowFrame;
     this.label22.Location = new System.Drawing.Point(154, 161);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(181, 15);
     this.label22.TabIndex = 106;
     this.label22.Text = "examples : 00:00:10 or 10% or 120";
     //
     // textBoxThTimeStartPNG
     //
     this.textBoxThTimeStartPNG.Location = new System.Drawing.Point(7, 104);
     this.textBoxThTimeStartPNG.Name = "textBoxThTimeStartPNG";
     this.textBoxThTimeStartPNG.Size = new System.Drawing.Size(140, 23);
     this.textBoxThTimeStartPNG.TabIndex = 97;
     this.textBoxThTimeStartPNG.TextChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Location = new System.Drawing.Point(4, 139);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(66, 15);
     this.label24.TabIndex = 98;
     this.label24.Text = "Time Step :";
     //
     // textBoxThTimeStepPNG
     //
     this.textBoxThTimeStepPNG.Location = new System.Drawing.Point(8, 158);
     this.textBoxThTimeStepPNG.Name = "textBoxThTimeStepPNG";
     this.textBoxThTimeStepPNG.Size = new System.Drawing.Size(140, 23);
     this.textBoxThTimeStepPNG.TabIndex = 99;
     this.textBoxThTimeStepPNG.TextChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(3, 195);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(76, 15);
     this.label26.TabIndex = 100;
     this.label26.Text = "Time Range :";
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.ForeColor = System.Drawing.SystemColors.WindowFrame;
     this.label27.Location = new System.Drawing.Point(153, 107);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(181, 15);
     this.label27.TabIndex = 102;
     this.label27.Text = "examples : 00:00:01 or 10% or 120";
     //
     // textBoxThTimeRangePNG
     //
     this.textBoxThTimeRangePNG.Location = new System.Drawing.Point(7, 213);
     this.textBoxThTimeRangePNG.Name = "textBoxThTimeRangePNG";
     this.textBoxThTimeRangePNG.Size = new System.Drawing.Size(140, 23);
     this.textBoxThTimeRangePNG.TabIndex = 101;
     this.textBoxThTimeRangePNG.TextChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // checkBoxGenThumbnailsPNG
     //
     this.checkBoxGenThumbnailsPNG.AutoSize = true;
     this.checkBoxGenThumbnailsPNG.Location = new System.Drawing.Point(15, 18);
     this.checkBoxGenThumbnailsPNG.Name = "checkBoxGenThumbnailsPNG";
     this.checkBoxGenThumbnailsPNG.Size = new System.Drawing.Size(166, 19);
     this.checkBoxGenThumbnailsPNG.TabIndex = 113;
     this.checkBoxGenThumbnailsPNG.Text = "Generate PNG Thumbnails";
     this.checkBoxGenThumbnailsPNG.UseVisualStyleBackColor = true;
     this.checkBoxGenThumbnailsPNG.CheckedChanged += new System.EventHandler(this.checkBoxGenThumbnailsPNG_CheckedChanged);
     //
     // tabPageThJPG
     //
     this.tabPageThJPG.Controls.Add(this.linkLabelThumbnail1);
     this.tabPageThJPG.Controls.Add(this.panelThumbnailsJPG);
     this.tabPageThJPG.Controls.Add(this.checkBoxGenThumbnailsJPG);
     this.tabPageThJPG.Location = new System.Drawing.Point(4, 24);
     this.tabPageThJPG.Name = "tabPageThJPG";
     this.tabPageThJPG.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageThJPG.Size = new System.Drawing.Size(724, 361);
     this.tabPageThJPG.TabIndex = 2;
     this.tabPageThJPG.Text = "Thumbnails (JPG)";
     this.tabPageThJPG.UseVisualStyleBackColor = true;
     //
     // linkLabelThumbnail1
     //
     this.linkLabelThumbnail1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.linkLabelThumbnail1.AutoSize = true;
     this.linkLabelThumbnail1.Location = new System.Drawing.Point(537, 18);
     this.linkLabelThumbnail1.Name = "linkLabelThumbnail1";
     this.linkLabelThumbnail1.Size = new System.Drawing.Size(181, 15);
     this.linkLabelThumbnail1.TabIndex = 113;
     this.linkLabelThumbnail1.TabStop = true;
     this.linkLabelThumbnail1.Text = "More information on thumbnails";
     this.linkLabelThumbnail1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel_LinkClicked);
     //
     // panelThumbnailsJPG
     //
     this.panelThumbnailsJPG.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.panelThumbnailsJPG.Controls.Add(this.checkBoxBestJPG);
     this.panelThumbnailsJPG.Controls.Add(this.radioButtonPercentJPG);
     this.panelThumbnailsJPG.Controls.Add(this.radioButtonPixelsJPG);
     this.panelThumbnailsJPG.Controls.Add(this.checkBoxPresResRotJPG);
     this.panelThumbnailsJPG.Controls.Add(this.numericUpDownThHeightJPG);
     this.panelThumbnailsJPG.Controls.Add(this.label18);
     this.panelThumbnailsJPG.Controls.Add(this.textBoxThFileNameJPG);
     this.panelThumbnailsJPG.Controls.Add(this.numericUpDownThWidthJPG);
     this.panelThumbnailsJPG.Controls.Add(this.label8);
     this.panelThumbnailsJPG.Controls.Add(this.label17);
     this.panelThumbnailsJPG.Controls.Add(this.label16);
     this.panelThumbnailsJPG.Controls.Add(this.label9);
     this.panelThumbnailsJPG.Controls.Add(this.label15);
     this.panelThumbnailsJPG.Controls.Add(this.textBoxThTimeStartJPG);
     this.panelThumbnailsJPG.Controls.Add(this.label14);
     this.panelThumbnailsJPG.Controls.Add(this.label5);
     this.panelThumbnailsJPG.Controls.Add(this.numericUpDownThQuality);
     this.panelThumbnailsJPG.Controls.Add(this.textBoxThTimeStepJPG);
     this.panelThumbnailsJPG.Controls.Add(this.label13);
     this.panelThumbnailsJPG.Controls.Add(this.label11);
     this.panelThumbnailsJPG.Controls.Add(this.label10);
     this.panelThumbnailsJPG.Controls.Add(this.textBoxThTimeRangeJPG);
     this.panelThumbnailsJPG.Enabled = false;
     this.panelThumbnailsJPG.Location = new System.Drawing.Point(15, 43);
     this.panelThumbnailsJPG.Name = "panelThumbnailsJPG";
     this.panelThumbnailsJPG.Size = new System.Drawing.Size(645, 301);
     this.panelThumbnailsJPG.TabIndex = 112;
     //
     // checkBoxBestJPG
     //
     this.checkBoxBestJPG.AutoSize = true;
     this.checkBoxBestJPG.Location = new System.Drawing.Point(6, 62);
     this.checkBoxBestJPG.Name = "checkBoxBestJPG";
     this.checkBoxBestJPG.Size = new System.Drawing.Size(206, 19);
     this.checkBoxBestJPG.TabIndex = 118;
     this.checkBoxBestJPG.Text = "Best mode (first interesting frame)";
     this.checkBoxBestJPG.UseVisualStyleBackColor = true;
     this.checkBoxBestJPG.CheckedChanged += new System.EventHandler(this.checkBoxBestJPG_CheckedChanged);
     //
     // radioButtonPercentJPG
     //
     this.radioButtonPercentJPG.AutoSize = true;
     this.radioButtonPercentJPG.Location = new System.Drawing.Point(257, 26);
     this.radioButtonPercentJPG.Name = "radioButtonPercentJPG";
     this.radioButtonPercentJPG.Size = new System.Drawing.Size(84, 19);
     this.radioButtonPercentJPG.TabIndex = 117;
     this.radioButtonPercentJPG.Text = "Percentage";
     this.radioButtonPercentJPG.UseVisualStyleBackColor = true;
     this.radioButtonPercentJPG.CheckedChanged += new System.EventHandler(this.radioButtonPercentJPG_CheckedChanged);
     //
     // radioButtonPixelsJPG
     //
     this.radioButtonPixelsJPG.AutoSize = true;
     this.radioButtonPixelsJPG.Checked = true;
     this.radioButtonPixelsJPG.Location = new System.Drawing.Point(197, 26);
     this.radioButtonPixelsJPG.Name = "radioButtonPixelsJPG";
     this.radioButtonPixelsJPG.Size = new System.Drawing.Size(54, 19);
     this.radioButtonPixelsJPG.TabIndex = 116;
     this.radioButtonPixelsJPG.TabStop = true;
     this.radioButtonPixelsJPG.Text = "Pixels";
     this.radioButtonPixelsJPG.UseVisualStyleBackColor = true;
     //
     // checkBoxPresResRotJPG
     //
     this.checkBoxPresResRotJPG.AutoSize = true;
     this.checkBoxPresResRotJPG.Location = new System.Drawing.Point(393, 26);
     this.checkBoxPresResRotJPG.Name = "checkBoxPresResRotJPG";
     this.checkBoxPresResRotJPG.Size = new System.Drawing.Size(198, 19);
     this.checkBoxPresResRotJPG.TabIndex = 112;
     this.checkBoxPresResRotJPG.Text = "Preserve resolution after rotation";
     this.checkBoxPresResRotJPG.UseVisualStyleBackColor = true;
     this.checkBoxPresResRotJPG.Visible = false;
     this.checkBoxPresResRotJPG.CheckedChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // numericUpDownThHeightJPG
     //
     this.numericUpDownThHeightJPG.Location = new System.Drawing.Point(105, 26);
     this.numericUpDownThHeightJPG.Maximum = new decimal(new int[] {
     10000,
     0,
     0,
     0});
     this.numericUpDownThHeightJPG.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.numericUpDownThHeightJPG.Name = "numericUpDownThHeightJPG";
     this.numericUpDownThHeightJPG.Size = new System.Drawing.Size(76, 23);
     this.numericUpDownThHeightJPG.TabIndex = 111;
     this.numericUpDownThHeightJPG.Value = new decimal(new int[] {
     360,
     0,
     0,
     0});
     this.numericUpDownThHeightJPG.ValueChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(102, 9);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(49, 15);
     this.label18.TabIndex = 110;
     this.label18.Text = "Height :";
     //
     // textBoxThFileNameJPG
     //
     this.textBoxThFileNameJPG.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxThFileNameJPG.Location = new System.Drawing.Point(6, 268);
     this.textBoxThFileNameJPG.Name = "textBoxThFileNameJPG";
     this.textBoxThFileNameJPG.Size = new System.Drawing.Size(566, 23);
     this.textBoxThFileNameJPG.TabIndex = 93;
     this.textBoxThFileNameJPG.Text = "{Basename}_{Index}{Extension}";
     this.textBoxThFileNameJPG.TextChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // numericUpDownThWidthJPG
     //
     this.numericUpDownThWidthJPG.Location = new System.Drawing.Point(8, 26);
     this.numericUpDownThWidthJPG.Maximum = new decimal(new int[] {
     10000,
     0,
     0,
     0});
     this.numericUpDownThWidthJPG.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.numericUpDownThWidthJPG.Name = "numericUpDownThWidthJPG";
     this.numericUpDownThWidthJPG.Size = new System.Drawing.Size(76, 23);
     this.numericUpDownThWidthJPG.TabIndex = 109;
     this.numericUpDownThWidthJPG.Value = new decimal(new int[] {
     640,
     0,
     0,
     0});
     this.numericUpDownThWidthJPG.ValueChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(5, 250);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(128, 15);
     this.label8.TabIndex = 94;
     this.label8.Text = "Thumbnail files name :";
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Location = new System.Drawing.Point(5, 9);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(45, 15);
     this.label17.TabIndex = 108;
     this.label17.Text = "Width :";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.ForeColor = System.Drawing.SystemColors.WindowFrame;
     this.label16.Location = new System.Drawing.Point(153, 216);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(181, 15);
     this.label16.TabIndex = 107;
     this.label16.Text = "examples : 00:00:50 or 90% or 120";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(3, 85);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(67, 15);
     this.label9.TabIndex = 96;
     this.label9.Text = "Time Start :";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.ForeColor = System.Drawing.SystemColors.WindowFrame;
     this.label15.Location = new System.Drawing.Point(154, 161);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(181, 15);
     this.label15.TabIndex = 106;
     this.label15.Text = "examples : 00:00:10 or 10% or 120";
     //
     // textBoxThTimeStartJPG
     //
     this.textBoxThTimeStartJPG.Location = new System.Drawing.Point(7, 104);
     this.textBoxThTimeStartJPG.Name = "textBoxThTimeStartJPG";
     this.textBoxThTimeStartJPG.Size = new System.Drawing.Size(140, 23);
     this.textBoxThTimeStartJPG.TabIndex = 97;
     this.textBoxThTimeStartJPG.TextChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.ForeColor = System.Drawing.SystemColors.WindowFrame;
     this.label14.Location = new System.Drawing.Point(466, 79);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(115, 15);
     this.label14.TabIndex = 105;
     this.label14.Text = "1 (worst) - 100 (best)";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(4, 139);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(66, 15);
     this.label5.TabIndex = 98;
     this.label5.Text = "Time Step :";
     //
     // numericUpDownThQuality
     //
     this.numericUpDownThQuality.Location = new System.Drawing.Point(393, 77);
     this.numericUpDownThQuality.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.numericUpDownThQuality.Name = "numericUpDownThQuality";
     this.numericUpDownThQuality.Size = new System.Drawing.Size(67, 23);
     this.numericUpDownThQuality.TabIndex = 104;
     this.numericUpDownThQuality.Value = new decimal(new int[] {
     90,
     0,
     0,
     0});
     this.numericUpDownThQuality.ValueChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // textBoxThTimeStepJPG
     //
     this.textBoxThTimeStepJPG.Location = new System.Drawing.Point(8, 158);
     this.textBoxThTimeStepJPG.Name = "textBoxThTimeStepJPG";
     this.textBoxThTimeStepJPG.Size = new System.Drawing.Size(140, 23);
     this.textBoxThTimeStepJPG.TabIndex = 99;
     this.textBoxThTimeStepJPG.TextChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(390, 59);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(51, 15);
     this.label13.TabIndex = 103;
     this.label13.Text = "Quality :";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(3, 195);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(76, 15);
     this.label11.TabIndex = 100;
     this.label11.Text = "Time Range :";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.ForeColor = System.Drawing.SystemColors.WindowFrame;
     this.label10.Location = new System.Drawing.Point(153, 107);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(181, 15);
     this.label10.TabIndex = 102;
     this.label10.Text = "examples : 00:00:01 or 10% or 120";
     //
     // textBoxThTimeRangeJPG
     //
     this.textBoxThTimeRangeJPG.Location = new System.Drawing.Point(7, 213);
     this.textBoxThTimeRangeJPG.Name = "textBoxThTimeRangeJPG";
     this.textBoxThTimeRangeJPG.Size = new System.Drawing.Size(140, 23);
     this.textBoxThTimeRangeJPG.TabIndex = 101;
     this.textBoxThTimeRangeJPG.TextChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // checkBoxGenThumbnailsJPG
     //
     this.checkBoxGenThumbnailsJPG.AutoSize = true;
     this.checkBoxGenThumbnailsJPG.Location = new System.Drawing.Point(15, 18);
     this.checkBoxGenThumbnailsJPG.Name = "checkBoxGenThumbnailsJPG";
     this.checkBoxGenThumbnailsJPG.Size = new System.Drawing.Size(161, 19);
     this.checkBoxGenThumbnailsJPG.TabIndex = 5;
     this.checkBoxGenThumbnailsJPG.Text = "Generate JPG Thumbnails";
     this.checkBoxGenThumbnailsJPG.UseVisualStyleBackColor = true;
     this.checkBoxGenThumbnailsJPG.CheckedChanged += new System.EventHandler(this.checkBoxGenThumbnails_CheckedChanged);
     //
     // tabPageThBMP
     //
     this.tabPageThBMP.Controls.Add(this.linkLabelThumbnail3);
     this.tabPageThBMP.Controls.Add(this.panelThumbnailsBMP);
     this.tabPageThBMP.Controls.Add(this.checkBoxGenThumbnailsBMP);
     this.tabPageThBMP.Location = new System.Drawing.Point(4, 24);
     this.tabPageThBMP.Name = "tabPageThBMP";
     this.tabPageThBMP.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageThBMP.Size = new System.Drawing.Size(724, 361);
     this.tabPageThBMP.TabIndex = 4;
     this.tabPageThBMP.Text = "Thumbnails (BMP)";
     this.tabPageThBMP.UseVisualStyleBackColor = true;
     //
     // linkLabelThumbnail3
     //
     this.linkLabelThumbnail3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.linkLabelThumbnail3.AutoSize = true;
     this.linkLabelThumbnail3.Location = new System.Drawing.Point(537, 18);
     this.linkLabelThumbnail3.Name = "linkLabelThumbnail3";
     this.linkLabelThumbnail3.Size = new System.Drawing.Size(181, 15);
     this.linkLabelThumbnail3.TabIndex = 115;
     this.linkLabelThumbnail3.TabStop = true;
     this.linkLabelThumbnail3.Text = "More information on thumbnails";
     this.linkLabelThumbnail3.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel_LinkClicked);
     //
     // panelThumbnailsBMP
     //
     this.panelThumbnailsBMP.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.panelThumbnailsBMP.Controls.Add(this.checkBoxBestBMP);
     this.panelThumbnailsBMP.Controls.Add(this.radioButtonPercentBMP);
     this.panelThumbnailsBMP.Controls.Add(this.radioButtonPixelsBMP);
     this.panelThumbnailsBMP.Controls.Add(this.checkBoxPresResRotBMP);
     this.panelThumbnailsBMP.Controls.Add(this.numericUpDownThHeightBMP);
     this.panelThumbnailsBMP.Controls.Add(this.label28);
     this.panelThumbnailsBMP.Controls.Add(this.textBoxThFileNameBMP);
     this.panelThumbnailsBMP.Controls.Add(this.numericUpDownThWidthBMP);
     this.panelThumbnailsBMP.Controls.Add(this.label29);
     this.panelThumbnailsBMP.Controls.Add(this.label30);
     this.panelThumbnailsBMP.Controls.Add(this.label31);
     this.panelThumbnailsBMP.Controls.Add(this.label32);
     this.panelThumbnailsBMP.Controls.Add(this.label33);
     this.panelThumbnailsBMP.Controls.Add(this.textBoxThTimeStartBMP);
     this.panelThumbnailsBMP.Controls.Add(this.label36);
     this.panelThumbnailsBMP.Controls.Add(this.textBoxThTimeStepBMP);
     this.panelThumbnailsBMP.Controls.Add(this.label38);
     this.panelThumbnailsBMP.Controls.Add(this.label39);
     this.panelThumbnailsBMP.Controls.Add(this.textBoxThTimeRangeBMP);
     this.panelThumbnailsBMP.Enabled = false;
     this.panelThumbnailsBMP.Location = new System.Drawing.Point(15, 43);
     this.panelThumbnailsBMP.Name = "panelThumbnailsBMP";
     this.panelThumbnailsBMP.Size = new System.Drawing.Size(645, 301);
     this.panelThumbnailsBMP.TabIndex = 114;
     //
     // checkBoxBestBMP
     //
     this.checkBoxBestBMP.AutoSize = true;
     this.checkBoxBestBMP.Location = new System.Drawing.Point(6, 62);
     this.checkBoxBestBMP.Name = "checkBoxBestBMP";
     this.checkBoxBestBMP.Size = new System.Drawing.Size(206, 19);
     this.checkBoxBestBMP.TabIndex = 119;
     this.checkBoxBestBMP.Text = "Best mode (first interesting frame)";
     this.checkBoxBestBMP.UseVisualStyleBackColor = true;
     this.checkBoxBestBMP.CheckedChanged += new System.EventHandler(this.checkBoxBestBMP_CheckedChanged);
     //
     // radioButtonPercentBMP
     //
     this.radioButtonPercentBMP.AutoSize = true;
     this.radioButtonPercentBMP.Location = new System.Drawing.Point(257, 26);
     this.radioButtonPercentBMP.Name = "radioButtonPercentBMP";
     this.radioButtonPercentBMP.Size = new System.Drawing.Size(84, 19);
     this.radioButtonPercentBMP.TabIndex = 117;
     this.radioButtonPercentBMP.Text = "Percentage";
     this.radioButtonPercentBMP.UseVisualStyleBackColor = true;
     this.radioButtonPercentBMP.CheckedChanged += new System.EventHandler(this.radioButtonPercentBMP_CheckedChanged);
     //
     // radioButtonPixelsBMP
     //
     this.radioButtonPixelsBMP.AutoSize = true;
     this.radioButtonPixelsBMP.Checked = true;
     this.radioButtonPixelsBMP.Location = new System.Drawing.Point(197, 26);
     this.radioButtonPixelsBMP.Name = "radioButtonPixelsBMP";
     this.radioButtonPixelsBMP.Size = new System.Drawing.Size(54, 19);
     this.radioButtonPixelsBMP.TabIndex = 116;
     this.radioButtonPixelsBMP.TabStop = true;
     this.radioButtonPixelsBMP.Text = "Pixels";
     this.radioButtonPixelsBMP.UseVisualStyleBackColor = true;
     //
     // checkBoxPresResRotBMP
     //
     this.checkBoxPresResRotBMP.AutoSize = true;
     this.checkBoxPresResRotBMP.Location = new System.Drawing.Point(393, 26);
     this.checkBoxPresResRotBMP.Name = "checkBoxPresResRotBMP";
     this.checkBoxPresResRotBMP.Size = new System.Drawing.Size(198, 19);
     this.checkBoxPresResRotBMP.TabIndex = 113;
     this.checkBoxPresResRotBMP.Text = "Preserve resolution after rotation";
     this.checkBoxPresResRotBMP.UseVisualStyleBackColor = true;
     this.checkBoxPresResRotBMP.Visible = false;
     this.checkBoxPresResRotBMP.CheckedChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // numericUpDownThHeightBMP
     //
     this.numericUpDownThHeightBMP.Location = new System.Drawing.Point(105, 26);
     this.numericUpDownThHeightBMP.Maximum = new decimal(new int[] {
     10000,
     0,
     0,
     0});
     this.numericUpDownThHeightBMP.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.numericUpDownThHeightBMP.Name = "numericUpDownThHeightBMP";
     this.numericUpDownThHeightBMP.Size = new System.Drawing.Size(76, 23);
     this.numericUpDownThHeightBMP.TabIndex = 111;
     this.numericUpDownThHeightBMP.Value = new decimal(new int[] {
     360,
     0,
     0,
     0});
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(102, 9);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(49, 15);
     this.label28.TabIndex = 110;
     this.label28.Text = "Height :";
     //
     // textBoxThFileNameBMP
     //
     this.textBoxThFileNameBMP.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxThFileNameBMP.Location = new System.Drawing.Point(6, 268);
     this.textBoxThFileNameBMP.Name = "textBoxThFileNameBMP";
     this.textBoxThFileNameBMP.Size = new System.Drawing.Size(566, 23);
     this.textBoxThFileNameBMP.TabIndex = 93;
     this.textBoxThFileNameBMP.Text = "{Basename}_{Index}{Extension}";
     this.textBoxThFileNameBMP.TextChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // numericUpDownThWidthBMP
     //
     this.numericUpDownThWidthBMP.Location = new System.Drawing.Point(8, 26);
     this.numericUpDownThWidthBMP.Maximum = new decimal(new int[] {
     10000,
     0,
     0,
     0});
     this.numericUpDownThWidthBMP.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.numericUpDownThWidthBMP.Name = "numericUpDownThWidthBMP";
     this.numericUpDownThWidthBMP.Size = new System.Drawing.Size(76, 23);
     this.numericUpDownThWidthBMP.TabIndex = 109;
     this.numericUpDownThWidthBMP.Value = new decimal(new int[] {
     640,
     0,
     0,
     0});
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(5, 250);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(128, 15);
     this.label29.TabIndex = 94;
     this.label29.Text = "Thumbnail files name :";
     //
     // label30
     //
     this.label30.AutoSize = true;
     this.label30.Location = new System.Drawing.Point(5, 9);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(45, 15);
     this.label30.TabIndex = 108;
     this.label30.Text = "Width :";
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.ForeColor = System.Drawing.SystemColors.WindowFrame;
     this.label31.Location = new System.Drawing.Point(154, 216);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(181, 15);
     this.label31.TabIndex = 107;
     this.label31.Text = "examples : 00:00:50 or 90% or 120";
     //
     // label32
     //
     this.label32.AutoSize = true;
     this.label32.Location = new System.Drawing.Point(3, 85);
     this.label32.Name = "label32";
     this.label32.Size = new System.Drawing.Size(67, 15);
     this.label32.TabIndex = 96;
     this.label32.Text = "Time Start :";
     //
     // label33
     //
     this.label33.AutoSize = true;
     this.label33.ForeColor = System.Drawing.SystemColors.WindowFrame;
     this.label33.Location = new System.Drawing.Point(154, 161);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(181, 15);
     this.label33.TabIndex = 106;
     this.label33.Text = "examples : 00:00:10 or 10% or 120";
     //
     // textBoxThTimeStartBMP
     //
     this.textBoxThTimeStartBMP.Location = new System.Drawing.Point(7, 104);
     this.textBoxThTimeStartBMP.Name = "textBoxThTimeStartBMP";
     this.textBoxThTimeStartBMP.Size = new System.Drawing.Size(140, 23);
     this.textBoxThTimeStartBMP.TabIndex = 97;
     this.textBoxThTimeStartBMP.TextChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // label36
     //
     this.label36.AutoSize = true;
     this.label36.Location = new System.Drawing.Point(4, 139);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(66, 15);
     this.label36.TabIndex = 98;
     this.label36.Text = "Time Step :";
     //
     // textBoxThTimeStepBMP
     //
     this.textBoxThTimeStepBMP.Location = new System.Drawing.Point(8, 158);
     this.textBoxThTimeStepBMP.Name = "textBoxThTimeStepBMP";
     this.textBoxThTimeStepBMP.Size = new System.Drawing.Size(140, 23);
     this.textBoxThTimeStepBMP.TabIndex = 99;
     this.textBoxThTimeStepBMP.TextChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // label38
     //
     this.label38.AutoSize = true;
     this.label38.Location = new System.Drawing.Point(3, 195);
     this.label38.Name = "label38";
     this.label38.Size = new System.Drawing.Size(76, 15);
     this.label38.TabIndex = 100;
     this.label38.Text = "Time Range :";
     //
     // label39
     //
     this.label39.AutoSize = true;
     this.label39.ForeColor = System.Drawing.SystemColors.WindowFrame;
     this.label39.Location = new System.Drawing.Point(153, 107);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(181, 15);
     this.label39.TabIndex = 102;
     this.label39.Text = "examples : 00:00:01 or 10% or 120";
     //
     // textBoxThTimeRangeBMP
     //
     this.textBoxThTimeRangeBMP.Location = new System.Drawing.Point(7, 213);
     this.textBoxThTimeRangeBMP.Name = "textBoxThTimeRangeBMP";
     this.textBoxThTimeRangeBMP.Size = new System.Drawing.Size(140, 23);
     this.textBoxThTimeRangeBMP.TabIndex = 101;
     this.textBoxThTimeRangeBMP.TextChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // checkBoxGenThumbnailsBMP
     //
     this.checkBoxGenThumbnailsBMP.AutoSize = true;
     this.checkBoxGenThumbnailsBMP.Location = new System.Drawing.Point(15, 18);
     this.checkBoxGenThumbnailsBMP.Name = "checkBoxGenThumbnailsBMP";
     this.checkBoxGenThumbnailsBMP.Size = new System.Drawing.Size(167, 19);
     this.checkBoxGenThumbnailsBMP.TabIndex = 113;
     this.checkBoxGenThumbnailsBMP.Text = "Generate BMP Thumbnails";
     this.checkBoxGenThumbnailsBMP.UseVisualStyleBackColor = true;
     this.checkBoxGenThumbnailsBMP.CheckedChanged += new System.EventHandler(this.checkBoxGenThumbnailsBMP_CheckedChanged);
     //
     // tabPageOverlay
     //
     this.tabPageOverlay.Controls.Add(this.linkLabelInfoOverlay);
     this.tabPageOverlay.Controls.Add(this.panelOverlay);
     this.tabPageOverlay.Controls.Add(this.checkBoxOverlay);
     this.tabPageOverlay.Location = new System.Drawing.Point(4, 24);
     this.tabPageOverlay.Name = "tabPageOverlay";
     this.tabPageOverlay.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageOverlay.Size = new System.Drawing.Size(724, 361);
     this.tabPageOverlay.TabIndex = 6;
     this.tabPageOverlay.Text = "Visual Overlay";
     this.tabPageOverlay.UseVisualStyleBackColor = true;
     //
     // linkLabelInfoOverlay
     //
     this.linkLabelInfoOverlay.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.linkLabelInfoOverlay.AutoSize = true;
     this.linkLabelInfoOverlay.Location = new System.Drawing.Point(559, 17);
     this.linkLabelInfoOverlay.Name = "linkLabelInfoOverlay";
     this.linkLabelInfoOverlay.Size = new System.Drawing.Size(159, 15);
     this.linkLabelInfoOverlay.TabIndex = 116;
     this.linkLabelInfoOverlay.TabStop = true;
     this.linkLabelInfoOverlay.Text = "More information on overlay";
     this.linkLabelInfoOverlay.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel_LinkClicked);
     //
     // panelOverlay
     //
     this.panelOverlay.Controls.Add(this.groupBox2);
     this.panelOverlay.Controls.Add(this.button1);
     this.panelOverlay.Controls.Add(this.label42);
     this.panelOverlay.Controls.Add(this.textBoxOverlayFileName);
     this.panelOverlay.Controls.Add(this.groupBoxFade);
     this.panelOverlay.Controls.Add(this.label51);
     this.panelOverlay.Controls.Add(this.checkBoxOverlayDuration);
     this.panelOverlay.Controls.Add(this.numericUpDownOverlayLoop);
     this.panelOverlay.Controls.Add(this.checkBoxOverlayLoop);
     this.panelOverlay.Controls.Add(this.textBoxOverlayDuration);
     this.panelOverlay.Controls.Add(this.label49);
     this.panelOverlay.Enabled = false;
     this.panelOverlay.Location = new System.Drawing.Point(16, 35);
     this.panelOverlay.Name = "panelOverlay";
     this.panelOverlay.Size = new System.Drawing.Size(712, 323);
     this.panelOverlay.TabIndex = 115;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.label37);
     this.groupBox2.Controls.Add(this.label35);
     this.groupBox2.Controls.Add(this.numericUpDownVOverlayRectY);
     this.groupBox2.Controls.Add(this.label43);
     this.groupBox2.Controls.Add(this.numericUpDownVOverlayRectX);
     this.groupBox2.Controls.Add(this.label44);
     this.groupBox2.Controls.Add(this.label40);
     this.groupBox2.Controls.Add(this.label41);
     this.groupBox2.Controls.Add(this.numericUpDownVOverlayRectH);
     this.groupBox2.Controls.Add(this.numericUpDownVOverlayRectW);
     this.groupBox2.Controls.Add(this.checkBoxOverlayResize);
     this.groupBox2.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox2.Location = new System.Drawing.Point(16, 48);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(661, 84);
     this.groupBox2.TabIndex = 104;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Overlay position";
     //
     // label37
     //
     this.label37.AutoSize = true;
     this.label37.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label37.ForeColor = System.Drawing.SystemColors.WindowFrame;
     this.label37.Location = new System.Drawing.Point(198, 49);
     this.label37.Name = "label37";
     this.label37.Size = new System.Drawing.Size(33, 13);
     this.label37.TabIndex = 106;
     this.label37.Text = "pixels";
     //
     // label35
     //
     this.label35.AutoSize = true;
     this.label35.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label35.ForeColor = System.Drawing.SystemColors.WindowFrame;
     this.label35.Location = new System.Drawing.Point(537, 46);
     this.label35.Name = "label35";
     this.label35.Size = new System.Drawing.Size(33, 13);
     this.label35.TabIndex = 105;
     this.label35.Text = "pixels";
     //
     // numericUpDownVOverlayRectY
     //
     this.numericUpDownVOverlayRectY.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.numericUpDownVOverlayRectY.Location = new System.Drawing.Point(112, 43);
     this.numericUpDownVOverlayRectY.Maximum = new decimal(new int[] {
     10000,
     0,
     0,
     0});
     this.numericUpDownVOverlayRectY.Name = "numericUpDownVOverlayRectY";
     this.numericUpDownVOverlayRectY.Size = new System.Drawing.Size(80, 23);
     this.numericUpDownVOverlayRectY.TabIndex = 46;
     this.numericUpDownVOverlayRectY.Value = new decimal(new int[] {
     10,
     0,
     0,
     0});
     this.numericUpDownVOverlayRectY.ValueChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // label43
     //
     this.label43.AutoSize = true;
     this.label43.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.label43.Location = new System.Drawing.Point(109, 25);
     this.label43.Name = "label43";
     this.label43.Size = new System.Drawing.Size(20, 15);
     this.label43.TabIndex = 45;
     this.label43.Text = "Y :";
     //
     // numericUpDownVOverlayRectX
     //
     this.numericUpDownVOverlayRectX.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.numericUpDownVOverlayRectX.Location = new System.Drawing.Point(13, 43);
     this.numericUpDownVOverlayRectX.Maximum = new decimal(new int[] {
     10000,
     0,
     0,
     0});
     this.numericUpDownVOverlayRectX.Name = "numericUpDownVOverlayRectX";
     this.numericUpDownVOverlayRectX.Size = new System.Drawing.Size(80, 23);
     this.numericUpDownVOverlayRectX.TabIndex = 44;
     this.numericUpDownVOverlayRectX.Value = new decimal(new int[] {
     10,
     0,
     0,
     0});
     this.numericUpDownVOverlayRectX.ValueChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // label44
     //
     this.label44.AutoSize = true;
     this.label44.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.label44.Location = new System.Drawing.Point(10, 25);
     this.label44.Name = "label44";
     this.label44.Size = new System.Drawing.Size(20, 15);
     this.label44.TabIndex = 43;
     this.label44.Text = "X :";
     //
     // label40
     //
     this.label40.AutoSize = true;
     this.label40.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.label40.Location = new System.Drawing.Point(349, 25);
     this.label40.Name = "label40";
     this.label40.Size = new System.Drawing.Size(45, 15);
     this.label40.TabIndex = 67;
     this.label40.Text = "Width :";
     //
     // label41
     //
     this.label41.AutoSize = true;
     this.label41.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.label41.Location = new System.Drawing.Point(448, 25);
     this.label41.Name = "label41";
     this.label41.Size = new System.Drawing.Size(49, 15);
     this.label41.TabIndex = 49;
     this.label41.Text = "Height :";
     this.label41.Click += new System.EventHandler(this.label41_Click);
     //
     // numericUpDownVOverlayRectH
     //
     this.numericUpDownVOverlayRectH.Enabled = false;
     this.numericUpDownVOverlayRectH.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.numericUpDownVOverlayRectH.Location = new System.Drawing.Point(451, 42);
     this.numericUpDownVOverlayRectH.Maximum = new decimal(new int[] {
     10000,
     0,
     0,
     0});
     this.numericUpDownVOverlayRectH.Name = "numericUpDownVOverlayRectH";
     this.numericUpDownVOverlayRectH.Size = new System.Drawing.Size(80, 23);
     this.numericUpDownVOverlayRectH.TabIndex = 50;
     this.numericUpDownVOverlayRectH.Value = new decimal(new int[] {
     100,
     0,
     0,
     0});
     this.numericUpDownVOverlayRectH.ValueChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // numericUpDownVOverlayRectW
     //
     this.numericUpDownVOverlayRectW.Enabled = false;
     this.numericUpDownVOverlayRectW.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.numericUpDownVOverlayRectW.Location = new System.Drawing.Point(352, 42);
     this.numericUpDownVOverlayRectW.Maximum = new decimal(new int[] {
     10000,
     0,
     0,
     0});
     this.numericUpDownVOverlayRectW.Name = "numericUpDownVOverlayRectW";
     this.numericUpDownVOverlayRectW.Size = new System.Drawing.Size(80, 23);
     this.numericUpDownVOverlayRectW.TabIndex = 48;
     this.numericUpDownVOverlayRectW.Value = new decimal(new int[] {
     100,
     0,
     0,
     0});
     this.numericUpDownVOverlayRectW.ValueChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // checkBoxOverlayResize
     //
     this.checkBoxOverlayResize.AutoSize = true;
     this.checkBoxOverlayResize.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.checkBoxOverlayResize.Location = new System.Drawing.Point(274, 43);
     this.checkBoxOverlayResize.Name = "checkBoxOverlayResize";
     this.checkBoxOverlayResize.Size = new System.Drawing.Size(72, 19);
     this.checkBoxOverlayResize.TabIndex = 65;
     this.checkBoxOverlayResize.Text = "Resize to";
     this.checkBoxOverlayResize.UseVisualStyleBackColor = true;
     this.checkBoxOverlayResize.CheckedChanged += new System.EventHandler(this.checkBoxOverlayResize_CheckedChanged);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(16, 9);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(169, 23);
     this.button1.TabIndex = 68;
     this.button1.Text = "Select image to overlay...";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // label42
     //
     this.label42.AutoSize = true;
     this.label42.ForeColor = System.Drawing.SystemColors.WindowFrame;
     this.label42.Location = new System.Drawing.Point(433, 5);
     this.label42.Name = "label42";
     this.label42.Size = new System.Drawing.Size(246, 45);
     this.label42.TabIndex = 103;
     this.label42.Text = "Alpha channel is supported (but not opacity).\r\nSource video and overlay files hav" +
     "e to be in\r\nthe same asset.\r\n";
     //
     // textBoxOverlayFileName
     //
     this.textBoxOverlayFileName.Location = new System.Drawing.Point(205, 9);
     this.textBoxOverlayFileName.Name = "textBoxOverlayFileName";
     this.textBoxOverlayFileName.ReadOnly = true;
     this.textBoxOverlayFileName.Size = new System.Drawing.Size(192, 23);
     this.textBoxOverlayFileName.TabIndex = 69;
     //
     // groupBoxFade
     //
     this.groupBoxFade.Controls.Add(this.panelFade);
     this.groupBoxFade.Controls.Add(this.checkBoxOverlayFade);
     this.groupBoxFade.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBoxFade.Location = new System.Drawing.Point(16, 141);
     this.groupBoxFade.Name = "groupBoxFade";
     this.groupBoxFade.Size = new System.Drawing.Size(661, 115);
     this.groupBoxFade.TabIndex = 66;
     this.groupBoxFade.TabStop = false;
     this.groupBoxFade.Text = "Fade In/Out";
     //
     // panelFade
     //
     this.panelFade.Controls.Add(this.textBoxVOverlayFadeInStartTime);
     this.panelFade.Controls.Add(this.label54);
     this.panelFade.Controls.Add(this.label25);
     this.panelFade.Controls.Add(this.label48);
     this.panelFade.Controls.Add(this.textBoxVOverlayFadeOutStartTime);
     this.panelFade.Controls.Add(this.textBoxVOverlayFadeOutDuration);
     this.panelFade.Controls.Add(this.label23);
     this.panelFade.Controls.Add(this.textBoxVOverlayFadeInDuration);
     this.panelFade.Controls.Add(this.label46);
     this.panelFade.Controls.Add(this.label50);
     this.panelFade.Enabled = false;
     this.panelFade.Location = new System.Drawing.Point(80, 11);
     this.panelFade.Name = "panelFade";
     this.panelFade.Size = new System.Drawing.Size(384, 100);
     this.panelFade.TabIndex = 67;
     //
     // textBoxVOverlayFadeInStartTime
     //
     this.textBoxVOverlayFadeInStartTime.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.textBoxVOverlayFadeInStartTime.Location = new System.Drawing.Point(88, 20);
     this.textBoxVOverlayFadeInStartTime.Name = "textBoxVOverlayFadeInStartTime";
     this.textBoxVOverlayFadeInStartTime.Size = new System.Drawing.Size(116, 23);
     this.textBoxVOverlayFadeInStartTime.TabIndex = 40;
     this.textBoxVOverlayFadeInStartTime.Text = "00:00:03";
     this.textBoxVOverlayFadeInStartTime.TextChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // label54
     //
     this.label54.AutoSize = true;
     this.label54.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.label54.Location = new System.Drawing.Point(242, 54);
     this.label54.Name = "label54";
     this.label54.Size = new System.Drawing.Size(59, 15);
     this.label54.TabIndex = 35;
     this.label54.Text = "Duration :";
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.label25.Location = new System.Drawing.Point(5, 75);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(61, 15);
     this.label25.TabIndex = 66;
     this.label25.Text = "Fade Out :";
     //
     // label48
     //
     this.label48.AutoSize = true;
     this.label48.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.label48.Location = new System.Drawing.Point(242, 2);
     this.label48.Name = "label48";
     this.label48.Size = new System.Drawing.Size(59, 15);
     this.label48.TabIndex = 35;
     this.label48.Text = "Duration :";
     //
     // textBoxVOverlayFadeOutStartTime
     //
     this.textBoxVOverlayFadeOutStartTime.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.textBoxVOverlayFadeOutStartTime.Location = new System.Drawing.Point(88, 72);
     this.textBoxVOverlayFadeOutStartTime.Name = "textBoxVOverlayFadeOutStartTime";
     this.textBoxVOverlayFadeOutStartTime.Size = new System.Drawing.Size(116, 23);
     this.textBoxVOverlayFadeOutStartTime.TabIndex = 42;
     this.textBoxVOverlayFadeOutStartTime.Text = "00:00:10";
     this.textBoxVOverlayFadeOutStartTime.TextChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // textBoxVOverlayFadeOutDuration
     //
     this.textBoxVOverlayFadeOutDuration.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.textBoxVOverlayFadeOutDuration.Location = new System.Drawing.Point(245, 72);
     this.textBoxVOverlayFadeOutDuration.Name = "textBoxVOverlayFadeOutDuration";
     this.textBoxVOverlayFadeOutDuration.Size = new System.Drawing.Size(116, 23);
     this.textBoxVOverlayFadeOutDuration.TabIndex = 38;
     this.textBoxVOverlayFadeOutDuration.Text = "00:00:02";
     this.textBoxVOverlayFadeOutDuration.TextChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.label23.Location = new System.Drawing.Point(5, 23);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(51, 15);
     this.label23.TabIndex = 65;
     this.label23.Text = "Fade In :";
     //
     // textBoxVOverlayFadeInDuration
     //
     this.textBoxVOverlayFadeInDuration.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.textBoxVOverlayFadeInDuration.Location = new System.Drawing.Point(245, 20);
     this.textBoxVOverlayFadeInDuration.Name = "textBoxVOverlayFadeInDuration";
     this.textBoxVOverlayFadeInDuration.Size = new System.Drawing.Size(116, 23);
     this.textBoxVOverlayFadeInDuration.TabIndex = 36;
     this.textBoxVOverlayFadeInDuration.Text = "00:00:02";
     this.textBoxVOverlayFadeInDuration.TextChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // label46
     //
     this.label46.AutoSize = true;
     this.label46.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.label46.Location = new System.Drawing.Point(85, 2);
     this.label46.Name = "label46";
     this.label46.Size = new System.Drawing.Size(64, 15);
     this.label46.TabIndex = 39;
     this.label46.Text = "Start time :";
     //
     // label50
     //
     this.label50.AutoSize = true;
     this.label50.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.label50.Location = new System.Drawing.Point(85, 54);
     this.label50.Name = "label50";
     this.label50.Size = new System.Drawing.Size(64, 15);
     this.label50.TabIndex = 39;
     this.label50.Text = "Start time :";
     //
     // checkBoxOverlayFade
     //
     this.checkBoxOverlayFade.AutoSize = true;
     this.checkBoxOverlayFade.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.checkBoxOverlayFade.Location = new System.Drawing.Point(13, 51);
     this.checkBoxOverlayFade.Name = "checkBoxOverlayFade";
     this.checkBoxOverlayFade.Size = new System.Drawing.Size(61, 19);
     this.checkBoxOverlayFade.TabIndex = 64;
     this.checkBoxOverlayFade.Text = "Enable";
     this.checkBoxOverlayFade.UseVisualStyleBackColor = true;
     this.checkBoxOverlayFade.CheckedChanged += new System.EventHandler(this.checkBoxOverlayFade_CheckedChanged);
     //
     // label51
     //
     this.label51.AutoSize = true;
     this.label51.Location = new System.Drawing.Point(249, 295);
     this.label51.Name = "label51";
     this.label51.Size = new System.Drawing.Size(36, 15);
     this.label51.TabIndex = 63;
     this.label51.Text = "times";
     //
     // checkBoxOverlayDuration
     //
     this.checkBoxOverlayDuration.AutoSize = true;
     this.checkBoxOverlayDuration.Location = new System.Drawing.Point(16, 264);
     this.checkBoxOverlayDuration.Name = "checkBoxOverlayDuration";
     this.checkBoxOverlayDuration.Size = new System.Drawing.Size(115, 19);
     this.checkBoxOverlayDuration.TabIndex = 58;
     this.checkBoxOverlayDuration.Text = "Limit duration to";
     this.checkBoxOverlayDuration.UseVisualStyleBackColor = true;
     this.checkBoxOverlayDuration.CheckedChanged += new System.EventHandler(this.checkBoxOverlayDuration_CheckedChanged);
     //
     // numericUpDownOverlayLoop
     //
     this.numericUpDownOverlayLoop.Enabled = false;
     this.numericUpDownOverlayLoop.Location = new System.Drawing.Point(163, 293);
     this.numericUpDownOverlayLoop.Maximum = new decimal(new int[] {
     10000,
     0,
     0,
     0});
     this.numericUpDownOverlayLoop.Name = "numericUpDownOverlayLoop";
     this.numericUpDownOverlayLoop.Size = new System.Drawing.Size(80, 23);
     this.numericUpDownOverlayLoop.TabIndex = 62;
     this.numericUpDownOverlayLoop.Value = new decimal(new int[] {
     10,
     0,
     0,
     0});
     this.numericUpDownOverlayLoop.ValueChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // checkBoxOverlayLoop
     //
     this.checkBoxOverlayLoop.AutoSize = true;
     this.checkBoxOverlayLoop.Location = new System.Drawing.Point(16, 294);
     this.checkBoxOverlayLoop.Name = "checkBoxOverlayLoop";
     this.checkBoxOverlayLoop.Size = new System.Drawing.Size(139, 19);
     this.checkBoxOverlayLoop.TabIndex = 61;
     this.checkBoxOverlayLoop.Text = "Loop the overlay (gif)";
     this.checkBoxOverlayLoop.UseVisualStyleBackColor = true;
     this.checkBoxOverlayLoop.CheckedChanged += new System.EventHandler(this.checkBoxOverlayLoop_CheckedChanged);
     //
     // textBoxOverlayDuration
     //
     this.textBoxOverlayDuration.Enabled = false;
     this.textBoxOverlayDuration.Location = new System.Drawing.Point(163, 262);
     this.textBoxOverlayDuration.Name = "textBoxOverlayDuration";
     this.textBoxOverlayDuration.Size = new System.Drawing.Size(116, 23);
     this.textBoxOverlayDuration.TabIndex = 59;
     this.textBoxOverlayDuration.Text = "00:00:10";
     this.textBoxOverlayDuration.TextChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // label49
     //
     this.label49.AutoSize = true;
     this.label49.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label49.ForeColor = System.Drawing.SystemColors.WindowFrame;
     this.label49.Location = new System.Drawing.Point(287, 266);
     this.label49.Name = "label49";
     this.label49.Size = new System.Drawing.Size(63, 13);
     this.label49.TabIndex = 60;
     this.label49.Text = "hh:mm:ss:fff";
     //
     // checkBoxOverlay
     //
     this.checkBoxOverlay.AutoSize = true;
     this.checkBoxOverlay.Location = new System.Drawing.Point(15, 18);
     this.checkBoxOverlay.Name = "checkBoxOverlay";
     this.checkBoxOverlay.Size = new System.Drawing.Size(198, 19);
     this.checkBoxOverlay.TabIndex = 114;
     this.checkBoxOverlay.Text = "Overlay an image onto the video";
     this.checkBoxOverlay.UseVisualStyleBackColor = true;
     this.checkBoxOverlay.CheckedChanged += new System.EventHandler(this.checkBoxOverlay_CheckedChanged);
     //
     // labelsummaryjob
     //
     this.labelsummaryjob.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.labelsummaryjob.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelsummaryjob.Location = new System.Drawing.Point(20, 49);
     this.labelsummaryjob.Name = "labelsummaryjob";
     this.labelsummaryjob.Size = new System.Drawing.Size(614, 41);
     this.labelsummaryjob.TabIndex = 76;
     this.labelsummaryjob.Text = "You will submit n jobs with n tasks";
     //
     // labelProcessorVersion
     //
     this.labelProcessorVersion.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelProcessorVersion.ForeColor = System.Drawing.SystemColors.WindowFrame;
     this.labelProcessorVersion.Location = new System.Drawing.Point(628, 38);
     this.labelProcessorVersion.Name = "labelProcessorVersion";
     this.labelProcessorVersion.Size = new System.Drawing.Size(124, 20);
     this.labelProcessorVersion.TabIndex = 77;
     this.labelProcessorVersion.Text = "Version {0}";
     this.labelProcessorVersion.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // buttonJobOptions
     //
     this.buttonJobOptions.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonJobOptions.Location = new System.Drawing.Point(596, 520);
     this.buttonJobOptions.Name = "buttonJobOptions";
     this.buttonJobOptions.Size = new System.Drawing.Size(160, 27);
     this.buttonJobOptions.TabIndex = 75;
     this.buttonJobOptions.Text = "Job options...";
     this.buttonJobOptions.UseVisualStyleBackColor = true;
     //
     // panelEDL
     //
     this.panelEDL.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.panelEDL.Controls.Add(this.buttonAddEDLEntry);
     this.panelEDL.Controls.Add(this.buttonShowEDL);
     this.panelEDL.Controls.Add(this.checkBoxUseEDL);
     this.panelEDL.Location = new System.Drawing.Point(9, 139);
     this.panelEDL.Name = "panelEDL";
     this.panelEDL.Size = new System.Drawing.Size(508, 34);
     this.panelEDL.TabIndex = 136;
     //
     // buttonAddEDLEntry
     //
     this.buttonAddEDLEntry.Enabled = false;
     this.buttonAddEDLEntry.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonAddEDLEntry.Location = new System.Drawing.Point(303, 3);
     this.buttonAddEDLEntry.Name = "buttonAddEDLEntry";
     this.buttonAddEDLEntry.Size = new System.Drawing.Size(196, 27);
     this.buttonAddEDLEntry.TabIndex = 137;
     this.buttonAddEDLEntry.Text = "Add Start/End times to EDL";
     this.buttonAddEDLEntry.UseVisualStyleBackColor = true;
     this.buttonAddEDLEntry.Click += new System.EventHandler(this.buttonAddEDLEntry_Click);
     //
     // buttonShowEDL
     //
     this.buttonShowEDL.Enabled = false;
     this.buttonShowEDL.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.buttonShowEDL.Location = new System.Drawing.Point(194, 3);
     this.buttonShowEDL.Name = "buttonShowEDL";
     this.buttonShowEDL.Size = new System.Drawing.Size(103, 27);
     this.buttonShowEDL.TabIndex = 138;
     this.buttonShowEDL.Text = "Show EDL...";
     this.buttonShowEDL.UseVisualStyleBackColor = true;
     //
     // checkBoxUseEDL
     //
     this.checkBoxUseEDL.AutoSize = true;
     this.checkBoxUseEDL.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.checkBoxUseEDL.Location = new System.Drawing.Point(3, 8);
     this.checkBoxUseEDL.Name = "checkBoxUseEDL";
     this.checkBoxUseEDL.Size = new System.Drawing.Size(185, 19);
     this.checkBoxUseEDL.TabIndex = 139;
     this.checkBoxUseEDL.Text = "Use Editing Decision List (EDL)";
     this.checkBoxUseEDL.UseVisualStyleBackColor = true;
     this.checkBoxUseEDL.CheckedChanged += new System.EventHandler(this.checkBoxUseEDL_CheckedChanged);
     //
     // EncodingAMEStandard
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.Window;
     this.CancelButton = this.buttonCancel;
     this.ClientSize = new System.Drawing.Size(784, 661);
     this.Controls.Add(this.labelProcessorVersion);
     this.Controls.Add(this.labelsummaryjob);
     this.Controls.Add(this.buttonJobOptions);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.textboxoutputassetname);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.textBoxJobName);
     this.Controls.Add(this.label34);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.moreinfoame);
     this.Controls.Add(this.tabControl1);
     this.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "EncodingAMEStandard";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Media Encoder Standard";
     this.Load += new System.EventHandler(this.EncodingAMEStandard_Load);
     this.Shown += new System.EventHandler(this.EncodingAMEStandard_Shown);
     this.panel1.ResumeLayout(false);
     this.tabControl1.ResumeLayout(false);
     this.TabPagePreset.ResumeLayout(false);
     this.TabPagePreset.PerformLayout();
     this.TabPageFeatures.ResumeLayout(false);
     this.TabPageFeatures.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.tabPageThPNG.ResumeLayout(false);
     this.tabPageThPNG.PerformLayout();
     this.panelThumbnailsPNG.ResumeLayout(false);
     this.panelThumbnailsPNG.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownThHeightPNG)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownThWidthPNG)).EndInit();
     this.tabPageThJPG.ResumeLayout(false);
     this.tabPageThJPG.PerformLayout();
     this.panelThumbnailsJPG.ResumeLayout(false);
     this.panelThumbnailsJPG.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownThHeightJPG)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownThWidthJPG)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownThQuality)).EndInit();
     this.tabPageThBMP.ResumeLayout(false);
     this.tabPageThBMP.PerformLayout();
     this.panelThumbnailsBMP.ResumeLayout(false);
     this.panelThumbnailsBMP.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownThHeightBMP)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownThWidthBMP)).EndInit();
     this.tabPageOverlay.ResumeLayout(false);
     this.tabPageOverlay.PerformLayout();
     this.panelOverlay.ResumeLayout(false);
     this.panelOverlay.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownVOverlayRectY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownVOverlayRectX)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownVOverlayRectH)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownVOverlayRectW)).EndInit();
     this.groupBoxFade.ResumeLayout(false);
     this.groupBoxFade.PerformLayout();
     this.panelFade.ResumeLayout(false);
     this.panelFade.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownOverlayLoop)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.panelEDL.ResumeLayout(false);
     this.panelEDL.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EncodingAMEStandard));
     this.label3 = new System.Windows.Forms.Label();
     this.textboxoutputassetname = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.textBoxJobName = new System.Windows.Forms.TextBox();
     this.labelWarningJSON = new System.Windows.Forms.Label();
     this.moreinfopresetslink = new System.Windows.Forms.LinkLabel();
     this.richTextBoxDesc = new System.Windows.Forms.RichTextBox();
     this.label4KWarning = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.listboxPresets = new System.Windows.Forms.ListBox();
     this.buttonSaveXML = new System.Windows.Forms.Button();
     this.buttonLoadXML = new System.Windows.Forms.Button();
     this.label2 = new System.Windows.Forms.Label();
     this.textBoxConfiguration = new System.Windows.Forms.TextBox();
     this.label34 = new System.Windows.Forms.Label();
     this.buttonCancel = new System.Windows.Forms.Button();
     this.buttonOk = new System.Windows.Forms.Button();
     this.panel1 = new System.Windows.Forms.Panel();
     this.openFileDialogPreset = new System.Windows.Forms.OpenFileDialog();
     this.saveFileDialogPreset = new System.Windows.Forms.SaveFileDialog();
     this.moreinfoame = new System.Windows.Forms.LinkLabel();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.TabPagePreset = new System.Windows.Forms.TabPage();
     this.TabPageFeatures = new System.Windows.Forms.TabPage();
     this.checkBoxInsertSilentAudioTrack = new System.Windows.Forms.CheckBox();
     this.textBoxSourceDurationTime = new System.Windows.Forms.TextBox();
     this.label7 = new System.Windows.Forms.Label();
     this.checkBoxAddAutomatic = new System.Windows.Forms.CheckBox();
     this.checkBoxSourceTrimming = new System.Windows.Forms.CheckBox();
     this.tabPageThJPG = new System.Windows.Forms.TabPage();
     this.linkLabelThumbnail1 = new System.Windows.Forms.LinkLabel();
     this.panelThumbnailsJPG = new System.Windows.Forms.Panel();
     this.numericUpDownThHeightJPG = new System.Windows.Forms.NumericUpDown();
     this.label18 = new System.Windows.Forms.Label();
     this.textBoxThFileNameJPG = new System.Windows.Forms.TextBox();
     this.numericUpDownThWidthJPG = new System.Windows.Forms.NumericUpDown();
     this.label8 = new System.Windows.Forms.Label();
     this.label17 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.textBoxThTimeStartJPG = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.numericUpDownThQuality = new System.Windows.Forms.NumericUpDown();
     this.textBoxThTimeStepJPG = new System.Windows.Forms.TextBox();
     this.label13 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.textBoxThTimeRangeJPG = new System.Windows.Forms.TextBox();
     this.checkBoxGenThumbnailsJPG = new System.Windows.Forms.CheckBox();
     this.tabPageThPNG = new System.Windows.Forms.TabPage();
     this.linkLabelThumbnail2 = new System.Windows.Forms.LinkLabel();
     this.panelThumbnailsPNG = new System.Windows.Forms.Panel();
     this.numericUpDownThHeightPNG = new System.Windows.Forms.NumericUpDown();
     this.label6 = new System.Windows.Forms.Label();
     this.textBoxThFileNamePNG = new System.Windows.Forms.TextBox();
     this.numericUpDownThWidthPNG = new System.Windows.Forms.NumericUpDown();
     this.label12 = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.label20 = new System.Windows.Forms.Label();
     this.label21 = new System.Windows.Forms.Label();
     this.label22 = new System.Windows.Forms.Label();
     this.textBoxThTimeStartPNG = new System.Windows.Forms.TextBox();
     this.label24 = new System.Windows.Forms.Label();
     this.textBoxThTimeStepPNG = new System.Windows.Forms.TextBox();
     this.label26 = new System.Windows.Forms.Label();
     this.label27 = new System.Windows.Forms.Label();
     this.textBoxThTimeRangePNG = new System.Windows.Forms.TextBox();
     this.checkBoxGenThumbnailsPNG = new System.Windows.Forms.CheckBox();
     this.tabPageThBMP = new System.Windows.Forms.TabPage();
     this.linkLabelThumbnail3 = new System.Windows.Forms.LinkLabel();
     this.panelThumbnailsBMP = new System.Windows.Forms.Panel();
     this.numericUpDownThHeightBMP = new System.Windows.Forms.NumericUpDown();
     this.label28 = new System.Windows.Forms.Label();
     this.textBoxThFileNameBMP = new System.Windows.Forms.TextBox();
     this.numericUpDownThWidthBMP = new System.Windows.Forms.NumericUpDown();
     this.label29 = new System.Windows.Forms.Label();
     this.label30 = new System.Windows.Forms.Label();
     this.label31 = new System.Windows.Forms.Label();
     this.label32 = new System.Windows.Forms.Label();
     this.label33 = new System.Windows.Forms.Label();
     this.textBoxThTimeStartBMP = new System.Windows.Forms.TextBox();
     this.label36 = new System.Windows.Forms.Label();
     this.textBoxThTimeStepBMP = new System.Windows.Forms.TextBox();
     this.label38 = new System.Windows.Forms.Label();
     this.label39 = new System.Windows.Forms.Label();
     this.textBoxThTimeRangeBMP = new System.Windows.Forms.TextBox();
     this.checkBoxGenThumbnailsBMP = new System.Windows.Forms.CheckBox();
     this.labelsummaryjob = new System.Windows.Forms.Label();
     this.labelProcessorVersion = new System.Windows.Forms.Label();
     this.checkBoxDisableAutoDeinterlacing = new System.Windows.Forms.CheckBox();
     this.buttonJobOptions = new AMSExplorer.ButtonJobOptions();
     this.timeControlEndTime = new AMSExplorer.TimeControl();
     this.timeControlStartTime = new AMSExplorer.TimeControl();
     this.panel1.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.TabPagePreset.SuspendLayout();
     this.TabPageFeatures.SuspendLayout();
     this.tabPageThJPG.SuspendLayout();
     this.panelThumbnailsJPG.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownThHeightJPG)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownThWidthJPG)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownThQuality)).BeginInit();
     this.tabPageThPNG.SuspendLayout();
     this.panelThumbnailsPNG.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownThHeightPNG)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownThWidthPNG)).BeginInit();
     this.tabPageThBMP.SuspendLayout();
     this.panelThumbnailsBMP.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownThHeightBMP)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownThWidthBMP)).BeginInit();
     this.SuspendLayout();
     //
     // label3
     //
     this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(25, 550);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(126, 15);
     this.label3.TabIndex = 22;
     this.label3.Text = "Output asset(s) name :";
     //
     // textboxoutputassetname
     //
     this.textboxoutputassetname.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.textboxoutputassetname.Location = new System.Drawing.Point(27, 568);
     this.textboxoutputassetname.Name = "textboxoutputassetname";
     this.textboxoutputassetname.Size = new System.Drawing.Size(521, 23);
     this.textboxoutputassetname.TabIndex = 21;
     //
     // label1
     //
     this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(25, 502);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(77, 15);
     this.label1.TabIndex = 18;
     this.label1.Text = "Job(s) name :";
     //
     // textBoxJobName
     //
     this.textBoxJobName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxJobName.Location = new System.Drawing.Point(28, 520);
     this.textBoxJobName.Name = "textBoxJobName";
     this.textBoxJobName.Size = new System.Drawing.Size(522, 23);
     this.textBoxJobName.TabIndex = 13;
     //
     // labelWarningJSON
     //
     this.labelWarningJSON.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.labelWarningJSON.ForeColor = System.Drawing.Color.Red;
     this.labelWarningJSON.Location = new System.Drawing.Point(151, 157);
     this.labelWarningJSON.Name = "labelWarningJSON";
     this.labelWarningJSON.Size = new System.Drawing.Size(554, 21);
     this.labelWarningJSON.TabIndex = 77;
     this.labelWarningJSON.Tag = "JSON Syntax error. {0}";
     this.labelWarningJSON.Text = "JSON Syntax error. {0}";
     this.labelWarningJSON.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.labelWarningJSON.Visible = false;
     //
     // moreinfopresetslink
     //
     this.moreinfopresetslink.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.moreinfopresetslink.AutoSize = true;
     this.moreinfopresetslink.Location = new System.Drawing.Point(547, 84);
     this.moreinfopresetslink.Name = "moreinfopresetslink";
     this.moreinfopresetslink.Size = new System.Drawing.Size(158, 15);
     this.moreinfopresetslink.TabIndex = 76;
     this.moreinfopresetslink.TabStop = true;
     this.moreinfopresetslink.Text = "More information on presets";
     this.moreinfopresetslink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.moreinfopresetslink_LinkClicked);
     //
     // richTextBoxDesc
     //
     this.richTextBoxDesc.AcceptsTab = true;
     this.richTextBoxDesc.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.richTextBoxDesc.Location = new System.Drawing.Point(318, 29);
     this.richTextBoxDesc.Name = "richTextBoxDesc";
     this.richTextBoxDesc.ReadOnly = true;
     this.richTextBoxDesc.Size = new System.Drawing.Size(387, 52);
     this.richTextBoxDesc.TabIndex = 75;
     this.richTextBoxDesc.Text = "";
     //
     // label4KWarning
     //
     this.label4KWarning.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label4KWarning.ForeColor = System.Drawing.Color.Red;
     this.label4KWarning.Location = new System.Drawing.Point(318, 100);
     this.label4KWarning.Name = "label4KWarning";
     this.label4KWarning.Size = new System.Drawing.Size(387, 23);
     this.label4KWarning.TabIndex = 73;
     this.label4KWarning.Tag = "Warning : you should use a S1 (Premium) Media RU for 4K";
     this.label4KWarning.Text = "Warning : you should use a S1 (Premium) Media RU for 4K";
     this.label4KWarning.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(10, 10);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(187, 15);
     this.label4.TabIndex = 44;
     this.label4.Text = "Select a preset or load a JSON file :";
     //
     // listboxPresets
     //
     this.listboxPresets.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.listboxPresets.FormattingEnabled = true;
     this.listboxPresets.ItemHeight = 15;
     this.listboxPresets.Location = new System.Drawing.Point(14, 29);
     this.listboxPresets.Name = "listboxPresets";
     this.listboxPresets.Size = new System.Drawing.Size(285, 109);
     this.listboxPresets.TabIndex = 43;
     this.listboxPresets.SelectedIndexChanged += new System.EventHandler(this.listboxPresets_SelectedIndexChanged);
     //
     // buttonSaveXML
     //
     this.buttonSaveXML.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonSaveXML.Location = new System.Drawing.Point(548, 127);
     this.buttonSaveXML.Name = "buttonSaveXML";
     this.buttonSaveXML.Size = new System.Drawing.Size(157, 27);
     this.buttonSaveXML.TabIndex = 42;
     this.buttonSaveXML.Text = "Save edited JSON...";
     this.buttonSaveXML.UseVisualStyleBackColor = true;
     this.buttonSaveXML.Click += new System.EventHandler(this.buttonSaveXML_Click);
     //
     // buttonLoadXML
     //
     this.buttonLoadXML.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonLoadXML.Location = new System.Drawing.Point(385, 127);
     this.buttonLoadXML.Name = "buttonLoadXML";
     this.buttonLoadXML.Size = new System.Drawing.Size(157, 27);
     this.buttonLoadXML.TabIndex = 41;
     this.buttonLoadXML.Text = "Load a preset JSON file...";
     this.buttonLoadXML.UseVisualStyleBackColor = true;
     this.buttonLoadXML.Click += new System.EventHandler(this.buttonLoadJSON_Click);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(10, 160);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(135, 15);
     this.label2.TabIndex = 38;
     this.label2.Text = "JSON or XML (editable) :";
     //
     // textBoxConfiguration
     //
     this.textBoxConfiguration.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxConfiguration.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBoxConfiguration.Location = new System.Drawing.Point(14, 179);
     this.textBoxConfiguration.Multiline = true;
     this.textBoxConfiguration.Name = "textBoxConfiguration";
     this.textBoxConfiguration.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.textBoxConfiguration.Size = new System.Drawing.Size(691, 172);
     this.textBoxConfiguration.TabIndex = 27;
     this.textBoxConfiguration.TextChanged += new System.EventHandler(this.textBoxConfiguration_TextChanged);
     //
     // label34
     //
     this.label34.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label34.AutoSize = true;
     this.label34.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold);
     this.label34.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(46)))), ((int)(((byte)(128)))), ((int)(((byte)(171)))));
     this.label34.Location = new System.Drawing.Point(524, 13);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(232, 25);
     this.label34.TabIndex = 63;
     this.label34.Text = "Media Encoder Standard";
     this.label34.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // buttonCancel
     //
     this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.buttonCancel.Location = new System.Drawing.Point(656, 15);
     this.buttonCancel.Name = "buttonCancel";
     this.buttonCancel.Size = new System.Drawing.Size(115, 27);
     this.buttonCancel.TabIndex = 4;
     this.buttonCancel.Text = "Cancel";
     this.buttonCancel.UseVisualStyleBackColor = true;
     //
     // buttonOk
     //
     this.buttonOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonOk.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.buttonOk.Image = global::AMSExplorer.Bitmaps.encoding;
     this.buttonOk.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.buttonOk.Location = new System.Drawing.Point(487, 15);
     this.buttonOk.Name = "buttonOk";
     this.buttonOk.Size = new System.Drawing.Size(163, 27);
     this.buttonOk.TabIndex = 5;
     this.buttonOk.Text = "Launch encoding";
     this.buttonOk.UseVisualStyleBackColor = true;
     //
     // panel1
     //
     this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.panel1.BackColor = System.Drawing.SystemColors.Control;
     this.panel1.Controls.Add(this.buttonCancel);
     this.panel1.Controls.Add(this.buttonOk);
     this.panel1.Location = new System.Drawing.Point(1, 606);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(783, 55);
     this.panel1.TabIndex = 66;
     //
     // openFileDialogPreset
     //
     this.openFileDialogPreset.DefaultExt = "xml";
     this.openFileDialogPreset.Filter = "Preset files|*.json|All files|*.*";
     //
     // saveFileDialogPreset
     //
     this.saveFileDialogPreset.DefaultExt = "xml";
     this.saveFileDialogPreset.Filter = "Preset file|*.json|All files|*.*";
     //
     // moreinfoame
     //
     this.moreinfoame.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.moreinfoame.AutoSize = true;
     this.moreinfoame.Location = new System.Drawing.Point(655, 68);
     this.moreinfoame.Name = "moreinfoame";
     this.moreinfoame.Size = new System.Drawing.Size(101, 15);
     this.moreinfoame.TabIndex = 73;
     this.moreinfoame.TabStop = true;
     this.moreinfoame.Text = "More information";
     this.moreinfoame.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.moreinfoame_LinkClicked);
     //
     // tabControl1
     //
     this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.tabControl1.Controls.Add(this.TabPagePreset);
     this.tabControl1.Controls.Add(this.TabPageFeatures);
     this.tabControl1.Controls.Add(this.tabPageThJPG);
     this.tabControl1.Controls.Add(this.tabPageThPNG);
     this.tabControl1.Controls.Add(this.tabPageThBMP);
     this.tabControl1.Location = new System.Drawing.Point(24, 97);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(732, 389);
     this.tabControl1.TabIndex = 74;
     //
     // TabPagePreset
     //
     this.TabPagePreset.Controls.Add(this.labelWarningJSON);
     this.TabPagePreset.Controls.Add(this.label4);
     this.TabPagePreset.Controls.Add(this.moreinfopresetslink);
     this.TabPagePreset.Controls.Add(this.textBoxConfiguration);
     this.TabPagePreset.Controls.Add(this.richTextBoxDesc);
     this.TabPagePreset.Controls.Add(this.label2);
     this.TabPagePreset.Controls.Add(this.label4KWarning);
     this.TabPagePreset.Controls.Add(this.buttonLoadXML);
     this.TabPagePreset.Controls.Add(this.buttonSaveXML);
     this.TabPagePreset.Controls.Add(this.listboxPresets);
     this.TabPagePreset.Location = new System.Drawing.Point(4, 24);
     this.TabPagePreset.Name = "TabPagePreset";
     this.TabPagePreset.Padding = new System.Windows.Forms.Padding(3);
     this.TabPagePreset.Size = new System.Drawing.Size(724, 361);
     this.TabPagePreset.TabIndex = 0;
     this.TabPagePreset.Text = "Preset";
     this.TabPagePreset.UseVisualStyleBackColor = true;
     //
     // TabPageFeatures
     //
     this.TabPageFeatures.Controls.Add(this.checkBoxDisableAutoDeinterlacing);
     this.TabPageFeatures.Controls.Add(this.checkBoxInsertSilentAudioTrack);
     this.TabPageFeatures.Controls.Add(this.textBoxSourceDurationTime);
     this.TabPageFeatures.Controls.Add(this.label7);
     this.TabPageFeatures.Controls.Add(this.checkBoxAddAutomatic);
     this.TabPageFeatures.Controls.Add(this.timeControlEndTime);
     this.TabPageFeatures.Controls.Add(this.timeControlStartTime);
     this.TabPageFeatures.Controls.Add(this.checkBoxSourceTrimming);
     this.TabPageFeatures.Location = new System.Drawing.Point(4, 24);
     this.TabPageFeatures.Name = "TabPageFeatures";
     this.TabPageFeatures.Padding = new System.Windows.Forms.Padding(3);
     this.TabPageFeatures.Size = new System.Drawing.Size(724, 361);
     this.TabPageFeatures.TabIndex = 1;
     this.TabPageFeatures.Text = "Features";
     this.TabPageFeatures.UseVisualStyleBackColor = true;
     //
     // checkBoxInsertSilentAudioTrack
     //
     this.checkBoxInsertSilentAudioTrack.AutoSize = true;
     this.checkBoxInsertSilentAudioTrack.Location = new System.Drawing.Point(16, 194);
     this.checkBoxInsertSilentAudioTrack.Name = "checkBoxInsertSilentAudioTrack";
     this.checkBoxInsertSilentAudioTrack.Size = new System.Drawing.Size(291, 19);
     this.checkBoxInsertSilentAudioTrack.TabIndex = 89;
     this.checkBoxInsertSilentAudioTrack.Text = "Insert a silent audio track when input has no audio";
     this.checkBoxInsertSilentAudioTrack.UseVisualStyleBackColor = true;
     this.checkBoxInsertSilentAudioTrack.CheckedChanged += new System.EventHandler(this.checkBoxInsertSilentAudioTrack_CheckedChanged);
     //
     // textBoxSourceDurationTime
     //
     this.textBoxSourceDurationTime.Enabled = false;
     this.textBoxSourceDurationTime.Location = new System.Drawing.Point(517, 116);
     this.textBoxSourceDurationTime.Name = "textBoxSourceDurationTime";
     this.textBoxSourceDurationTime.ReadOnly = true;
     this.textBoxSourceDurationTime.Size = new System.Drawing.Size(123, 23);
     this.textBoxSourceDurationTime.TabIndex = 88;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(514, 98);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(59, 15);
     this.label7.TabIndex = 82;
     this.label7.Text = "Duration :";
     //
     // checkBoxAddAutomatic
     //
     this.checkBoxAddAutomatic.AutoSize = true;
     this.checkBoxAddAutomatic.Checked = true;
     this.checkBoxAddAutomatic.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBoxAddAutomatic.Location = new System.Drawing.Point(16, 336);
     this.checkBoxAddAutomatic.Name = "checkBoxAddAutomatic";
     this.checkBoxAddAutomatic.Size = new System.Drawing.Size(428, 19);
     this.checkBoxAddAutomatic.TabIndex = 4;
     this.checkBoxAddAutomatic.Text = "Automatically update the JSON configuration for Trimming and Thumbnails";
     this.checkBoxAddAutomatic.UseVisualStyleBackColor = true;
     this.checkBoxAddAutomatic.CheckedChanged += new System.EventHandler(this.checkBoxAddAutomatic_CheckedChanged);
     //
     // checkBoxSourceTrimming
     //
     this.checkBoxSourceTrimming.AutoSize = true;
     this.checkBoxSourceTrimming.Location = new System.Drawing.Point(16, 15);
     this.checkBoxSourceTrimming.Name = "checkBoxSourceTrimming";
     this.checkBoxSourceTrimming.Size = new System.Drawing.Size(117, 19);
     this.checkBoxSourceTrimming.TabIndex = 5;
     this.checkBoxSourceTrimming.Text = "Source Trimming";
     this.checkBoxSourceTrimming.UseVisualStyleBackColor = true;
     this.checkBoxSourceTrimming.CheckedChanged += new System.EventHandler(this.checkBoxSourceTrimming_CheckedChanged);
     //
     // tabPageThJPG
     //
     this.tabPageThJPG.Controls.Add(this.linkLabelThumbnail1);
     this.tabPageThJPG.Controls.Add(this.panelThumbnailsJPG);
     this.tabPageThJPG.Controls.Add(this.checkBoxGenThumbnailsJPG);
     this.tabPageThJPG.Location = new System.Drawing.Point(4, 24);
     this.tabPageThJPG.Name = "tabPageThJPG";
     this.tabPageThJPG.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageThJPG.Size = new System.Drawing.Size(724, 361);
     this.tabPageThJPG.TabIndex = 2;
     this.tabPageThJPG.Text = "Thumbnails (JPG)";
     this.tabPageThJPG.UseVisualStyleBackColor = true;
     //
     // linkLabelThumbnail1
     //
     this.linkLabelThumbnail1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.linkLabelThumbnail1.AutoSize = true;
     this.linkLabelThumbnail1.Location = new System.Drawing.Point(537, 18);
     this.linkLabelThumbnail1.Name = "linkLabelThumbnail1";
     this.linkLabelThumbnail1.Size = new System.Drawing.Size(181, 15);
     this.linkLabelThumbnail1.TabIndex = 113;
     this.linkLabelThumbnail1.TabStop = true;
     this.linkLabelThumbnail1.Text = "More information on thumbnails";
     this.linkLabelThumbnail1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelThumbnail1_LinkClicked);
     //
     // panelThumbnailsJPG
     //
     this.panelThumbnailsJPG.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.panelThumbnailsJPG.Controls.Add(this.numericUpDownThHeightJPG);
     this.panelThumbnailsJPG.Controls.Add(this.label18);
     this.panelThumbnailsJPG.Controls.Add(this.textBoxThFileNameJPG);
     this.panelThumbnailsJPG.Controls.Add(this.numericUpDownThWidthJPG);
     this.panelThumbnailsJPG.Controls.Add(this.label8);
     this.panelThumbnailsJPG.Controls.Add(this.label17);
     this.panelThumbnailsJPG.Controls.Add(this.label16);
     this.panelThumbnailsJPG.Controls.Add(this.label9);
     this.panelThumbnailsJPG.Controls.Add(this.label15);
     this.panelThumbnailsJPG.Controls.Add(this.textBoxThTimeStartJPG);
     this.panelThumbnailsJPG.Controls.Add(this.label14);
     this.panelThumbnailsJPG.Controls.Add(this.label5);
     this.panelThumbnailsJPG.Controls.Add(this.numericUpDownThQuality);
     this.panelThumbnailsJPG.Controls.Add(this.textBoxThTimeStepJPG);
     this.panelThumbnailsJPG.Controls.Add(this.label13);
     this.panelThumbnailsJPG.Controls.Add(this.label11);
     this.panelThumbnailsJPG.Controls.Add(this.label10);
     this.panelThumbnailsJPG.Controls.Add(this.textBoxThTimeRangeJPG);
     this.panelThumbnailsJPG.Enabled = false;
     this.panelThumbnailsJPG.Location = new System.Drawing.Point(15, 43);
     this.panelThumbnailsJPG.Name = "panelThumbnailsJPG";
     this.panelThumbnailsJPG.Size = new System.Drawing.Size(645, 301);
     this.panelThumbnailsJPG.TabIndex = 112;
     //
     // numericUpDownThHeightJPG
     //
     this.numericUpDownThHeightJPG.Location = new System.Drawing.Point(105, 30);
     this.numericUpDownThHeightJPG.Maximum = new decimal(new int[] {
     10000,
     0,
     0,
     0});
     this.numericUpDownThHeightJPG.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.numericUpDownThHeightJPG.Name = "numericUpDownThHeightJPG";
     this.numericUpDownThHeightJPG.Size = new System.Drawing.Size(76, 23);
     this.numericUpDownThHeightJPG.TabIndex = 111;
     this.numericUpDownThHeightJPG.Value = new decimal(new int[] {
     360,
     0,
     0,
     0});
     this.numericUpDownThHeightJPG.ValueChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(102, 13);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(49, 15);
     this.label18.TabIndex = 110;
     this.label18.Text = "Height :";
     //
     // textBoxThFileNameJPG
     //
     this.textBoxThFileNameJPG.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxThFileNameJPG.Location = new System.Drawing.Point(7, 253);
     this.textBoxThFileNameJPG.Name = "textBoxThFileNameJPG";
     this.textBoxThFileNameJPG.Size = new System.Drawing.Size(566, 23);
     this.textBoxThFileNameJPG.TabIndex = 93;
     this.textBoxThFileNameJPG.Text = "{Basename}_{Index}{Extension}";
     this.textBoxThFileNameJPG.TextChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // numericUpDownThWidthJPG
     //
     this.numericUpDownThWidthJPG.Location = new System.Drawing.Point(8, 30);
     this.numericUpDownThWidthJPG.Maximum = new decimal(new int[] {
     10000,
     0,
     0,
     0});
     this.numericUpDownThWidthJPG.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.numericUpDownThWidthJPG.Name = "numericUpDownThWidthJPG";
     this.numericUpDownThWidthJPG.Size = new System.Drawing.Size(76, 23);
     this.numericUpDownThWidthJPG.TabIndex = 109;
     this.numericUpDownThWidthJPG.Value = new decimal(new int[] {
     640,
     0,
     0,
     0});
     this.numericUpDownThWidthJPG.ValueChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(5, 234);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(128, 15);
     this.label8.TabIndex = 94;
     this.label8.Text = "Thumbnail files name :";
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Location = new System.Drawing.Point(5, 13);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(45, 15);
     this.label17.TabIndex = 108;
     this.label17.Text = "Width :";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.ForeColor = System.Drawing.SystemColors.WindowFrame;
     this.label16.Location = new System.Drawing.Point(154, 191);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(181, 15);
     this.label16.TabIndex = 107;
     this.label16.Text = "examples : 00:00:50 or 90% or 120";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(3, 60);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(67, 15);
     this.label9.TabIndex = 96;
     this.label9.Text = "Time Start :";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.ForeColor = System.Drawing.SystemColors.WindowFrame;
     this.label15.Location = new System.Drawing.Point(154, 136);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(181, 15);
     this.label15.TabIndex = 106;
     this.label15.Text = "examples : 00:00:10 or 10% or 120";
     //
     // textBoxThTimeStartJPG
     //
     this.textBoxThTimeStartJPG.Location = new System.Drawing.Point(7, 79);
     this.textBoxThTimeStartJPG.Name = "textBoxThTimeStartJPG";
     this.textBoxThTimeStartJPG.Size = new System.Drawing.Size(140, 23);
     this.textBoxThTimeStartJPG.TabIndex = 97;
     this.textBoxThTimeStartJPG.Text = "{Best}";
     this.textBoxThTimeStartJPG.TextChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.ForeColor = System.Drawing.SystemColors.WindowFrame;
     this.label14.Location = new System.Drawing.Point(279, 32);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(115, 15);
     this.label14.TabIndex = 105;
     this.label14.Text = "1 (worst) - 100 (best)";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(4, 114);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(66, 15);
     this.label5.TabIndex = 98;
     this.label5.Text = "Time Step :";
     //
     // numericUpDownThQuality
     //
     this.numericUpDownThQuality.Location = new System.Drawing.Point(206, 30);
     this.numericUpDownThQuality.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.numericUpDownThQuality.Name = "numericUpDownThQuality";
     this.numericUpDownThQuality.Size = new System.Drawing.Size(67, 23);
     this.numericUpDownThQuality.TabIndex = 104;
     this.numericUpDownThQuality.Value = new decimal(new int[] {
     90,
     0,
     0,
     0});
     this.numericUpDownThQuality.ValueChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // textBoxThTimeStepJPG
     //
     this.textBoxThTimeStepJPG.Location = new System.Drawing.Point(8, 133);
     this.textBoxThTimeStepJPG.Name = "textBoxThTimeStepJPG";
     this.textBoxThTimeStepJPG.Size = new System.Drawing.Size(140, 23);
     this.textBoxThTimeStepJPG.TabIndex = 99;
     this.textBoxThTimeStepJPG.TextChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(203, 12);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(51, 15);
     this.label13.TabIndex = 103;
     this.label13.Text = "Quality :";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(3, 170);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(76, 15);
     this.label11.TabIndex = 100;
     this.label11.Text = "Time Range :";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.ForeColor = System.Drawing.SystemColors.WindowFrame;
     this.label10.Location = new System.Drawing.Point(153, 82);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(228, 15);
     this.label10.TabIndex = 102;
     this.label10.Text = "examples : {Best} or 00:00:01 or 10% or 120";
     //
     // textBoxThTimeRangeJPG
     //
     this.textBoxThTimeRangeJPG.Location = new System.Drawing.Point(7, 188);
     this.textBoxThTimeRangeJPG.Name = "textBoxThTimeRangeJPG";
     this.textBoxThTimeRangeJPG.Size = new System.Drawing.Size(140, 23);
     this.textBoxThTimeRangeJPG.TabIndex = 101;
     this.textBoxThTimeRangeJPG.TextChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // checkBoxGenThumbnailsJPG
     //
     this.checkBoxGenThumbnailsJPG.AutoSize = true;
     this.checkBoxGenThumbnailsJPG.Location = new System.Drawing.Point(15, 18);
     this.checkBoxGenThumbnailsJPG.Name = "checkBoxGenThumbnailsJPG";
     this.checkBoxGenThumbnailsJPG.Size = new System.Drawing.Size(161, 19);
     this.checkBoxGenThumbnailsJPG.TabIndex = 5;
     this.checkBoxGenThumbnailsJPG.Text = "Generate JPG Thumbnails";
     this.checkBoxGenThumbnailsJPG.UseVisualStyleBackColor = true;
     this.checkBoxGenThumbnailsJPG.CheckedChanged += new System.EventHandler(this.checkBoxGenThumbnails_CheckedChanged);
     //
     // tabPageThPNG
     //
     this.tabPageThPNG.Controls.Add(this.linkLabelThumbnail2);
     this.tabPageThPNG.Controls.Add(this.panelThumbnailsPNG);
     this.tabPageThPNG.Controls.Add(this.checkBoxGenThumbnailsPNG);
     this.tabPageThPNG.Location = new System.Drawing.Point(4, 24);
     this.tabPageThPNG.Name = "tabPageThPNG";
     this.tabPageThPNG.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageThPNG.Size = new System.Drawing.Size(724, 361);
     this.tabPageThPNG.TabIndex = 3;
     this.tabPageThPNG.Text = "Thumbnails (PNG)";
     this.tabPageThPNG.UseVisualStyleBackColor = true;
     //
     // linkLabelThumbnail2
     //
     this.linkLabelThumbnail2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.linkLabelThumbnail2.AutoSize = true;
     this.linkLabelThumbnail2.Location = new System.Drawing.Point(537, 18);
     this.linkLabelThumbnail2.Name = "linkLabelThumbnail2";
     this.linkLabelThumbnail2.Size = new System.Drawing.Size(181, 15);
     this.linkLabelThumbnail2.TabIndex = 115;
     this.linkLabelThumbnail2.TabStop = true;
     this.linkLabelThumbnail2.Text = "More information on thumbnails";
     this.linkLabelThumbnail2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelThumbnail1_LinkClicked);
     //
     // panelThumbnailsPNG
     //
     this.panelThumbnailsPNG.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.panelThumbnailsPNG.Controls.Add(this.numericUpDownThHeightPNG);
     this.panelThumbnailsPNG.Controls.Add(this.label6);
     this.panelThumbnailsPNG.Controls.Add(this.textBoxThFileNamePNG);
     this.panelThumbnailsPNG.Controls.Add(this.numericUpDownThWidthPNG);
     this.panelThumbnailsPNG.Controls.Add(this.label12);
     this.panelThumbnailsPNG.Controls.Add(this.label19);
     this.panelThumbnailsPNG.Controls.Add(this.label20);
     this.panelThumbnailsPNG.Controls.Add(this.label21);
     this.panelThumbnailsPNG.Controls.Add(this.label22);
     this.panelThumbnailsPNG.Controls.Add(this.textBoxThTimeStartPNG);
     this.panelThumbnailsPNG.Controls.Add(this.label24);
     this.panelThumbnailsPNG.Controls.Add(this.textBoxThTimeStepPNG);
     this.panelThumbnailsPNG.Controls.Add(this.label26);
     this.panelThumbnailsPNG.Controls.Add(this.label27);
     this.panelThumbnailsPNG.Controls.Add(this.textBoxThTimeRangePNG);
     this.panelThumbnailsPNG.Enabled = false;
     this.panelThumbnailsPNG.Location = new System.Drawing.Point(15, 43);
     this.panelThumbnailsPNG.Name = "panelThumbnailsPNG";
     this.panelThumbnailsPNG.Size = new System.Drawing.Size(645, 301);
     this.panelThumbnailsPNG.TabIndex = 114;
     //
     // numericUpDownThHeightPNG
     //
     this.numericUpDownThHeightPNG.Location = new System.Drawing.Point(105, 30);
     this.numericUpDownThHeightPNG.Maximum = new decimal(new int[] {
     10000,
     0,
     0,
     0});
     this.numericUpDownThHeightPNG.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.numericUpDownThHeightPNG.Name = "numericUpDownThHeightPNG";
     this.numericUpDownThHeightPNG.Size = new System.Drawing.Size(76, 23);
     this.numericUpDownThHeightPNG.TabIndex = 111;
     this.numericUpDownThHeightPNG.Value = new decimal(new int[] {
     360,
     0,
     0,
     0});
     this.numericUpDownThHeightPNG.ValueChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(102, 13);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(49, 15);
     this.label6.TabIndex = 110;
     this.label6.Text = "Height :";
     //
     // textBoxThFileNamePNG
     //
     this.textBoxThFileNamePNG.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxThFileNamePNG.Location = new System.Drawing.Point(7, 253);
     this.textBoxThFileNamePNG.Name = "textBoxThFileNamePNG";
     this.textBoxThFileNamePNG.Size = new System.Drawing.Size(566, 23);
     this.textBoxThFileNamePNG.TabIndex = 93;
     this.textBoxThFileNamePNG.Text = "{Basename}_{Index}{Extension}";
     this.textBoxThFileNamePNG.TextChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // numericUpDownThWidthPNG
     //
     this.numericUpDownThWidthPNG.Location = new System.Drawing.Point(8, 30);
     this.numericUpDownThWidthPNG.Maximum = new decimal(new int[] {
     10000,
     0,
     0,
     0});
     this.numericUpDownThWidthPNG.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.numericUpDownThWidthPNG.Name = "numericUpDownThWidthPNG";
     this.numericUpDownThWidthPNG.Size = new System.Drawing.Size(76, 23);
     this.numericUpDownThWidthPNG.TabIndex = 109;
     this.numericUpDownThWidthPNG.Value = new decimal(new int[] {
     640,
     0,
     0,
     0});
     this.numericUpDownThWidthPNG.ValueChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(5, 234);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(128, 15);
     this.label12.TabIndex = 94;
     this.label12.Text = "Thumbnail files name :";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(5, 13);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(45, 15);
     this.label19.TabIndex = 108;
     this.label19.Text = "Width :";
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.ForeColor = System.Drawing.SystemColors.WindowFrame;
     this.label20.Location = new System.Drawing.Point(154, 191);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(181, 15);
     this.label20.TabIndex = 107;
     this.label20.Text = "examples : 00:00:50 or 90% or 120";
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Location = new System.Drawing.Point(3, 60);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(67, 15);
     this.label21.TabIndex = 96;
     this.label21.Text = "Time Start :";
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.ForeColor = System.Drawing.SystemColors.WindowFrame;
     this.label22.Location = new System.Drawing.Point(154, 136);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(181, 15);
     this.label22.TabIndex = 106;
     this.label22.Text = "examples : 00:00:10 or 10% or 120";
     //
     // textBoxThTimeStartPNG
     //
     this.textBoxThTimeStartPNG.Location = new System.Drawing.Point(7, 79);
     this.textBoxThTimeStartPNG.Name = "textBoxThTimeStartPNG";
     this.textBoxThTimeStartPNG.Size = new System.Drawing.Size(140, 23);
     this.textBoxThTimeStartPNG.TabIndex = 97;
     this.textBoxThTimeStartPNG.Text = "00:00:00";
     this.textBoxThTimeStartPNG.TextChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Location = new System.Drawing.Point(4, 114);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(66, 15);
     this.label24.TabIndex = 98;
     this.label24.Text = "Time Step :";
     //
     // textBoxThTimeStepPNG
     //
     this.textBoxThTimeStepPNG.Location = new System.Drawing.Point(8, 133);
     this.textBoxThTimeStepPNG.Name = "textBoxThTimeStepPNG";
     this.textBoxThTimeStepPNG.Size = new System.Drawing.Size(140, 23);
     this.textBoxThTimeStepPNG.TabIndex = 99;
     this.textBoxThTimeStepPNG.Text = "00:01:00";
     this.textBoxThTimeStepPNG.TextChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(3, 170);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(76, 15);
     this.label26.TabIndex = 100;
     this.label26.Text = "Time Range :";
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.ForeColor = System.Drawing.SystemColors.WindowFrame;
     this.label27.Location = new System.Drawing.Point(153, 82);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(228, 15);
     this.label27.TabIndex = 102;
     this.label27.Text = "examples : {Best} or 00:00:01 or 10% or 120";
     //
     // textBoxThTimeRangePNG
     //
     this.textBoxThTimeRangePNG.Location = new System.Drawing.Point(7, 188);
     this.textBoxThTimeRangePNG.Name = "textBoxThTimeRangePNG";
     this.textBoxThTimeRangePNG.Size = new System.Drawing.Size(140, 23);
     this.textBoxThTimeRangePNG.TabIndex = 101;
     this.textBoxThTimeRangePNG.TextChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // checkBoxGenThumbnailsPNG
     //
     this.checkBoxGenThumbnailsPNG.AutoSize = true;
     this.checkBoxGenThumbnailsPNG.Location = new System.Drawing.Point(15, 18);
     this.checkBoxGenThumbnailsPNG.Name = "checkBoxGenThumbnailsPNG";
     this.checkBoxGenThumbnailsPNG.Size = new System.Drawing.Size(166, 19);
     this.checkBoxGenThumbnailsPNG.TabIndex = 113;
     this.checkBoxGenThumbnailsPNG.Text = "Generate PNG Thumbnails";
     this.checkBoxGenThumbnailsPNG.UseVisualStyleBackColor = true;
     this.checkBoxGenThumbnailsPNG.CheckedChanged += new System.EventHandler(this.checkBoxGenThumbnailsPNG_CheckedChanged);
     //
     // tabPageThBMP
     //
     this.tabPageThBMP.Controls.Add(this.linkLabelThumbnail3);
     this.tabPageThBMP.Controls.Add(this.panelThumbnailsBMP);
     this.tabPageThBMP.Controls.Add(this.checkBoxGenThumbnailsBMP);
     this.tabPageThBMP.Location = new System.Drawing.Point(4, 24);
     this.tabPageThBMP.Name = "tabPageThBMP";
     this.tabPageThBMP.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageThBMP.Size = new System.Drawing.Size(724, 361);
     this.tabPageThBMP.TabIndex = 4;
     this.tabPageThBMP.Text = "Thumbnails (BMP)";
     this.tabPageThBMP.UseVisualStyleBackColor = true;
     //
     // linkLabelThumbnail3
     //
     this.linkLabelThumbnail3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.linkLabelThumbnail3.AutoSize = true;
     this.linkLabelThumbnail3.Location = new System.Drawing.Point(537, 18);
     this.linkLabelThumbnail3.Name = "linkLabelThumbnail3";
     this.linkLabelThumbnail3.Size = new System.Drawing.Size(181, 15);
     this.linkLabelThumbnail3.TabIndex = 115;
     this.linkLabelThumbnail3.TabStop = true;
     this.linkLabelThumbnail3.Text = "More information on thumbnails";
     this.linkLabelThumbnail3.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelThumbnail1_LinkClicked);
     //
     // panelThumbnailsBMP
     //
     this.panelThumbnailsBMP.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.panelThumbnailsBMP.Controls.Add(this.numericUpDownThHeightBMP);
     this.panelThumbnailsBMP.Controls.Add(this.label28);
     this.panelThumbnailsBMP.Controls.Add(this.textBoxThFileNameBMP);
     this.panelThumbnailsBMP.Controls.Add(this.numericUpDownThWidthBMP);
     this.panelThumbnailsBMP.Controls.Add(this.label29);
     this.panelThumbnailsBMP.Controls.Add(this.label30);
     this.panelThumbnailsBMP.Controls.Add(this.label31);
     this.panelThumbnailsBMP.Controls.Add(this.label32);
     this.panelThumbnailsBMP.Controls.Add(this.label33);
     this.panelThumbnailsBMP.Controls.Add(this.textBoxThTimeStartBMP);
     this.panelThumbnailsBMP.Controls.Add(this.label36);
     this.panelThumbnailsBMP.Controls.Add(this.textBoxThTimeStepBMP);
     this.panelThumbnailsBMP.Controls.Add(this.label38);
     this.panelThumbnailsBMP.Controls.Add(this.label39);
     this.panelThumbnailsBMP.Controls.Add(this.textBoxThTimeRangeBMP);
     this.panelThumbnailsBMP.Enabled = false;
     this.panelThumbnailsBMP.Location = new System.Drawing.Point(15, 43);
     this.panelThumbnailsBMP.Name = "panelThumbnailsBMP";
     this.panelThumbnailsBMP.Size = new System.Drawing.Size(645, 301);
     this.panelThumbnailsBMP.TabIndex = 114;
     //
     // numericUpDownThHeightBMP
     //
     this.numericUpDownThHeightBMP.Location = new System.Drawing.Point(105, 30);
     this.numericUpDownThHeightBMP.Maximum = new decimal(new int[] {
     10000,
     0,
     0,
     0});
     this.numericUpDownThHeightBMP.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.numericUpDownThHeightBMP.Name = "numericUpDownThHeightBMP";
     this.numericUpDownThHeightBMP.Size = new System.Drawing.Size(76, 23);
     this.numericUpDownThHeightBMP.TabIndex = 111;
     this.numericUpDownThHeightBMP.Value = new decimal(new int[] {
     360,
     0,
     0,
     0});
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(102, 13);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(49, 15);
     this.label28.TabIndex = 110;
     this.label28.Text = "Height :";
     //
     // textBoxThFileNameBMP
     //
     this.textBoxThFileNameBMP.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxThFileNameBMP.Location = new System.Drawing.Point(7, 253);
     this.textBoxThFileNameBMP.Name = "textBoxThFileNameBMP";
     this.textBoxThFileNameBMP.Size = new System.Drawing.Size(566, 23);
     this.textBoxThFileNameBMP.TabIndex = 93;
     this.textBoxThFileNameBMP.Text = "{Basename}_{Index}{Extension}";
     this.textBoxThFileNameBMP.TextChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // numericUpDownThWidthBMP
     //
     this.numericUpDownThWidthBMP.Location = new System.Drawing.Point(8, 30);
     this.numericUpDownThWidthBMP.Maximum = new decimal(new int[] {
     10000,
     0,
     0,
     0});
     this.numericUpDownThWidthBMP.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.numericUpDownThWidthBMP.Name = "numericUpDownThWidthBMP";
     this.numericUpDownThWidthBMP.Size = new System.Drawing.Size(76, 23);
     this.numericUpDownThWidthBMP.TabIndex = 109;
     this.numericUpDownThWidthBMP.Value = new decimal(new int[] {
     640,
     0,
     0,
     0});
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(5, 234);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(128, 15);
     this.label29.TabIndex = 94;
     this.label29.Text = "Thumbnail files name :";
     //
     // label30
     //
     this.label30.AutoSize = true;
     this.label30.Location = new System.Drawing.Point(5, 13);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(45, 15);
     this.label30.TabIndex = 108;
     this.label30.Text = "Width :";
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.ForeColor = System.Drawing.SystemColors.WindowFrame;
     this.label31.Location = new System.Drawing.Point(154, 191);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(181, 15);
     this.label31.TabIndex = 107;
     this.label31.Text = "examples : 00:00:50 or 90% or 120";
     //
     // label32
     //
     this.label32.AutoSize = true;
     this.label32.Location = new System.Drawing.Point(3, 60);
     this.label32.Name = "label32";
     this.label32.Size = new System.Drawing.Size(67, 15);
     this.label32.TabIndex = 96;
     this.label32.Text = "Time Start :";
     //
     // label33
     //
     this.label33.AutoSize = true;
     this.label33.ForeColor = System.Drawing.SystemColors.WindowFrame;
     this.label33.Location = new System.Drawing.Point(154, 136);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(181, 15);
     this.label33.TabIndex = 106;
     this.label33.Text = "examples : 00:00:10 or 10% or 120";
     //
     // textBoxThTimeStartBMP
     //
     this.textBoxThTimeStartBMP.Location = new System.Drawing.Point(7, 79);
     this.textBoxThTimeStartBMP.Name = "textBoxThTimeStartBMP";
     this.textBoxThTimeStartBMP.Size = new System.Drawing.Size(140, 23);
     this.textBoxThTimeStartBMP.TabIndex = 97;
     this.textBoxThTimeStartBMP.Text = "10%";
     this.textBoxThTimeStartBMP.TextChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // label36
     //
     this.label36.AutoSize = true;
     this.label36.Location = new System.Drawing.Point(4, 114);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(66, 15);
     this.label36.TabIndex = 98;
     this.label36.Text = "Time Step :";
     //
     // textBoxThTimeStepBMP
     //
     this.textBoxThTimeStepBMP.Location = new System.Drawing.Point(8, 133);
     this.textBoxThTimeStepBMP.Name = "textBoxThTimeStepBMP";
     this.textBoxThTimeStepBMP.Size = new System.Drawing.Size(140, 23);
     this.textBoxThTimeStepBMP.TabIndex = 99;
     this.textBoxThTimeStepBMP.Text = "10%";
     this.textBoxThTimeStepBMP.TextChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // label38
     //
     this.label38.AutoSize = true;
     this.label38.Location = new System.Drawing.Point(3, 170);
     this.label38.Name = "label38";
     this.label38.Size = new System.Drawing.Size(76, 15);
     this.label38.TabIndex = 100;
     this.label38.Text = "Time Range :";
     //
     // label39
     //
     this.label39.AutoSize = true;
     this.label39.ForeColor = System.Drawing.SystemColors.WindowFrame;
     this.label39.Location = new System.Drawing.Point(153, 82);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(228, 15);
     this.label39.TabIndex = 102;
     this.label39.Text = "examples : {Best} or 00:00:01 or 10% or 120";
     //
     // textBoxThTimeRangeBMP
     //
     this.textBoxThTimeRangeBMP.Location = new System.Drawing.Point(7, 188);
     this.textBoxThTimeRangeBMP.Name = "textBoxThTimeRangeBMP";
     this.textBoxThTimeRangeBMP.Size = new System.Drawing.Size(140, 23);
     this.textBoxThTimeRangeBMP.TabIndex = 101;
     this.textBoxThTimeRangeBMP.Text = "90%";
     this.textBoxThTimeRangeBMP.TextChanged += new System.EventHandler(this.ThumbnailSettingsChanged);
     //
     // checkBoxGenThumbnailsBMP
     //
     this.checkBoxGenThumbnailsBMP.AutoSize = true;
     this.checkBoxGenThumbnailsBMP.Location = new System.Drawing.Point(15, 18);
     this.checkBoxGenThumbnailsBMP.Name = "checkBoxGenThumbnailsBMP";
     this.checkBoxGenThumbnailsBMP.Size = new System.Drawing.Size(167, 19);
     this.checkBoxGenThumbnailsBMP.TabIndex = 113;
     this.checkBoxGenThumbnailsBMP.Text = "Generate BMP Thumbnails";
     this.checkBoxGenThumbnailsBMP.UseVisualStyleBackColor = true;
     this.checkBoxGenThumbnailsBMP.CheckedChanged += new System.EventHandler(this.checkBoxGenThumbnailsBMP_CheckedChanged);
     //
     // labelsummaryjob
     //
     this.labelsummaryjob.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.labelsummaryjob.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelsummaryjob.Location = new System.Drawing.Point(20, 49);
     this.labelsummaryjob.Name = "labelsummaryjob";
     this.labelsummaryjob.Size = new System.Drawing.Size(614, 41);
     this.labelsummaryjob.TabIndex = 76;
     this.labelsummaryjob.Text = "You will submit n jobs with n tasks";
     //
     // labelProcessorVersion
     //
     this.labelProcessorVersion.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelProcessorVersion.ForeColor = System.Drawing.SystemColors.WindowFrame;
     this.labelProcessorVersion.Location = new System.Drawing.Point(628, 38);
     this.labelProcessorVersion.Name = "labelProcessorVersion";
     this.labelProcessorVersion.Size = new System.Drawing.Size(124, 20);
     this.labelProcessorVersion.TabIndex = 77;
     this.labelProcessorVersion.Text = "Version {0}";
     this.labelProcessorVersion.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // checkBoxDisableAutoDeinterlacing
     //
     this.checkBoxDisableAutoDeinterlacing.AutoSize = true;
     this.checkBoxDisableAutoDeinterlacing.Location = new System.Drawing.Point(16, 219);
     this.checkBoxDisableAutoDeinterlacing.Name = "checkBoxDisableAutoDeinterlacing";
     this.checkBoxDisableAutoDeinterlacing.Size = new System.Drawing.Size(168, 19);
     this.checkBoxDisableAutoDeinterlacing.TabIndex = 90;
     this.checkBoxDisableAutoDeinterlacing.Text = "Disable auto de-interlacing";
     this.checkBoxDisableAutoDeinterlacing.UseVisualStyleBackColor = true;
     this.checkBoxDisableAutoDeinterlacing.CheckedChanged += new System.EventHandler(this.checkBoxDisableAutoDeinterlacing_CheckedChanged);
     //
     // buttonJobOptions
     //
     this.buttonJobOptions.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonJobOptions.Location = new System.Drawing.Point(596, 520);
     this.buttonJobOptions.Name = "buttonJobOptions";
     this.buttonJobOptions.Size = new System.Drawing.Size(160, 27);
     this.buttonJobOptions.TabIndex = 75;
     this.buttonJobOptions.Text = "Job options...";
     this.buttonJobOptions.UseVisualStyleBackColor = true;
     //
     // timeControlEndTime
     //
     this.timeControlEndTime.BackColor = System.Drawing.SystemColors.Window;
     this.timeControlEndTime.DisplayTrackBar = false;
     this.timeControlEndTime.Enabled = false;
     this.timeControlEndTime.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.timeControlEndTime.Label1 = "";
     this.timeControlEndTime.Label2 = "End time";
     this.timeControlEndTime.Location = new System.Drawing.Point(44, 98);
     this.timeControlEndTime.Max = System.TimeSpan.Parse("10675199.02:48:05.4775807");
     this.timeControlEndTime.Min = System.TimeSpan.Parse("00:00:00");
     this.timeControlEndTime.Name = "timeControlEndTime";
     this.timeControlEndTime.ScaledFirstTimestampOffset = ((ulong)(0ul));
     this.timeControlEndTime.Size = new System.Drawing.Size(441, 58);
     this.timeControlEndTime.TabIndex = 7;
     this.timeControlEndTime.TimeScale = null;
     this.timeControlEndTime.TotalDuration = System.TimeSpan.Parse("1.00:00:00");
     this.timeControlEndTime.ValueChanged += new System.EventHandler(this.timeControlDuration_ValueChanged);
     //
     // timeControlStartTime
     //
     this.timeControlStartTime.BackColor = System.Drawing.SystemColors.Window;
     this.timeControlStartTime.DisplayTrackBar = false;
     this.timeControlStartTime.Enabled = false;
     this.timeControlStartTime.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.timeControlStartTime.Label1 = "";
     this.timeControlStartTime.Label2 = "Start time";
     this.timeControlStartTime.Location = new System.Drawing.Point(44, 40);
     this.timeControlStartTime.Max = System.TimeSpan.Parse("10675199.02:48:05.4775807");
     this.timeControlStartTime.Min = System.TimeSpan.Parse("00:00:00");
     this.timeControlStartTime.Name = "timeControlStartTime";
     this.timeControlStartTime.ScaledFirstTimestampOffset = ((ulong)(0ul));
     this.timeControlStartTime.Size = new System.Drawing.Size(441, 58);
     this.timeControlStartTime.TabIndex = 6;
     this.timeControlStartTime.TimeScale = null;
     this.timeControlStartTime.TotalDuration = System.TimeSpan.Parse("1.00:00:00");
     this.timeControlStartTime.ValueChanged += new System.EventHandler(this.timeControlStartTime_ValueChanged);
     //
     // EncodingAMEStandard
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.Window;
     this.CancelButton = this.buttonCancel;
     this.ClientSize = new System.Drawing.Size(784, 661);
     this.Controls.Add(this.labelProcessorVersion);
     this.Controls.Add(this.labelsummaryjob);
     this.Controls.Add(this.buttonJobOptions);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.textboxoutputassetname);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.textBoxJobName);
     this.Controls.Add(this.label34);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.moreinfoame);
     this.Controls.Add(this.tabControl1);
     this.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "EncodingAMEStandard";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Media Encoder Standard";
     this.Load += new System.EventHandler(this.EncodingAMEStandard_Load);
     this.Shown += new System.EventHandler(this.EncodingAMEStandard_Shown);
     this.panel1.ResumeLayout(false);
     this.tabControl1.ResumeLayout(false);
     this.TabPagePreset.ResumeLayout(false);
     this.TabPagePreset.PerformLayout();
     this.TabPageFeatures.ResumeLayout(false);
     this.TabPageFeatures.PerformLayout();
     this.tabPageThJPG.ResumeLayout(false);
     this.tabPageThJPG.PerformLayout();
     this.panelThumbnailsJPG.ResumeLayout(false);
     this.panelThumbnailsJPG.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownThHeightJPG)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownThWidthJPG)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownThQuality)).EndInit();
     this.tabPageThPNG.ResumeLayout(false);
     this.tabPageThPNG.PerformLayout();
     this.panelThumbnailsPNG.ResumeLayout(false);
     this.panelThumbnailsPNG.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownThHeightPNG)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownThWidthPNG)).EndInit();
     this.tabPageThBMP.ResumeLayout(false);
     this.tabPageThBMP.PerformLayout();
     this.panelThumbnailsBMP.ResumeLayout(false);
     this.panelThumbnailsBMP.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownThHeightBMP)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownThWidthBMP)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #41
0
 // Use this for initialization
 void Start()
 {
     timeControl = GetComponent<TimeControl> ();
     timeControl.ClearTimer (time);
 }