mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-22 11:19:25 +01:00
11 lines
328 B
C#
11 lines
328 B
C#
|
|
|
|
namespace Flowframes.IO
|
|
{
|
|
class Formats
|
|
{
|
|
public static string[] supported = { ".mp4", ".m4v", ".gif", ".mkv", ".mpg", ".webm", ".avi", ".wmv", ".ts", ".bik" }; // Supported formats
|
|
public static string[] noEncodeSupport = { ".bik" }; // Files that have no encode support, but decode
|
|
}
|
|
}
|