This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Drawing; | |
| using CodeKicker.BBCode; | |
| using CodeKicker.BBCode.SyntaxTree; | |
| namespace Xitsa | |
| { | |
| public static class Logger | |
| { | |
| static BBCodeParser GetParser() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| SET FFPROBE=C:\WorkProg\Encoders\ffmpeg\bin\ffprobe.exe | |
| SET JQ=C:\WorkProg\Jq\jq.exe | |
| %FFPROBE% -print_format json -show_chapters %1 2>nul | jq -r -f ParseChaptersM4b.jq |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| public class Program | |
| { | |
| public static void Main() | |
| { | |
| // 1. Генерируем выборку | |
| var sequence = GenerateSequence(11).Take(2000); |
OlderNewer