ByteScout SWF To Video SDK - C# - SWF to Lossless AVI - ByteScout

ByteScout SWF To Video SDK – C# – SWF to Lossless AVI

  • Home
  • /
  • Articles
  • /
  • ByteScout SWF To Video SDK – C# – SWF to Lossless AVI

SWF to lossless AVI in C# using ByteScout SWF To Video SDK

How to use ByteScout SWF To Video SDK for SWF to lossless AVI in C#

Writing of the code to SWF to lossless AVI in C# can be done by developers of any level using ByteScout SWF To Video SDK. SWF to lossless AVI in C# can be implemented with ByteScout SWF To Video SDK. ByteScout SWF To Video SDK is the SDK that is capable of converting SWF macromedia files into WMV and AVI video. Supports dynamic flash movies, can transmit variable values. Options to change output video size, framerate, quality are available.

The SDK samples like this one below explain how to quickly make your application do SWF to lossless AVI in C# with the help of ByteScout SWF To Video SDK. C# sample code is all you need: copy and paste the code to your C# application’s code editor, add a reference to ByteScout SWF To Video SDK (if you haven’t added yet) and you are ready to go! Test C# sample code examples whether they respond your needs and requirements for the project.

Our website provides free trial version of ByteScout SWF To Video SDK. It comes along with all these source code samples with the goal to help you with your C# application implementation.

On-demand (REST Web API) version:
 Web API (on-demand version)

On-premise offline SDK for Windows:
 60 Day Free Trial (on-premise)

Program.cs
      
// x64 IMPORTANT NOTE: set CPU to x86 to build in x86 mode. WHY? Because flash is not supported on x64 platform currently at all using System.Diagnostics; using BytescoutSWFToVideo; namespace SwfToLosslessAvi { class Program { static void Main(string[] args) { // Please make sure the Bytescout Lossless Video Codec is installed on the computer // Bytescout lossless video codec is available for free from // https://bytescout.com/lossless_video_codec_for_avi.html // Create an instance of SWFToVideo ActiveX object SWFToVideo converter = new SWFToVideo(); // Set debug log //converter.SetLogFile("log.txt"); // Register SWFToVideo converter.RegistrationName = "demo"; converter.RegistrationKey = "demo"; // Set empty video codec name to get the output video uncompressed converter.CurrentVideoCodecName = "bytescout lossless"; // set input SWF file converter.InputSWFFileName = "Shapes.swf"; // you may calculate output video duration using information about the the source swf movie // WARNING #1: this method to calculate the output video duration is not working for movies with dynamic scenes // and interactive scripts as in these movies it is not possible to calculate the precise duration of the movie // WARNING #2: you should set the input swf or flv filename (or url) before this calculation // So the movie duration is calculated as the following: // as swf frame count (number of frames in the swf) / movieFPS (frames per second defined in swf) // and then multiplied by 1000 (as we are setting the .ConverstionTimeout in milliseconds) // as the following (uncomment if you want to set the length of the output video to the same as the original swf) // or as the following source code (uncomment to enable): // converter.ConversionTimeout = 1000 * (converter.FrameCount / converter.MovieFPS) // set output AVI video filename converter.OutputVideoFileName = "result.avi"; // Set output movie dimensions converter.OutputWidth = 320; converter.OutputHeight = 240; // Run conversion converter.RunAndWait(); // Open the result movie in default media player Process.Start("result.avi"); } } }

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout SWF To Video SDK Home Page

Explore ByteScout SWF To Video SDK Documentation

Explore Samples

Sign Up for ByteScout SWF To Video SDK Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

VIDEO

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout SWF To Video SDK Home Page

Explore ByteScout SWF To Video SDK Documentation

Explore Samples

Sign Up for ByteScout SWF To Video SDK Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next