This commit is contained in:
2023-07-29 17:43:19 +01:00
parent 4f690b114d
commit c5c9c54518
24 changed files with 985 additions and 12 deletions

View File

@ -0,0 +1,13 @@
namespace NostrStreamer.Services.Dvr;
public interface IDvrStore
{
/// <summary>
/// Upload a DVR recording to storage and return the URL
/// </summary>
/// <param name="source"></param>
/// <returns></returns>
Task<UploadResult> UploadRecording(Uri source);
}
public record UploadResult(Uri Result, double Duration);