mirror of
https://github.com/lecepin/WeChatVideoDownloader.git
synced 2025-04-05 20:11:10 +08:00
feat: fmt
This commit is contained in:
parent
3f56e8ce6e
commit
467d2de97a
@ -36,9 +36,10 @@ export default function initIPC() {
|
||||
});
|
||||
|
||||
ipcMain.handle('invoke_下载视频', async (event, { url, decodeKey, savePath }) => {
|
||||
console.log(url,decodeKey);
|
||||
console.log(url, decodeKey);
|
||||
return downloadFile(
|
||||
url,decodeKey,
|
||||
url,
|
||||
decodeKey,
|
||||
`${savePath}/${Date.now()}.mp4`,
|
||||
throttle(value => win?.webContents?.send?.('e_进度变化', value), 1000),
|
||||
).catch(err => {
|
||||
|
@ -11,8 +11,7 @@ if (process.platform === 'win32') {
|
||||
process.env.OPENSSL_CONF = CONFIG.OPEN_SSL_CNF_PATH;
|
||||
}
|
||||
|
||||
|
||||
const injection_script =`
|
||||
const injection_script = `
|
||||
(function () {
|
||||
if (window.wvds !== undefined) {
|
||||
return
|
||||
@ -68,11 +67,7 @@ const injection_script =`
|
||||
})()
|
||||
`;
|
||||
|
||||
|
||||
export async function startServer({
|
||||
win,
|
||||
setProxyErrorCallback = f => f,
|
||||
}) {
|
||||
export async function startServer({ win, setProxyErrorCallback = f => f }) {
|
||||
const port = await getPort();
|
||||
|
||||
return new Promise(async (resolve, reject) => {
|
||||
@ -99,12 +94,12 @@ export async function startServer({
|
||||
{
|
||||
phase: 'request',
|
||||
hostname: 'aaaa.com',
|
||||
as: 'json'
|
||||
as: 'json',
|
||||
},
|
||||
(req, res) => {
|
||||
res.string = "ok";
|
||||
res.string = 'ok';
|
||||
res.statusCode = 200;
|
||||
win?.webContents?.send?.('VIDEO_CAPTURE', req.json)
|
||||
win?.webContents?.send?.('VIDEO_CAPTURE', req.json);
|
||||
},
|
||||
);
|
||||
|
||||
@ -112,11 +107,11 @@ export async function startServer({
|
||||
{
|
||||
phase: 'response',
|
||||
hostname: 'res.wx.qq.com',
|
||||
as: "string"
|
||||
as: 'string',
|
||||
},
|
||||
async (req, res) => {
|
||||
if (req.url.includes("polyfills.publish")) {
|
||||
res.string = res.string + "\n" + injection_script;
|
||||
if (req.url.includes('polyfills.publish')) {
|
||||
res.string = res.string + '\n' + injection_script;
|
||||
}
|
||||
},
|
||||
);
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "wechat-video-downloader",
|
||||
"version": "1.0.1",
|
||||
"version": "2.0.0",
|
||||
"description": "",
|
||||
"main": "./build-electron/index.js",
|
||||
"homepage": "./",
|
||||
|
16
src/App.jsx
16
src/App.jsx
@ -61,7 +61,7 @@ function App() {
|
||||
dataIndex: 'action',
|
||||
key: 'action',
|
||||
width: '210px',
|
||||
render: (_, { url, decodeKey, hdUrl, fixUrl, fullFileName, }) => (
|
||||
render: (_, { url, decodeKey, hdUrl, fixUrl, fullFileName }) => (
|
||||
<div>
|
||||
{fullFileName ? (
|
||||
<Button
|
||||
@ -80,23 +80,13 @@ function App() {
|
||||
icon={<DownloadOutlined />}
|
||||
type="primary"
|
||||
onClick={() => {
|
||||
send({ type: 'e_下载', url: (hdUrl || url), decodeKey: decodeKey });
|
||||
send({ type: 'e_下载', url: hdUrl || url, decodeKey: decodeKey });
|
||||
}}
|
||||
size="small"
|
||||
>
|
||||
{hdUrl ? "高清" : ""}下载
|
||||
解密下载
|
||||
</Button>
|
||||
)}
|
||||
|
||||
<Button
|
||||
icon={<PlaySquareOutlined />}
|
||||
onClick={() => {
|
||||
send({ type: 'e_预览', url: (fixUrl || url) });
|
||||
}}
|
||||
size="small"
|
||||
>
|
||||
预览
|
||||
</Button>
|
||||
</div>
|
||||
),
|
||||
},
|
||||
|
17
src/fsm.js
17
src/fsm.js
@ -218,19 +218,28 @@ export default createMachine(
|
||||
},
|
||||
},
|
||||
actions: {
|
||||
action_视频捕获: actions.assign(({ captureList }, { url, size, description, decodeKey, ...other }) => {
|
||||
captureList.push({ size, url, prettySize: prettyBytes(+size), description, decodeKey, ...other });
|
||||
action_视频捕获: actions.assign(
|
||||
({ captureList }, { url, size, description, decodeKey, ...other }) => {
|
||||
captureList.push({
|
||||
size,
|
||||
url,
|
||||
prettySize: prettyBytes(+size),
|
||||
description,
|
||||
decodeKey,
|
||||
...other,
|
||||
});
|
||||
|
||||
return {
|
||||
captureList: uniqBy(captureList, 'url'),
|
||||
};
|
||||
}),
|
||||
},
|
||||
),
|
||||
action_清空捕获记录: actions.assign(() => {
|
||||
return {
|
||||
captureList: [],
|
||||
};
|
||||
}),
|
||||
action_设置当前地址: actions.assign((_, { url,decodeKey }) => {
|
||||
action_设置当前地址: actions.assign((_, { url, decodeKey }) => {
|
||||
return {
|
||||
currentUrl: url,
|
||||
decodeKey: decodeKey,
|
||||
|
Loading…
x
Reference in New Issue
Block a user