BililiveRecorder/README.md

108 lines
4.6 KiB
Markdown
Raw Normal View History

2022-06-11 20:18:30 +08:00
<div style="text-align:center">
<img width="20%" src=".github/assets/logo.svg">
2018-03-25 15:23:48 +08:00
2022-06-11 20:18:30 +08:00
# B站录播姬
[![Build and Test](https://github.com/BililiveRecorder/BililiveRecorder/actions/workflows/build.yml/badge.svg?branch=dev)](https://github.com/BililiveRecorder/BililiveRecorder/actions/workflows/build.yml)
2018-04-17 12:26:12 +08:00
[![Version](https://img.shields.io/github/tag/Bililive/BililiveRecorder.svg?label=Version)](#)
2021-05-01 00:48:37 +08:00
[![License](https://img.shields.io/github/license/Bililive/BililiveRecorder.svg)](#)
2021-05-01 00:22:46 +08:00
[![Crowdin](https://badges.crowdin.net/bililiverecorder/localized.svg)](https://crowdin.com/project/bililiverecorder)
2018-03-12 18:57:20 +08:00
2022-06-11 20:18:30 +08:00
</div>
2021-05-01 00:22:46 +08:00
[简体中文 README | Simplified Chinese](README_CN.md)
2018-03-12 18:57:20 +08:00
2022-06-11 20:18:30 +08:00
GitHub is a global platform, and theoretically, everyone should use English. But since this project is mostly meant for Chinese user and rely on a Chinese website [BiliBili](https://live.bilibili.com) ([_wikipedia_](https://en.wikipedia.org/wiki/Bilibili)), most things related to this project like code comments, documentations and other related repositories are written in Chinese. This README file will always use English so people like _you_ can understand what is this, and perhaps make some use out of it.
2018-03-31 17:05:16 +08:00
2021-01-09 16:47:28 +08:00
Software UI is available in
- 简体中文 (Source and default)
- 繁体中文
- 日本語
- English
2018-03-31 17:05:16 +08:00
2022-06-11 20:18:30 +08:00
## Installation
See [rec.danmuji.org](https://rec.danmuji.org) (in Chinese) for Windows installer with auto update.
Alernatively, you can download from [releases](https://github.com/BililiveRecorder/BililiveRecorder/releases) page.
2022-06-26 15:16:01 +08:00
The zip file available at the releases page does not have auto update enabled. You are welcome to watch this repository for new releases. (Click the "Watch" dropdown menu, then "Custom", and check the "Releases" checkbox).
2018-03-31 17:05:16 +08:00
2022-06-11 20:18:30 +08:00
Binary files of the command line version are available for Linux, macOS, and Windows at [releases](https://github.com/BililiveRecorder/BililiveRecorder/releases).
2022-06-26 15:16:01 +08:00
Docker images can be pulled from [Docker Hub `bililive/recorder`](https://hub.docker.com/r/bililive/recorder) or [`ghcr.io/bililiverecorder/bililiverecorder`](https://github.com/bililiverecorder/BililiveRecorder/pkgs/container/bililiverecorder).
2022-06-11 20:18:30 +08:00
2022-06-26 15:16:01 +08:00
See [rec.danmuji.org/user/install](https://rec.danmuji.org/user/install) for step by step installation guides (in Chinese).
2018-03-31 17:05:16 +08:00
## Feature
2018-04-07 20:30:34 +08:00
- Easy to use
2021-05-01 00:22:46 +08:00
- Start recording automatically when stream starts
2018-03-31 17:05:16 +08:00
- Record multiple stream at same time
2021-05-01 00:22:46 +08:00
- Fix broken recording caused by broken bilibili stream server
2021-11-20 15:02:50 +08:00
- Toolbox mode to fix broken bilibili stream recording recorded by other software<sup>1</sup>
- Pure C#, no native dependency like ffmpeg<sup>2</sup>
2018-03-31 17:05:16 +08:00
- Open source!
2021-11-20 15:02:50 +08:00
<sup>1</sup>: Only unprocessed flv file downloaded directly from stream servers can be fixed. If the file is downloaded or processed by FFmpeg it no longer can be fixed, FFmpeg will fvck up the already broken recording even further.
<sup>2</sup>: A minimal version of FFmpeg is bundled with the desktop edition of BililiveRecorder for the remux feature in toolbox.
2018-03-31 17:05:16 +08:00
2022-06-11 20:18:30 +08:00
## Versioning
2018-03-31 17:05:16 +08:00
2022-06-11 20:18:30 +08:00
This project is following Semantic Versioning since version 2.0.0.
2018-03-31 17:05:16 +08:00
2022-06-11 20:18:30 +08:00
Please note this does not include the public .NET API of `BililiveRecorder.Flv`, or any project within this repository for that matter. They are considered as internal implementation thus could have breaking changes in any releases.
2018-03-31 17:05:16 +08:00
2022-06-11 20:18:30 +08:00
## Building from source
Note: full git history is required for version generation to work.
WPF version:
```powershell
cd BililiveRecorder.WPF
msbuild -t:restore
msbuild
```
Command line version:
```sh
# Build WebUI, optional
git submodule update --init --recursive
./webui/build.sh
# For building on Windows:
# ./webui/build.ps1
dotnet build BililiveRecorder.Cli
```
## Project structure
Project | Target |
:--- |:--- |
BililiveRecorder.Flv | .NET Standard 2.0 |
BililiveRecorder.Core | .NET Standard 2.0 |
BililiveRecorder.Toolbox | .NET Standard 2.0 |
BililiveRecorder.WPF | .NET Framework 4.7.2 |
BililiveRecorder.Web | .NET 6 |
BililiveRecorder.Cli | .NET 6 |
2021-05-18 22:41:35 +08:00
2022-06-11 20:18:30 +08:00
```mermaid
graph BT
toolbox(BililiveRecorder.Toolbox) --> flv(BililiveRecorder.Flv)
core(BililiveRecorder.Core) --> flv
wpf(BililiveRecorder.WPF) --> core
wpf --> toolbox
cli(BililiveRecorder.Cli) --> toolbox
cli ---> core
web(BililiveRecorder.Web) --> core
cli --> web
```
2021-05-18 22:41:35 +08:00
2018-03-31 17:05:16 +08:00
## Reference & Acknowledgements
2019-11-24 08:40:01 +08:00
- [Adobe Flash Video File Format Specification 10.1.2.01.pdf](https://www.adobe.com/content/dam/acom/en/devnet/flv/video_file_format_spec_v10_1.pdf)
2021-05-01 00:22:46 +08:00
- [coreyauger/flv-streamer-2-file](https://github.com/coreyauger/flv-streamer-2-file) Used as a reference in the early stages of development
2019-11-24 08:40:01 +08:00
- [zyzsdy/biliroku](https://github.com/zyzsdy/biliroku) - (probably) first BiliBili stream recording tool.