Skip to content

Commit 5b725fa

Browse files
committed
chore: remove no used flvtool2 pkg
1 parent d72cda4 commit 5b725fa

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

docs/changelog.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## 2.1.0
44

5-
* you may set the ffmpeg, ffprobe and flvtool2/flvmeta binary paths manually
5+
* you may set the ffmpeg and ffprobe binary paths manually
66
* add the ability to disable meta
77
* add the ability to disable rename
88

docs/guide/configuration.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,13 @@ export default defineConfig({
6060

6161
### bin (optional)
6262

63-
You may set the ffmpeg, ffprobe and flvtool2/flvmeta binary paths manually:
63+
You may set the ffmpeg and ffprobe binary paths manually:
6464

6565
```typescript
6666
export default defineConfig({
6767
bin: { // [!code focus:5]
6868
ffmpegPath: 'ffmpeg_path',
6969
ffprobePath: 'ffprobe_path',
70-
flvtool2Path: 'flvtool2_path',
7170
},
7271
converters: [
7372
// ...
@@ -80,4 +79,3 @@ export default defineConfig({
8079
| ----------- | ------------------------------------------------------------------------------- |
8180
|ffmpegPath |Argument `path` is a string with the full path to the ffmpeg binary |
8281
|ffprobePath |Argument `path` is a string with the full path to the ffprobe binary |
83-
|flvtool2Path |Argument `path` is a string with the full path to the flvtool2 or flvmeta binary |

src/types/config.ts

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ type ConverterConfig = {
2020
export type BinPaths = {
2121
ffmpegPath?: string
2222
ffprobePath?: string
23-
flvtool2Path?: string
2423
}
2524

2625
export type AttachmentConfig = {

0 commit comments

Comments
 (0)