add custom channel stream selector system (#2076)

* add some basic channel stream selector models

* change windows ffmpeg url

* implement basic stream selection

* fixes
This commit is contained in:
Jason Dove
2025-06-27 03:00:59 +00:00
committed by GitHub
parent c2769a08b4
commit f80069bb97
50 changed files with 35986 additions and 115 deletions
@@ -57,6 +57,12 @@ public class FakeLocalFileSystem : ILocalFileSystem
public Unit EmptyFolder(string folder) => Unit.Default;
public async Task<string> ReadAllText(string path) => await _files
.Filter(f => f.Path == path)
.HeadOrNone()
.Select(f => f.Contents)
.IfNoneAsync(string.Empty);
public Task<byte[]> ReadAllBytes(string path) => TestBytes.AsTask();
private static List<DirectoryInfo> Split(DirectoryInfo path)