{"id":50766871,"url":"https://github.com/tkc/audiolens","last_synced_at":"2026-06-11T14:31:13.064Z","repository":{"id":283848037,"uuid":"953093093","full_name":"tkc/audiolens","owner":"tkc","description":null,"archived":false,"fork":false,"pushed_at":"2025-03-22T15:05:14.000Z","size":0,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-22T15:35:51.552Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tkc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-03-22T14:56:54.000Z","updated_at":"2025-03-22T15:05:18.000Z","dependencies_parsed_at":"2025-03-22T15:35:54.331Z","dependency_job_id":"11488b4c-7e36-4f53-8bb9-1090096b5514","html_url":"https://github.com/tkc/audiolens","commit_stats":null,"previous_names":["tkc/audiolens"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tkc/audiolens","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tkc%2Faudiolens","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tkc%2Faudiolens/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tkc%2Faudiolens/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tkc%2Faudiolens/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tkc","download_url":"https://codeload.github.com/tkc/audiolens/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tkc%2Faudiolens/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34204177,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-11T02:00:06.485Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-06-11T14:31:12.973Z","updated_at":"2026-06-11T14:31:13.057Z","avatar_url":"https://github.com/tkc.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# audiolens\n\nこのアプリケーションは、マイクからの音声をリアルタイムで録音し、whisper.cpp を使用して文字起こしを行います。さらに、Ollama を使用してテキスト分析（要約、キーワード抽出、問題点検出、進行状況評価）を行います。すべての処理はローカル環境で完結し、インターネット接続は不要です。\n\n## 前提条件\n\n- Go 1.16 以上\n- [PortAudio](http://www.portaudio.com/)\n- [whisper.cpp](https://github.com/ggerganov/whisper.cpp)\n- [Ollama](https://ollama.ai/)\n\n## セットアップ\n\n### 依存関係のインストール\n\n#### macOS\n\n```bash\n# Homebrewを使用してPortAudioをインストール\nbrew install portaudio\n\n# whisper.cppをインストール\nbrew install whisper-cpp\n\n# Ollamaをインストール\nbrew install ollama\n```\n\n#### Ollama モデルのダウンロード\n\n```bash\n# アプリケーションで使用するGemma 3モデルをダウンロード\nollama pull gemma3:4b\n```\n\n### アプリケーションのビルドとインストール\n\n```bash\n# プロジェクトディレクトリに移動\ncd whisper_local_faster_whsiper_go\n\n# 依存関係をインストール\ngo mod download\n\n# アプリケーションをビルド\ngo build -o bin/whisper_recorder\n\n# 実行権限を付与\nchmod +x bin/whisper_recorder\n```\n\n## 使用方法\n\n1. Serve ollama\n\n```bash\nollama serve\n```\n\n2. 別のターミナルでアプリケーションを実行します\n\n```bash\n./bin/whisper_recorder\n```\n\n3. 利用可能なマイクデバイスのリストから使用するデバイスを選択します\n\n4. Ctrl+C を押して録音を停止します\n\n## 機能\n\n- マイクからのリアルタイム録音\n- 定期的な録音セグメントの保存\n- whisper.cpp を使用した音声文字起こし\n- Ollama を使用したテキスト分析\n  - 要約生成\n  - キーワード抽出\n  - 問題点抽出\n  - 議論の進行状況評価\n- 結果をマークダウンファイルに保存\n\n## プロジェクト構成\n\n```\n.\n├── main.go                         # メインアプリケーション\n├── transcribe.sh                   # 文字起こし用シェルスクリプト\n├── internal/\n│   ├── app/                        # アプリケーション基本構造\n│   │   ├── app.go\n│   │   ├── ollama.go\n│   │   └── markdown.go\n│   ├── audio/                      # オーディオ処理\n│   │   └── wav.go\n│   ├── transcription/              # 文字起こし処理\n│   │   ├── transcribe.go\n│   │   └── process.go\n│   └── analysis/                   # テキスト分析\n│       ├── analysis.go\n│       └── ollama.go\n├── data/                           # 録音と文字起こし結果\n│   ├── recordings/\n│   └── transcripts/\n├── go.mod\n└── go.sum\n```\n\n## 注意事項\n\n- 文字起こしの精度は whisper.cpp のモデルに依存します\n- Ollama のモデルによって分析結果の質が変わります\n- アプリケーションの処理速度はご使用のコンピュータの性能に依存します\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftkc%2Faudiolens","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftkc%2Faudiolens","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftkc%2Faudiolens/lists"}