Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ let package = Package(
.executable(name: "VoiceMemo", targets: ["VoiceMemo"])
],
dependencies: [
.package(url: "https://github.com/aliyun/alibabacloud-oss-swift-sdk-v2.git", from: "0.1.0-beta"),
.package(url: "https://github.com/aliyun/alibabacloud-oss-swift-sdk-v2.git", from: "0.2.0"),
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.14.1"),
.package(url: "https://github.com/vapor/mysql-kit.git", from: "4.0.0")
],
Expand Down
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# VoiceMemo

<p align="center">
<img src="logo.png" width="200" />
<img src="assets/logo.png" width="200" />
</p>

A professional, high-fidelity audio recording utility for macOS, designed to capture real-time voice conversations from any application using the native **ScreenCaptureKit** and **AVFoundation** frameworks.
Expand All @@ -20,6 +20,20 @@ Read this in Chinese: [README_CN.md](README_CN.md)
- **Storage Backends (SQLite/MySQL)**: Store history locally or in MySQL, with optional local-to-MySQL sync.
- **Email Notifications**: Send meeting summaries directly to your email via a configured gateway.

## Screenshots

<div align="center">
<img src="assets/screenshot-01-home.png" width="800" alt="Home View" />
<br/><br/>
<img src="assets/screenshot-02-recording.png" width="800" alt="Recording View" />
<br/><br/>
<img src="assets/screenshot-03-pipeline.png" width="800" alt="Pipeline View" />
<br/><br/>
<img src="assets/screenshot-04-result.png" width="800" alt="Result View" />
<br/><br/>
<img src="assets/screenshot-05-settings.png" width="800" alt="Settings View" />
</div>

## Changelog

See [CHANGELOG.md](CHANGELOG.md) for full release history.
Expand Down
16 changes: 15 additions & 1 deletion README_CN.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# VoiceMemo

<p align="center">
<img src="logo.png" width="200" />
<img src="assets/logo.png" width="200" />
</p>

一款专业、高保真的 macOS 音频录制工具,用于捕获任何应用程序的实时语音通话。基于 macOS 原生的 **ScreenCaptureKit** 和 **AVFoundation** 框架构建。
Expand All @@ -20,6 +20,20 @@ English version: [README.md](README.md)
- **存储(SQLite/MySQL)**:历史记录可保存到本地或 MySQL,并支持本地同步到 MySQL。
- **邮件通知**:支持通过配置网关将会议纪要直接发送到指定邮箱。

## 界面预览

<div align="center">
<img src="assets/screenshot-01-home.png" width="800" alt="主界面" />
<br/><br/>
<img src="assets/screenshot-02-recording.png" width="800" alt="录音界面" />
<br/><br/>
<img src="assets/screenshot-03-pipeline.png" width="800" alt="流水线界面" />
<br/><br/>
<img src="assets/screenshot-04-result.png" width="800" alt="结果界面" />
<br/><br/>
<img src="assets/screenshot-05-settings.png" width="800" alt="设置界面" />
</div>

## 更新日志

请参阅 [CHANGELOG.md](CHANGELOG.md) 查看完整的发布历史。
Expand Down
File renamed without changes
Binary file added assets/screenshot-01-home.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/screenshot-02-recording.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/screenshot-03-pipeline.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/screenshot-04-result.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/screenshot-05-settings.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 11 additions & 2 deletions generate_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
RESOURCES_DIR = "Sources/VoiceMemo/Resources"

DEPENDENCIES = [
("https://github.com/aliyun/alibabacloud-oss-swift-sdk-v2.git", "0.1.0-beta", "AlibabaCloudOSS"),
("https://github.com/aliyun/alibabacloud-oss-swift-sdk-v2.git", "0.2.0", "AlibabaCloudOSS"),
("https://github.com/stephencelis/SQLite.swift.git", "0.14.1", "SQLite"),
("https://github.com/vapor/mysql-kit.git", "4.0.0", "MySQLKit")
]
Expand All @@ -36,12 +36,15 @@ def gen_id(key):

pkg_refs = []
pkg_deps = []
pkg_build_files = []

for url, version, product in DEPENDENCIES:
ref_id = gen_id(f"pkgref:{url}")
dep_id = gen_id(f"pkgdep:{product}")
build_file_id = gen_id(f"pkgbuild:{product}")
pkg_refs.append((ref_id, url, version))
pkg_deps.append((dep_id, ref_id, product))
pkg_build_files.append((build_file_id, dep_id, product))

source_files = []
resource_files = []
Expand Down Expand Up @@ -76,7 +79,10 @@ def resource_file_type(path):
return "image.jpeg"
return "file"

frameworks_files = ""
frameworks_files = "\n".join(
f'\t\t\t\t{build_file_id} /* {product} in Frameworks */,'
for build_file_id, dep_id, product in pkg_build_files
)
resources_files = "\n".join(
f'\t\t\t\t{b_id} /* {name} in Resources */,'
for f_id, b_id, name, path in resource_files
Expand Down Expand Up @@ -104,6 +110,9 @@ def resource_file_type(path):
for f_id, b_id, name, path in resource_files:
content += f'\t\t{b_id} /* {name} in Resources */ = {{isa = PBXBuildFile; fileRef = {f_id} /* {name} */; }};\n'

for build_file_id, dep_id, product in pkg_build_files:
content += f'\t\t{build_file_id} /* {product} in Frameworks */ = {{isa = PBXBuildFile; productRef = {dep_id} /* {product} */; }};\n'

content += """/* End PBXBuildFile section */

/* Begin PBXFileReference section */
Expand Down