Sorry! This product is not available.
Please click here to visit main page for the list of all available products and solutions.
Product Links:
Imports System.Diagnostics Imports BytescoutSWFToVideo Class Program Friend Shared Sub Main(args As String()) ' Create an instance of SWFToVideo ActiveX object Dim converter As 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 = "" ' Set input SWF file converter.InputSWFFileName = "circles.swf" ' Set output video file 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") End Sub End Class
using System.Diagnostics; using BytescoutSWFToVideo; namespace SwfToUncompressedAvi { class Program { static void Main(string[] args) { // 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 = ""; // set input SWF file converter.InputSWFFileName = "circles.swf"; // 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"); } } }