我试图使用electron来构建一个简单的视频显示应用程序。然而,我一直在尝试使用适当的registerSchemesAslogged方法在渲染器中显示视频时遇到了巨大的困难。我目前没有在控制台中显示与net无法找到文件有关的错误,所以我觉得我有正确的,但我在渲染器线程上得到的是黑屏。
如果你能快速查看一下我的代码和日志输出,以确保我没有遗漏一些明显的东西,那将是一个很大的帮助。
主要.ts的摘要
import path from 'path';
import { app, BrowserWindow, shell, ipcMain, protocol,net } from 'electron';
import { autoUpdater } from 'electron-updater';
import log from 'electron-log';
import MenuBuilder from './menu';
import { resolveHtmlPath } from './util';
import fs from 'fs'
protocol.registerSchemesAsPrivileged([
{
scheme: 'appfile',
privileges: {
standard: true,
secure: true,
supportFetchAPI: true,
bypassCSP: true,
},
},
]);
app.whenReady().then(() => {
protocol.handle('appfile', (request) => {
// Get the file path from the request url
const filePath = request.url.replace('appfile://', '');
// Resolve the file path to the absolute file path
//const absoluteFilePath = path.resolve(filePath);
// Fetch the file
console.log(filePath);
return net.fetch(`file:///${filePath}`);
});
});
字符串
App.tsx:
import { MemoryRouter as Router, Routes, Route } from 'react-router-dom';
import icon from '../../assets/icon.svg';
import './App.css';
import { useState, useEffect } from 'react';
function Hello() {
//const [videoSource, setVideoSource] = useState<string | null>(null);
return (
<body>
<video id="videoPlayer" width="100%" height="100%" autoPlay muted loop>
<source src="appfile:///home/user/Desktop/project/videos/video1.mp4" />
</video>
</body>
);
}
export default function App() {
return (
<Router>
<Routes>
<Route path="/" element={<Hello />} />
</Routes>
</Router>
);
}
型
通常会显示错误的控制台输出的嗅探器,(包括文件路径的控制台日志):
home/user/Desktop/project/videos/video1.mp4
[14091:0823/181240.250752:ERROR:CONSOLE(2)] "Electron sandboxed_renderer.bundle.js script failed to run", source: node:electron/js2c/sandbox_bundle (2)
[14091:0823/181240.250873:ERROR:CONSOLE(2)] "TypeError: object null is not iterable (cannot read property Symbol(Symbol.iterator))", source: node:electron/js2c/sandbox_bundle (2)
型
再次感谢提前。
1条答案
按热度按时间unhi4e5o1#
在过去的3天里,在阅读了十几页,github问题和文档之后,我终于弄清楚了如何使其工作。您需要在创建自定义协议时将bypassCSP and stream指定为
true
。基于electron-quick-start项目,我创建了一个自定义的
animation://
协议来从文件系统(/tmp/video.mp4
)读取。main.js
:字符串
index.html
:型