private static List <ViDetectItem> GetDefaultFileVi()
        {
            List <ViDetectItem> configItem = new List <ViDetectItem>();
            ViDetectItem        item;

            try
            {
                //1.ISRC
                string   filterISRC     = "VN,  US, VG, QM, CI, FR, GB, ES, BG, CA, DE, IT, HK, QZ, NO, RU, SE, TC, TW, CH";
                string[] strFilterISRCs = filterISRC.Split(',');
                for (int i = 0; i < strFilterISRCs.Length; i++)
                {
                    item            = new ViDetectItem();
                    item.ColumnName = Column.ISRC.ToString();
                    item.Value      = strFilterISRCs[i].Trim();
                    item.IsCheck    = true;
                    item.Order      = 1;
                    configItem.Add(item);
                }
                // 1.LABEL
                string   filterLABEL     = "Lang Van, Làng Văn,Thuy Nga, Thúy Nga, Thuy Nga Production, Thúy Anh, Rang Dong, RANGDONG, RangDong, Rang Dong INC, Mimosa, Kim Ngân, AudioSparx (some), Bai Hat Ru Cho Anh, VNG, Young Hit Young Beat, Elvis Phương, Walt Disney Records (some), LIDIO – SafeMUSE Sounds, Amy Music, SAIGON VAFACO, Saigon Broadcasting Television Network, Kawaiibi, Inédit / Maison des cultures du monde, Người Đẹp Bình Dương, Kiều Thơ Mellow,DONG GIAO PRO, Buda musique (some), TÂN HIỆP PHÁT, Caprice (some), Y Phuong, Horus Music Distribution (some), 1789537 Records DK, Thang Long AV, Nho oi, Lệ Hằng, TN Entertainment, JLP, Ho Entertainment & Events JSC, A Fang Entertainment, iMusician Digital, DONG GIAO, Dang Khoi, Dihavina, Doremi, Future Arts Production, Great Entertainment, Hãng Đĩa Thời Đại (Times Records), Ho Entertainment & Events, Kawaiibi, Kim Ngân, MT Entertainment, Người Đẹp Bình Dương Gold, SÀI GÒN VAFACO, SAI GON VAFACO, SÀI GÒN – VAFACO, SAIGON VAFACO., Thăng Long AV, Vega Media, VNG, TN Entertainment, Dong Dao, Dong Dao 2007, Best Of HKT, Do Bao, Wepro Entertainment, Tuan Trinh Production";
                string[] strFilterLABELs = filterLABEL.Split(',');
                for (int i = 0; i < strFilterLABELs.Length; i++)
                {
                    item            = new ViDetectItem();
                    item.ColumnName = Column.LABEL.ToString();
                    item.Value      = strFilterLABELs[i].Trim();
                    item.IsCheck    = true;
                    item.Order      = 2;
                    configItem.Add(item);
                }
                //1.Title
                item            = new ViDetectItem();
                item.ColumnName = Column.TITLE.ToString();
                item.Value      = "(vietnamese)";
                item.IsCheck    = true;
                item.Order      = 1;
                configItem.Add(item);
            }
            catch (Exception ex)
            {
            }
            return(configItem);
        }
        /// <summary>
        /// Compare is vietnamese
        /// </summary>
        /// <param name="i"></param>
        /// <param name="configItem"></param>
        /// <param name="CountTry"></param>
        /// <returns></returns>
        private static bool CompareVi(int i, ViDetectItem configItem, string CountTry = "")
        {
            bool check = false;

            switch (configItem.ColumnName)
            {
            //case "ID":
            //    if (Core.YoutubeFiles[i].ID == configItem.Value)
            //    {
            //        check = false;
            //    }
            //    break;

            //case "ARTIST":
            //    if (Core.YoutubeFiles[i].ARTIST == configItem.Value)
            //    {
            //        check = false;
            //    }
            //    break;
            //case "ALBUM":
            //    if (Core.YoutubeFiles[i].ALBUM == configItem.Value)
            //    {
            //        check = false;
            //    }
            //    break;
            case "ISRC":
                if (CountTry == configItem.Value)
                {
                    check = true;
                }
                break;

            case "LABEL":
                if (Core.YoutubeFiles[i].LABEL == configItem.Value)
                {
                    check = true;
                }
                break;

            case "TITLE":
                check = VnHelper.Detect(Core.YoutubeFiles[i].TITLE);
                if (check)
                {
                    int a = 1;
                }
                break;

            //case "COMP_ID":
            //    if (Core.YoutubeFiles[i].COMP_ID == configItem.Value)
            //    {
            //        check = false;
            //    }
            //    break;
            //case "COMP_TITLE":
            //    if (Core.YoutubeFiles[i].COMP_TITLE == configItem.Value)
            //    {
            //        check = false;
            //    }
            //    break;
            //case "COMP_ISWC":
            //    if (Core.YoutubeFiles[i].COMP_ISWC == configItem.Value)
            //    {
            //        check = false;
            //    }
            //    break;
            //case "COMP_WRITERS":
            //    if (Core.YoutubeFiles[i].COMP_WRITERS == configItem.Value)
            //    {
            //        check = false;
            //    }
            //    break;
            //case "COMP_CUSTOM_ID":
            //    if (Core.YoutubeFiles[i].COMP_CUSTOM_ID == configItem.Value)
            //    {
            //        check = false;
            //    }
            //    break;
            //case "QUANTILE":
            //    if (Core.YoutubeFiles[i].QUANTILE == configItem.Value)
            //    {
            //        check = false;
            //    }
            //    break;
            default:
                break;
            }

            return(check);
        }