Files
remote-volume-monitor/README.md
Agent e4a53c6064 重构:将 Code 文件夹内容移至仓库根目录
- 移除 Code 文件夹层级
- 源代码、文档、配置直接放在根目录
- 更新 .gitignore 排除 Releases/Test
2026-03-20 07:08:05 +08:00

66 lines
1.7 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 远程音量监控工具
## 项目说明
远程音量监控工具,用于监控和调节系统音量。
## 项目结构
```
remote-volume-monitor/
├── src/ # 源代码
│ └── remote_volume_monitor.py
├── config/ # 配置文件
│ └── config.ini
├── docs/ # 文档
│ ├── README_远程音量控制.md
│ ├── 部署检查清单_远程音量控制.md
│ └── 项目交付清单_远程音量控制.md
├── tests/ # 测试
│ └── 测试用例_远程音量控制.md
├── scripts/ # 辅助脚本
│ └── 启动监控.bat
├── logs/ # 日志目录
├── requirements.txt # Python 依赖
└── README.md # 项目说明
```
## 使用方法
1. 安装依赖:
```bash
cd remote-volume-monitor
pip install -r requirements.txt
```
2. 配置文件:
编辑 `config/config.ini` 设置相关参数
3. 运行程序(三种方式):
```bash
# 方式 1从项目根目录运行
python src/remote_volume_monitor.py
# 方式 2使用启动脚本Windows
scripts\启动监控.bat
# 方式 3指定配置文件
python src/remote_volume_monitor.py --config config/config.ini
```
4. 日志文件:
运行后日志自动保存到 `logs/remote_volume.log`
## 详细文档
- 使用说明:见 `docs/README_远程音量控制.md`
- 部署指南:见 `docs/部署检查清单_远程音量控制.md`
- 测试用例:见 `tests/测试用例_远程音量控制.md`
- 交付清单:见 `docs/项目交付清单_远程音量控制.md`
---
*项目版本v1.0*
*最后更新2026-03-07*