Skip to content

Commit

Permalink
Merge pull request #66 from caorushizi/readme
Browse files Browse the repository at this point in the history
readme
  • Loading branch information
caorushizi authored Jan 15, 2024
2 parents fa8d4be + f8ade3f commit 838ccaf
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
APP_NAME=media-downloader
APP_ID=mediago.ziying.site
APP_COPYRIGHT=caorushizi
APP_VERSION=2.0.2
APP_VERSION=2.0.3-beta.1

APP_SERVER_PORT=8433
55 changes: 41 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,52 @@
# media-downloader
<img src="https://socialify.git.ci/caorushizi/m3u8-downloader/image?font=Inter&forks=1&issues=1&language=1&name=1&owner=1&pattern=Circuit%20Board&pulls=1&stargazers=1&theme=Auto" alt="MediaDownloader"/>

m3u8 视频在线提取工具 流媒体下载 m3u8 下载 桌面客户端 windows mac。
可以直接在线获取 m3u8 链接地址,无需使用使用网络抓包,无需安装浏览器插件,可以直接带出请求标头……详情请参考[使用帮助](https://downloader.caorushizi.cn/guides.html?form=github)
<div align="center">
<h1>Media downloader</h1>
<a href="https://downloader.caorushizi.cn/guides.html?form=github">快速开始</a>
<span>&nbsp;&nbsp;&nbsp;&nbsp;</span>
<a href="https://downloader.caorushizi.cn?form=github">官网</a>
<span>&nbsp;&nbsp;&nbsp;&nbsp;</span>
<a href="https://downloader.caorushizi.cn/documents.html?form=github">文档</a>
<span>&nbsp;&nbsp;&nbsp;&nbsp;</span>
<a href="https://github.com/caorushizi/m3u8-downloader/discussions">Discussions</a>

## 上手指南
<hr />
</div>

以下指南将帮助你在本地机器上安装和运行该项目,进行开发和测试。关于如何将该项目部署到在线环境,请参考部署小节。
## Intro

## 安装要求
本项目支持 m3u8 视频在线提取工具 流媒体下载 m3u8 下载。

运行代码需要 node 和 pnpm,node 需要在官网下载安装,pnpm 可以通过`npm i -g pnpm`安装。
- **&nbsp; 无需抓包**: 使用软件自带浏览器可以轻松嗅探网页中的视频资源,通过嗅探到的资源列表选择自己想要下载的资源,简单快速。
- **📱&nbsp; 移动播放**: 可以轻松无缝的在PC和移动设备之前切换,下载完成后即可使用手机观看视频。
- **⚡️&nbsp; 批量下载**: 支持同时下载多个视频和直播资源,高速带宽不闲置。

## Quickstart

运行代码需要 node 、 pnpm 和 go,node、go 需要在官网下载安装,pnpm 可以通过`npm i -g pnpm`安装。

## 运行代码

安装依赖 `pnpm i`
```shell
# 代码下载
git clone --recursive https://github.com/caorushizi/m3u8-downloader.git

# 安装依赖
pnpm i

# 开发环境
pnpm dev

# 打包运行
pnpm release
```

开发环境 `pnpm run dev`
## Releases

打包运行 `pnpm run release`
**v2.0.1(2023.7.9 发布)**

## 下载链接
- [windows media-downloader v2.0.2](https://github.com/caorushizi/m3u8-downloader/releases/download/v2.0.2/media-downloader-setup-2.0.2.exe)
- [macos media-downloader v2.0.2](https://github.com/caorushizi/m3u8-downloader/releases/download/v2.0.2/media-downloader-setup-2.0.2.dmg)

**v2.0.1(2023.7.1 发布)**

Expand All @@ -45,11 +72,11 @@ m3u8 视频在线提取工具 流媒体下载 m3u8 下载 桌面客户端 window

## 软件截图

![首页](https://raw.githubusercontent.com/caorushizi/m3u8-downloader/master/screenshot/home-page.png)
![首页](https://static.ziying.site/v2.0.3-beta-home.png)

![设置页面](https://raw.githubusercontent.com/caorushizi/m3u8-downloader/master/screenshot/setting-page.png)
![设置页面](https://static.ziying.site/v2.0.3-beta-settings.png)

![资源提取](https://raw.githubusercontent.com/caorushizi/m3u8-downloader/master/screenshot/browser-page.png)
![资源提取](https://static.ziying.site/v2.0.3-beta-extract.png)

## 技术栈

Expand Down
6 changes: 4 additions & 2 deletions docs/.vitepress/theme/style/var.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,13 @@
--vp-button-brand-text: #f2f7fd;
--vp-button-brand-bg: #2a82f6;

--vp-button-brand-active-border: #5e9ef3;
--vp-button-brand-active-text: #fff;
--vp-button-brand-active-bg: #409eff;

--vp-button-brand-hover-border: #5e9ef3;
--vp-button-brand-hover-text: #fff;
--vp-button-brand-hover-bg: #2a82f6;

--vp-button-brand-active-border: #f6ceec;

--vp-c-brand: #2a82f6;
}
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ features:
details: 可以轻松无缝的在PC和移动设备之前切换,下载完成后即可使用手机观看视频。
- icon: ⚡️
title: 支持批量下载
details: 支持同时最多下载10个视频和直播资源,高速带宽不闲置。
details: 支持同时下载多个视频和直播资源,高速带宽不闲置。
---
2 changes: 1 addition & 1 deletion packages/main/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "media-downloader",
"version": "2.0.2",
"version": "2.0.3-beta.1",
"description": "在线视频下载器",
"main": "main/index.js",
"author": "",
Expand Down

0 comments on commit 838ccaf

Please sign in to comment.