Skip to content

Commit a18ad1c

Browse files
committed
v0.0.5: 应用界面增加了ffmpeg检查,重构为rust命令
1 parent d1d61fa commit a18ad1c

File tree

9 files changed

+807
-124
lines changed

9 files changed

+807
-124
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# 更新日志
22

3+
## 0.0.5 [2025/3/8]
4+
5+
* 应用界面增加了是否安装ffmpeg的检查
6+
* 将nodejs的脚本命令重构成了rust版本的命令,减少依赖
7+
38
## 0.0.4 [2025/3/8]
49

510
* 增加UI管理界面,并作为桌面应用来发布

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,20 @@ ffmpeg -i input.flv -vcodec copy -acodec copy output.mp4
2525
- 可随时终止,无需担心出错
2626
- 一个场景一条命令,简单快捷
2727

28+
## 应用界面
29+
30+
应用下载地址:[ffmpeg-script releases](https://github.com/xxxily/ffmpeg-script/releases)
31+
32+
注意:使用应用界面的话还是需要安装[ffmpeg](http://ffmpeg.org/),但不用安装nodejs,应用界面的版本已经将命令重构成rust版本
33+
34+
音视频文件合并(无需重新编码)
35+
36+
![ui_02](./imgs/ui_02.png)
37+
38+
将flv文件快速转换成mp4文件(无需重新编码)
39+
40+
![ui_01](./imgs/ui_01.png)
41+
2842
### 安装脚本
2943

3044
如果你的电脑已安装[ffmpeg](http://ffmpeg.org/)[nodejs](https://nodejs.org/)

imgs/ui_01.png

122 KB
Loading

imgs/ui_02.png

85.1 KB
Loading

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ffmpeg-script",
3-
"version": "0.0.4",
3+
"version": "0.0.5",
44
"description": "ffmpeg-script",
55
"main": "bin/index.js",
66
"scripts": {

src-tauri/Cargo.lock

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ tauri-build = { version = "1.5", features = [] }
1414
tauri = { version = "1.5", features = ["shell-all", "dialog-all", "fs-all", "path-all"] }
1515
serde = { version = "1.0", features = ["derive"] }
1616
serde_json = "1.0"
17+
chrono = "0.4"
1718

1819
[features]
1920
custom-protocol = ["tauri/custom-protocol"]

0 commit comments

Comments
 (0)