mirror of
https://github.com/YILS-LIN/short-video-factory.git
synced 2025-11-25 03:15:03 +08:00
发布小版本更新,MAC嵌入ffmpeg,架构分隔
This commit is contained in:
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@@ -11,7 +11,7 @@ jobs:
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
os: [macos-latest, windows-latest, ubuntu-latest]
|
||||
os: [macos-latest, macos-latest-large, windows-latest, ubuntu-latest]
|
||||
|
||||
steps:
|
||||
- name: Check out Git repository
|
||||
|
||||
16
CHANGELOG.md
16
CHANGELOG.md
@@ -1,6 +1,22 @@
|
||||
# Changelog
|
||||
All significant changes to this project will be recorded in this file.
|
||||
此项目的所有显著更改都将记录在此文件中。
|
||||
|
||||
## [v1.1.2] - 2025-10-22
|
||||
### Added
|
||||
- Add MAC embedding FFmpeg support
|
||||
### Fixed
|
||||
- Resolve the error of not setting BGM folder
|
||||
- Remove the restriction that the total duration of video materials should not be shorter than that of voice
|
||||
- Optimize some details
|
||||
### 添加
|
||||
- 增加MAC嵌入FFmpeg支持
|
||||
### 修复
|
||||
- 解决不设置bgm文件夹报错
|
||||
- 移除视频素材总时长不的短于语音的限制
|
||||
- 优化一些细节
|
||||
|
||||
|
||||
## [v1.1.1] - 2025-08-26
|
||||
### Fixed
|
||||
- Fix MAC copy and paste shortcut key failure issue
|
||||
|
||||
@@ -14,7 +14,6 @@
|
||||
target: [
|
||||
{
|
||||
target: 'dmg',
|
||||
arch: ['arm64', 'x64'],
|
||||
},
|
||||
],
|
||||
artifactName: '${name}-${version}-mac-${arch}-installer.${ext}',
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "short-video-factory",
|
||||
"description": "短视频工厂,一键生成产品营销与泛内容短视频,AI批量自动剪辑",
|
||||
"version": "1.1.1",
|
||||
"version": "1.1.2",
|
||||
"author": {
|
||||
"name": "YILS",
|
||||
"developer": "YILS",
|
||||
|
||||
@@ -7,7 +7,7 @@ console.log('Downloading ffmpeg...')
|
||||
execSync(
|
||||
`cross-env FFMPEG_BINARIES_URL=${process.env['npm_config_ffmpeg_binaries_url']} npm rebuild ffmpeg-static`,
|
||||
)
|
||||
console.log(`FFmpeg path: ${ffmpeg}`)
|
||||
console.log(`FFmpeg downloaded to path: ${ffmpeg}`)
|
||||
|
||||
const isWindows = process.platform === 'win32'
|
||||
if (!isWindows) {
|
||||
|
||||
@@ -17,7 +17,6 @@
|
||||
"noUnusedLocals": true,
|
||||
"noUnusedParameters": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@/*": ["./src/*"],
|
||||
"~/*": ["./*"]
|
||||
|
||||
@@ -6,7 +6,6 @@
|
||||
"moduleResolution": "bundler",
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"strict": true,
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@/*": ["./src/*"],
|
||||
"~/*": ["./*"]
|
||||
|
||||
Reference in New Issue
Block a user