OdessaGUIProject.MainModel.GetVideoExtensions C# (CSharp) Method

GetVideoExtensions() static private method

Get a list of video file extensions from the MIME database (in lower case)
static private GetVideoExtensions ( ) : List
return List
        internal static List<string> GetVideoExtensions()
        {
            var ret = new List<string>()
                {
                    ".mp4",
                    ".mov",
                    ".mts",
                    ".m2ts",
                    ".m2t",
                    ".m4v",
                    ".avi"
                };

            return ret;
        }