iiFLC is a C# library for interacting with FLC files, originally created by Autodesk Animator.
var input = @"D:\Games\MAX\ATRANS02.FLC";
var output = @"D:\data\max\ATRANS02.avi";
var avi = FlicReader.Read(input);
File.WriteAllBytes(output, avi);Compiled downloads are not available.
To clone and run this application, you'll need Git and .NET installed on your computer. From your command line:
# Clone this repository
$ git clone https://github.com/btigi/iiFLC
# Go into the repository
$ cd src
# Build the app
$ dotnet build
iiFLC is licenced under the MIT License. Full licence details are available in licence.md
References