Click here to Skip to main content
15,886,801 members
Articles / Multimedia

Multimedia Transcoding Across Multiple Computers with LEADTOOLS

7 Jan 2013CPOL4 min read 35.1K   442   5  
The benefits of grid and distributed computing are well established and indisputable.  However, implementing them can be a nightmare – converting audio/video files in separate chunks can result in video hiccups and out of sync audio – but not with LEADTOOLS!

This article is in the Product Showcase section for our sponsors at CodeProject. These articles are intended to provide you with information on products and services that we consider useful and of value to developers.

namespace MultiMachineTranscoding
{
   partial class FrmTranscoder
   {
      /// <summary>
      /// Required designer variable.
      /// </summary>
      private System.ComponentModel.IContainer components = null;

      /// <summary>
      /// Clean up any resources being used.
      /// </summary>
      /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
      protected override void Dispose(bool disposing)
      {
         if (disposing && (components != null))
         {
            components.Dispose();
         }
         base.Dispose(disposing);
      }

      #region Windows Form Designer generated code

      /// <summary>
      /// Required method for Designer support - do not modify
      /// the contents of this method with the code editor.
      /// </summary>
      private void InitializeComponent()
      {
         this._pbPreview = new System.Windows.Forms.PictureBox();
         this._pbProgress = new System.Windows.Forms.ProgressBar();
         this.convertCtrl1 = new Leadtools.Multimedia.ConvertCtrl();
         ((System.ComponentModel.ISupportInitialize)(this._pbPreview)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.convertCtrl1)).BeginInit();
         this.SuspendLayout();
         // 
         // _pbPreview
         // 
         this._pbPreview.Location = new System.Drawing.Point(35, 31);
         this._pbPreview.Name = "_pbPreview";
         this._pbPreview.Size = new System.Drawing.Size(218, 154);
         this._pbPreview.TabIndex = 0;
         this._pbPreview.TabStop = false;
         // 
         // _pbProgress
         // 
         this._pbProgress.Location = new System.Drawing.Point(9, 212);
         this._pbProgress.Name = "_pbProgress";
         this._pbProgress.Size = new System.Drawing.Size(266, 27);
         this._pbProgress.TabIndex = 1;
         // 
         // convertCtrl1
         // 
         this.convertCtrl1.AudioCompressors.Selection = -1;
         this.convertCtrl1.Location = new System.Drawing.Point(258, 193);
         this.convertCtrl1.Name = "convertCtrl1";
         this.convertCtrl1.OcxState = null;
         this.convertCtrl1.Size = new System.Drawing.Size(24, 19);
         this.convertCtrl1.SourceFile = null;
         this.convertCtrl1.TabIndex = 2;
         this.convertCtrl1.TargetDevices.Selection = -1;
         this.convertCtrl1.TargetFile = null;
         this.convertCtrl1.Text = "convertCtrl1";
         this.convertCtrl1.VideoCompressors.Selection = -1;
         this.convertCtrl1.WMProfile.Description = "";
         this.convertCtrl1.WMProfile.Name = "";
         // 
         // FrmTranscoder
         // 
         this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
         this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
         this.ClientSize = new System.Drawing.Size(284, 262);
         this.Controls.Add(this.convertCtrl1);
         this.Controls.Add(this._pbProgress);
         this.Controls.Add(this._pbPreview);
         this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
         this.Name = "FrmTranscoder";
         this.Text = "FrmTranscoder";
         this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmTranscoder_FormClosing);
         this.Load += new System.EventHandler(this.FrmTranscoder_Load);
         ((System.ComponentModel.ISupportInitialize)(this._pbPreview)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.convertCtrl1)).EndInit();
         this.ResumeLayout(false);

      }

      #endregion

      private System.Windows.Forms.PictureBox _pbPreview;
      private System.Windows.Forms.ProgressBar _pbProgress;
      private Leadtools.Multimedia.ConvertCtrl convertCtrl1;
   }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Help desk / Support LEAD Technologies, Inc.
United States United States
Since 1990, LEAD has established itself as the world's leading provider of software development toolkits for document, medical, multimedia, raster and vector imaging. LEAD's flagship product, LEADTOOLS, holds the top position in every major country throughout the world and boasts a healthy, diverse customer base and strong list of corporate partners including some of the largest and most influential organizations from around the globe. For more information, contact sales@leadtools.com or support@leadtools.com.
This is a Organisation (No members)


Comments and Discussions