Skip to content

Commit 10074b7

Browse files
committed
refactor: migrate site
1 parent 91ab356 commit 10074b7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+86
-90
lines changed

.github/ISSUE_TEMPLATE/bug_reporter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ labels: bug
66
assignees: ''
77
---
88

9-
<!-- 请至少阅读一遍 https://github.com/bilibili/WebAV/issues/60 -->
9+
<!-- 请至少阅读一遍 https://github.com/WebAV-Tech/WebAV/issues/60 -->
1010

1111
**描述问题**
1212

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: 常见问题答/FAQ
4-
url: https://bilibili.github.io/WebAV/guide/faq
4+
url: https://webav-tech.github.io/WebAV/guide/faq
55
about: 请先查阅 FAQ 以了解常见问题。

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ labels: enhancement
66
assignees: ''
77
---
88

9-
<!-- 请至少阅读一遍 https://github.com/bilibili/WebAV/issues/60 -->
9+
<!-- 请至少阅读一遍 https://github.com/WebAV-Tech/WebAV/issues/60 -->
1010

1111
**背景/功能描述**
1212

.github/ISSUE_TEMPLATE/question.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ labels: question
66
assignees: ''
77
---
88

9-
<!-- 请至少阅读一遍 https://github.com/bilibili/WebAV/issues/60 -->
9+
<!-- 请至少阅读一遍 https://github.com/WebAV-Tech/WebAV/issues/60 -->
1010

1111
**问题描述**
1212

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# [0.1.0](https://github.com/bilibili/WebAV/compare/v0.4.0...v0.3.3) (2024-03-31)
1+
# [0.1.0](https://github.com/WebAV-Tech/WebAV/compare/v0.4.0...v0.3.3) (2024-03-31)
22

33
**支持基本的裁剪功能**
44

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# WebAV
22

