Commit 5b725fa 1 parent d72cda4 commit 5b725fa Copy full SHA for 5b725fa
File tree 3 files changed +2
-5
lines changed
3 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## 2.1.0
4
4
5
- * you may set the ffmpeg, ffprobe and flvtool2/flvmeta binary paths manually
5
+ * you may set the ffmpeg and ffprobe binary paths manually
6
6
* add the ability to disable meta
7
7
* add the ability to disable rename
8
8
Original file line number Diff line number Diff line change @@ -60,14 +60,13 @@ export default defineConfig({
60
60
61
61
### bin (optional)
62
62
63
- You may set the ffmpeg, ffprobe and flvtool2/flvmeta binary paths manually:
63
+ You may set the ffmpeg and ffprobe binary paths manually:
64
64
65
65
``` typescript
66
66
export default defineConfig ({
67
67
bin: { // [!code focus:5]
68
68
ffmpegPath: ' ffmpeg_path' ,
69
69
ffprobePath: ' ffprobe_path' ,
70
- flvtool2Path: ' flvtool2_path' ,
71
70
},
72
71
converters: [
73
72
// ...
@@ -80,4 +79,3 @@ export default defineConfig({
80
79
| ----------- | ------------------------------------------------------------------------------- |
81
80
| ffmpegPath | Argument ` path ` is a string with the full path to the ffmpeg binary |
82
81
| 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 |
Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ type ConverterConfig = {
20
20
export type BinPaths = {
21
21
ffmpegPath ?: string
22
22
ffprobePath ?: string
23
- flvtool2Path ?: string
24
23
}
25
24
26
25
export type AttachmentConfig = {
You can’t perform that action at this time.
0 commit comments