diff --git a/electron/ipc.js b/electron/ipc.js index 99a7616..af00937 100644 --- a/electron/ipc.js +++ b/electron/ipc.js @@ -20,9 +20,16 @@ export default function initIPC() { return startServer({ interceptCallback: phase => async (req, res) => { if (phase === 'response' && res?._data?.headers?.['content-type'] == 'video/mp4') { + const fixUrl = {} + if(req.fullUrl().includes("video.qq.com")){ + fixUrl.fixUrl = req.fullUrl().replace(/\/20302\//g, '/20304/'); + fixUrl.hdUrl = fixUrl.fixUrl.replace(/(\?|&)(?!(encfilekey=|token=))[^&]+/g, ''); + } + win?.webContents?.send?.('VIDEO_CAPTURE', { url: req.fullUrl(), size: res?._data?.headers?.['content-length'] ?? 0, + ...fixUrl }); } }, diff --git a/package.json b/package.json index 99cf124..e00721b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wechat-video-downloader", - "version": "1.0.0", + "version": "1.0.1", "description": "", "main": "./build-electron/index.js", "homepage": "./", @@ -34,7 +34,7 @@ "concurrently": "^7.1.0", "cross-env": "^7.0.3", "customize-cra": "^1.0.0", - "electron": "^18.2.3", + "electron": "^26.1.0", "electron-builder": "^23.0.3", "electron-icon-builder": "^2.0.1", "husky": "^8.0.1", diff --git a/src/App.jsx b/src/App.jsx index 259502d..1299ab1 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -60,8 +60,8 @@ function App() { title: '操作', dataIndex: 'action', key: 'action', - width: '200px', - render: (_, { url, fullFileName }) => ( + width: '210px', + render: (_, { url, hdUrl, fixUrl, fullFileName, }) => (
{fullFileName ? ( )}