3-
![GitHub commit activity](https://img.shields.io/github/commit-activity/m/bilibili/WebAV)
3+
![GitHub commit activity](https://img.shields.io/github/commit-activity/m/WebAV-Tech/WebAV)
44
![NPM downloads](https://img.shields.io/npm/dm/@webav/av-cliper)
5-
[![Release](https://github.com/bilibili/WebAV/actions/workflows/release.yml/badge.svg)](https://github.com/bilibili/WebAV/actions/workflows/release.yml)
5+
[![Release](https://github.com/WebAV-Tech/WebAV/actions/workflows/release.yml/badge.svg)](https://github.com/WebAV-Tech/WebAV/actions/workflows/release.yml)
66

77
English | [中文](./README_CN.md)
88

@@ -26,20 +26,20 @@ _Compatible with Chrome 102+_
2626

2727
## DEMO
2828

29-
The WebAV project offers a variety of quick DEMO experiences. Visit the [DEMO Homepage](https://bilibili.github.io/WebAV/demo) to check the compatibility of your current device.
29+
The WebAV project offers a variety of quick DEMO experiences. Visit the [DEMO Homepage](https://webav-tech.github.io/WebAV/demo) to check the compatibility of your current device.
3030

3131
_Note: The test video resources are hosted on GitHub pages, so starting a DEMO may require some network loading time._
3232

3333
Here are some feature demos you might be interested in:
3434

35-
- [Video Concatenation](https://bilibili.github.io/WebAV/demo/2_1-concat-video)
36-
- [Video Editing](https://bilibili.github.io/WebAV/demo/6_4-video-editor)
37-
- [Live Recording](https://bilibili.github.io/WebAV/demo/4_2-recorder-avcanvas)
38-
- WebAV + Canvas + WebAudio [Decode and Play Video](https://bilibili.github.io/WebAV/demo/1_1-decode-video)
35+
- [Video Concatenation](https://webav-tech.github.io/WebAV/demo/2_1-concat-video)
36+
- [Video Editing](https://webav-tech.github.io/WebAV/demo/6_4-video-editor)
37+
- [Live Recording](https://webav-tech.github.io/WebAV/demo/4_2-recorder-avcanvas)
38+
- WebAV + Canvas + WebAudio [Decode and Play Video](https://webav-tech.github.io/WebAV/demo/1_1-decode-video)
3939

4040
## Packages Introduction
4141

42-
### [av-cliper](https://bilibili.github.io/WebAV/_api/av-cliper/)
42+
### [av-cliper](https://webav-tech.github.io/WebAV/_api/av-cliper/)
4343

4444
`av-cliper` is the foundational SDK for audio and video data processing. It provides basic classes and functions to help developers quickly achieve their target functionalities.
4545

@@ -99,7 +99,7 @@ com.output(); // => ReadableStream
9999

100100
</details>
101101

102-
### [av-canvas](https://bilibili.github.io/WebAV/_api/av-canvas/)
102+
### [av-canvas](https://webav-tech.github.io/WebAV/_api/av-canvas/)
103103

104104
`av-canvas` relies on the basic capabilities of `av-cliper` and provides a canvas that responds to user operations on Sprites (dragging, scaling, rotating), enabling quick implementation of products like video editing and live streaming workstations.
105105

@@ -144,7 +144,7 @@ await avCvs.add(spr2);
144144

145145
</details>
146146

147-
### [av-recorder](https://bilibili.github.io/WebAV/_api/av-canvas/)
147+
### [av-recorder](https://webav-tech.github.io/WebAV/_api/av-canvas/)
148148

149149
`av-recorder` records `MediaStream` and outputs the video file stream in MP4 format.
150150

@@ -184,7 +184,7 @@ recorder.start(); // => ReadableStream
184184

185185
If you are a beginner in the field of web audio and video, you can start by learning the basics:
186186

187-
[Articles by the Author](https://bilibili.github.io/WebAV/article)
187+
[Articles by the Author](https://webav-tech.github.io/WebAV/article)
188188
[Web Audio and Video Knowledge Graph](https://github.com/hughfenghen/WebAV-KnowledgeGraph)
189189

190190
## Sponsor Author

README_CN.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# WebAV
22

3-
![GitHub commit activity](https://img.shields.io/github/commit-activity/m/bilibili/WebAV)
3+
![GitHub commit activity](https://img.shields.io/github/commit-activity/m/WebAV-Tech/WebAV)
44
![NPM downloads](https://img.shields.io/npm/dm/@webav/av-cliper)
5-
[![Release](https://github.com/bilibili/WebAV/actions/workflows/release.yml/badge.svg)](https://github.com/bilibili/WebAV/actions/workflows/release.yml)
5+
[![Release](https://github.com/WebAV-Tech/WebAV/actions/workflows/release.yml/badge.svg)](https://github.com/WebAV-Tech/WebAV/actions/workflows/release.yml)
66

77
[English](./README.md) | 中文
88

@@ -26,20 +26,20 @@ _兼容 chrome 102+_
2626

2727
## DEMO
2828

29-
WebAV 项目有丰富的可快速体验的 DEMO,可以访问 [DEMO 首页](https://bilibili.github.io/WebAV/demo)检查当前设备的兼容性。
29+
WebAV 项目有丰富的可快速体验的 DEMO,可以访问 [DEMO 首页](https://webav-tech.github.io/WebAV/demo)检查当前设备的兼容性。
3030

3131
_提示:测试用的视频资源托管在 github pages,启动 DEMO 可能需要一些网络加载时间_
3232

3333
下面是你可能感兴趣的功能演示
3434

35-
- [视频合成](https://bilibili.github.io/WebAV/demo/2_1-concat-video)
36-
- [视频剪辑](https://bilibili.github.io/WebAV/demo/6_4-video-editor)
37-
- [直播录制](https://bilibili.github.io/WebAV/demo/4_2-recorder-avcanvas)
38-
- WebAV + Canvas + WebAudio [解码播放视频](https://bilibili.github.io/WebAV/demo/1_1-decode-video)
35+
- [视频合成](https://webav-tech.github.io/WebAV/demo/2_1-concat-video)
36+
- [视频剪辑](https://webav-tech.github.io/WebAV/demo/6_4-video-editor)
37+
- [直播录制](https://webav-tech.github.io/WebAV/demo/4_2-recorder-avcanvas)
38+
- WebAV + Canvas + WebAudio [解码播放视频](https://webav-tech.github.io/WebAV/demo/1_1-decode-video)
3939

4040
## packages 介绍
4141

42-
### [av-cliper](https://bilibili.github.io/WebAV/_api/av-cliper/)
42+
### [av-cliper](https://webav-tech.github.io/WebAV/_api/av-cliper/)
4343

4444
`av-cliper` 是音视频数据处理的基础 SDK,它提供了一些基础 class 或 function 帮助开发者快速实现目标功能。
4545

@@ -99,7 +99,7 @@ com.output(); // => ReadableStream
9999

100100
</details>
101101

102-
### [av-canvas](https://bilibili.github.io/WebAV/_api/av-canvas/)
102+
### [av-canvas](https://webav-tech.github.io/WebAV/_api/av-canvas/)
103103

104104
`av-canvas` 依赖 `av-cliper` 的基础能力,提供一个画布响应用户对 Sprite 的操作(拖拽、缩放、旋转),用于快速实现视频剪辑、直播推流工作台等产品。
105105

@@ -144,7 +144,7 @@ await avCvs.add(spr2);
144144

145145
</details>
146146

147-
### [av-recorder](https://bilibili.github.io/WebAV/_api/av-canvas/)
147+
### [av-recorder](https://webav-tech.github.io/WebAV/_api/av-canvas/)
148148

149149
`av-recorder` 录制 `MediaStream` 输出 MP4 格式的视频文件流。
150150

@@ -184,15 +184,15 @@ recorder.start(); // => ReadableStream
184184

185185
如果你是 Web 音视频领域的初学者,可以先了解入门知识
186186

187-
[作者写的相关文章](https://bilibili.github.io/WebAV/article)
187+
[作者写的相关文章](https://webav-tech.github.io/WebAV/article)
188188
[Web 音视频知识图谱](https://github.com/hughfenghen/WebAV-KnowledgeGraph)
189189

190190
## 赞助
191191

192192
如果该项目对你有帮助,扫描二维码请作者喝奶茶 :)
193193

194-
<img src="https://github.com/bilibili/WebAV/assets/3307051/4b25836a-3f85-4160-b0bf-6c8360fad9a4" width=200 />
195-
<img src="https://github.com/bilibili/WebAV/assets/3307051/b0d8ff07-71c9-46c1-af33-019420d17c06" width=200 />
194+
<img src="https://github.com/WebAV-Tech/WebAV/assets/3307051/4b25836a-3f85-4160-b0bf-6c8360fad9a4" width=200 />
195+
<img src="https://github.com/WebAV-Tech/WebAV/assets/3307051/b0d8ff07-71c9-46c1-af33-019420d17c06" width=200 />
196196

197197
---
198198

doc-site/.dumirc.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,20 @@ export default defineConfig({
1919
),
2020
},
2121
sitemap: {
22-
hostname: 'https://bilibili.github.io/WebAV/',
22+
hostname: 'https://webav-tech.github.io/WebAV/',
2323
},
2424
analytics: { ga_v2: 'G-MC335K4KV6' },
2525
themeConfig: {
2626
name: 'WebAV',
2727
logo: false,
2828
hideHomeNav: true,
2929
socialLinks: {
30-
github: 'https://github.com/bilibili/WebAV',
30+
github: 'https://github.com/WebAV-Tech/WebAV',
3131
},
3232
footer: ' ',
3333
footerConfig: {
3434
bottom:
35-
'<div>碰到问题请去 <a href="https://github.com/bilibili/WebAV/issues" >WebAV Issues</a> 中反馈</div><div class="flex" style="justify-content: center;"><a href="https://github.com/bilibili/WebAV"><img src="https://img.shields.io/github/stars/bilibili/WebAV"></a></div>',
35+
'<div>碰到问题请去 <a href="https://github.com/WebAV-Tech/WebAV/issues" >WebAV Issues</a> 中反馈</div><div class="flex" style="justify-content: center;"><a href="https://github.com/WebAV-Tech/WebAV"><img src="https://img.shields.io/github/stars/WebAV-Tech/WebAV"></a></div>',
3636
copyright: ' ',
3737
columns: [],
3838
},

doc-site/docs/api/index.en-US.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ sidebar: false
77

88
The WebAV project contains three modules that generate API documentation using TypeDoc.
99

10-
- [@webav/av-cliper](//bilibili.github.io/WebAV/_api/av-cliper/)
10+
- [@webav/av-cliper](//webav-tech.github.io/WebAV/_api/av-cliper/)
1111
- Provides a basic API for audio and video data processing.
1212
- Include: audio and video decoding, synthesis, stitching, cropping and other functions.
13-
- [@webav/av-recorder](//bilibili.github.io/WebAV/_api/av-recorder/)
13+
- [@webav/av-recorder](//webav-tech.github.io/WebAV/_api/av-recorder/)
1414
- Record a `MediaStream` and output MP4 video.
1515
- In the browser, the `MediaStream` object is available from the canvas, video, camera, microphone, Share Screen apis, etc.
16-
- [@webav/av-canvas](//bilibili.github.io/WebAV/_api/av-canvas/)
16+
- [@webav/av-canvas](//webav-tech.github.io/WebAV/_api/av-canvas/)
1717
- A "canvas" that the user or code can manipulate, add and control assets, and output a `MediaStream`.
1818
- Materials include: camera, microphone, screen, audio and video files, images, text.
1919
- Outputting `MediaStream` means being able to push "canvas" content to a server or record it as a local video.
2020

21-
`@webav/av-cliper` has a more API, Suggest to read [basic concepts](https://bilibili.github.io/WebAV/_api/av-cliper/#md:basic-concepts-%E5%9F%BA%E7%A1%80%E6%A6%82%E5%BF%B5) Helpful to quickly understand the DEMO source code and other apis.
21+
`@webav/av-cliper` has a more API, Suggest to read [basic concepts](https://webav-tech.github.io/WebAV/_api/av-cliper/#md:basic-concepts-%E5%9F%BA%E7%A1%80%E6%A6%82%E5%BF%B5) Helpful to quickly understand the DEMO source code and other apis.

doc-site/docs/api/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ sidebar: false
77

88
WebAV 项目包含三个模块,使用 TypeDoc 生成 API 文档
99

10-
- [@webav/av-cliper](//bilibili.github.io/WebAV/_api/av-cliper/)
10+
- [@webav/av-cliper](//webav-tech.github.io/WebAV/_api/av-cliper/)
1111
- 提供音视频数据处理的基础 API
1212
- 包括:音视频解码、合成、拼接、裁剪等功能等等
13-
- [@webav/av-recorder](//bilibili.github.io/WebAV/_api/av-recorder/)
13+
- [@webav/av-recorder](//webav-tech.github.io/WebAV/_api/av-recorder/)
1414
- 录制 `MediaStream`,输出 MP4 视频
1515
- 在浏览器中,可以中 canvas、video、摄像头、麦克风、分享屏幕等 API 获取 `MediaStream` 对象
16-
- [@webav/av-canvas](//bilibili.github.io/WebAV/_api/av-canvas/)
16+
- [@webav/av-canvas](//webav-tech.github.io/WebAV/_api/av-canvas/)
1717
- 用户或代码可操作的“画布”,能添加、控制各种素材,支持输出 `MediaStream`
1818
- 素材包括:摄像头、麦克风、屏幕、音视频文件、图片、文字
1919
- 输出 `MediaStream` 意味着能将“画布”内容推流至服务器或录制为本地视频
2020

21-
`@webav/av-cliper` 的 API 相对多一些,建议先阅读[基础概念](https://bilibili.github.io/WebAV/_api/av-cliper/#md:basic-concepts-%E5%9F%BA%E7%A1%80%E6%A6%82%E5%BF%B5),有助于快速理解 DEMO 源码与其他 API
21+
`@webav/av-cliper` 的 API 相对多一些,建议先阅读[基础概念](https://webav-tech.github.io/WebAV/_api/av-cliper/#md:basic-concepts-%E5%9F%BA%E7%A1%80%E6%A6%82%E5%BF%B5),有助于快速理解 DEMO 源码与其他 API

0 commit comments

Comments
 (0)