Example #1
0
        public void ShiftSrt()
        {
            const string filePath = @"C:\Users\Adrian\Downloads\Rick and Morty S01E04  M. Night Shaym-Aliens! (Uncensored) (1920x1080) [Phr0stY].srt";
            var          srtItems = SrtHandler.ReadSrt(new System.IO.FileStream(filePath, System.IO.FileMode.Open));

            SrtHandler.ShiftSrt(srtItems, 1000);
            SrtHandler.WriteSrt(srtItems, new System.IO.FileStream(filePath, System.IO.FileMode.Create));
        }
Example #2
0
        public void ShiftWithMultiplierSrt()
        {
            const string filePath = @"C:\Users\Adrian\Downloads\The Last Unicorn 1080p.srt";
            var          srtItems = SrtHandler.ReadSrt(new System.IO.FileStream(filePath, System.IO.FileMode.Open));

            SrtHandler.ShiftSrt(srtItems, 23.976024m / 24.000384m, 0);
            SrtHandler.WriteSrt(srtItems, new System.IO.FileStream(filePath, System.IO.FileMode.Create));
        }