Пользовательский веб-просмотр Blazor:
Код: Выделить всё
public class MyCustomWebview : BlazorWebView
{
public override IFileProvider CreateFileProvider(string contentRootDir)
{
var contentPath = Path.Combine(FileSystem.Current.AppDataDirectory, FolderConstants.ContentFolder);
Directory.CreateDirectory(contentPath);
var lPhysicalFiles = new PhysicalFileProvider(Path.Combine(FileSystem.Current.AppDataDirectory, FolderConstants.ContentFolder));
return new CompositeFileProvider(lPhysicalFiles, base.CreateFileProvider(contentRootDir));
}
}
Код: Выделить всё
/data/user/0/com.mypackage.whatever/files/Content/VideoContent/MyVideo .mp4
И затем в моем компоненте Blazor он отображается как:
Код: Выделить всё
Your browser does not support the video tag
Подробнее здесь: https://stackoverflow.com/questions/784 ... -even-with
Мобильная версия