The AI meeting recording assistant is most suitable for local deployment scenarios where the team has a large number of meeting recordings, interview audios, course screen recordings or customer communication records, but does not want all audio to be uploaded to a third-party cloud service. NAS is just right for this: it is always online, has hard disk space, can run Docker, and is also convenient for centralized storage of recording files.
This article is organized according to “Tutorials + Troubleshooting + FAQs”. The goal is to help you set up a local AI meeting recording process on the NAS: the audio is uploaded to the NAS, the service is converted into text, and then local or private LLM is used to generate summaries, action items, and to-do lists.
First confirm which type of assistant you want to deploy
There are roughly three routes to local AI conference minutes:
| route | Features | Suitable for the crowd |
|---|---|---|
| Pure transliteration tool | Convert audio to text only | Only subtitles and verbatim transcripts are required |
| Transcription + summary | First STT, then use LLM to summarize | Need meeting minutes and action items |
| Complete conference platform | Uploading, search, permissions, and team space are all available | Long-term use by small teams |
On NAS, it is recommended to start with “Transcription + Summary”. The complete platform has more functions, but the deployment complexity, database, permissions, backup and upgrade costs are also higher.
Hardware judgment before NAS deployment
Let’s first see if the NAS can handle transcription and summarization.
Minimum recommendations:
- 4GB memory allows for light testing.
- 8GB memory is more suitable for long-term operation.
- x86 NAS is more compatible than ARM NAS.
- Having a graphics card or GPU will be faster, but is not required.
- Hard disk space must be reserved for audio, transcribed text and model cache.
If your NAS performance is weak, you can use the “NAS storage + another computer inference” approach. The NAS is responsible for saving recordings and results, and the transcription service runs on a mini-host, desktop or GPU machine.
Recommended architecture
A practical local architecture can be designed like this:
|
|
The advantage of this structure is that the components are clear. If the transcription fails, check STT. If the digest fails, check LLM. If the file cannot be found, check the mounting directory.
Prepare catalog
First prepare several directories on the NAS:
|
|
use:
input: Put the audio to be processed.output: Banished script, subtitles, summary.models: Put Whisper or other model cache.config: Put the configuration file.logs: Put the running log.
If you plan the directory first, troubleshooting will be much easier later.
Docker Compose Example
The images and parameters of different conference assistant projects are different, but the ideas are similar. Here is an example of a common structure:
|
|
If your NAS uses Synology Container Manager, Feiniu Docker, TrueNAS Apps or Portainer, the core is the same: image, port, directory mounting, environment variables.
Should Ollama also be deployed on NAS?
If the NAS performance is sufficient, Ollama can also be deployed on the NAS; if the performance is weak, it is recommended to put Ollama on a stronger machine.
Advantages of NAS native deployment:
-The data is all on the intranet.
- Simple configuration.
- Long term online.
shortcoming:
- Large model inference is slow.
- Memory is easily stretched.
- Transcribe and summarize at the same time.
A more stable solution is:
|
|
Then point LLM_BASE_URL to the intranet address of that machine in the configuration.
How to deal with audio formats
Common conference recording formats include mp3, m4a, wav, and mp4. In order to reduce problems, it is recommended to uniformly convert to wav or standard mp3.
You can use ffmpeg to preprocess:
|
|
meaning:
-ar 16000: Convert sampling rate to 16k.-ac 1: Convert to mono.meeting.wav: Output for use by the transcription model.
If the original file is a video, you can also extract only the audio:
|
|
How to choose a transcription model
Common choices are Whisper or faster-whisper. Larger models generally have better accuracy, but also higher speed and memory usage.
| Model | speed | Accuracy | NAS adaptation |
|---|---|---|---|
| tiny | soon | lower | suitable for testing |
| base | quick | generally | Low-end NAS can be tried |
| small | medium | better | Recommended to get started |
| medium | slow | better | Need stronger machines |
| large | very slow | high | Not recommended for low-end NAS |
The Chinese conference is recommended to start from small. If the transcription quality is not good enough, try medium again. Do not use the largest model at the beginning, otherwise it will be difficult to determine whether the model is slow, the CPU is slow, or the service is stuck when troubleshooting.
Summary word suggestions
Once the transcription is complete, LLM can be used to generate structured minutes. Prompt words can be fixed into templates:
|
|
For local models, if the verbatim manuscript is too long, it should be summarized in segments and then summarized. Don’t cram several hours of meetings into one sitting.
Common errors: Container startup fails
Typical performance:
|
|
Common reasons:
- Mirroring architecture is not supported by your NAS CPU.
- Insufficient permissions on the mounting directory.
- Environment variables are missing.
- The port is occupied.
- The configuration file path is written incorrectly.
Check order:
- Look at the container log.
- Confirm that the image supports
amd64orarm64. - Check directory permissions.
- Change to an unoccupied port.
- Start with the minimum configuration first, and then gradually add models and LLM.
exec format error It is likely that the image architecture does not match.
Common error: No response after uploading audio
Possible reasons:
- The upload directory is not mounted inside the container.
- The service only scans specific suffixes.
- The file was scanned by the task before it was finished writing.
- The file name contains special characters.
- The background task queue is stuck.
It is recommended to test with a simple file name first:
|
|
Do not use long file names containing spaces, Chinese brackets, or special symbols from the beginning. After running through, test the real file again.
Common error: Transcription is very slow
Slow translation on NAS is common and may not necessarily be due to a faulty deployment.
Optimization method:
- Change to a smaller Whisper model.
- Convert the audio to 16k mono first.
- Cut long meetings into segments.
- Avoid both transcribe and LLM summarization filling up the CPU.
- Put the transcription tasks on more powerful machines, and NAS only does storage.
It’s not surprising on a low-power NAS if an hour-long meeting takes dozens of minutes. The key is to be able to finish the run stably.
Common errors: Transcription garbled characters or language recognition errors
Possible reasons:
- Automatic language detection failed.
- The audio is too noisy.
- Abnormal sampling rate or audio channel.
- The model is too small.
- The mixed Chinese and English scenes are too complicated.
Processing method:
- Explicitly specify the language as Chinese.
- First use ffmpeg to unify the audio format.
- Change to
smallormediummodel. - Try to improve the recording quality for multi-person meetings.
- Keep the original audio of important meetings for easy review.
Common error: Ollama connection failed
Typical performance:
|
|
Troubleshooting:
- Is Ollama running?
LLM_BASE_URLis written correctly.- Whether the
localhostaccessed in the container points to itself, not the NAS or host. - Is the model already
ollama pull. - Whether the NAS firewall allows intranet access.
If the conference assistant is in a container, http://localhost:11434 usually refers to the container itself. When Ollama is on the host or another machine, the corresponding intranet IP must be written.
Common errors: poor summary quality
Poor summary quality is usually not a deployment issue but an input and model issue.
Common reasons:
- There are too many typos in the verbatim manuscript.
- The session is too long and one input is out of context.
- The local model is too small.
- There is no constraint output format for prompt words.
- The action items are not clearly stated in the original text.
Improvement method:
- Start with a 10 to 20 minute segmented summary.
- Make a summary at the end.
- Require the model to be marked “uncertain”.
- Use fixed fields for action items.
- Manual review of important meetings.
A local model can save costs, but don’t expect it to automatically complete information that wasn’t said in the meeting.
Frequently Asked Questions: Not enough NAS memory
If the NAS has small memory, it is recommended to:
- Select
baseorsmallas the transcription model. - Don’t run big LLM on NAS.
- Limit concurrent tasks to 1.
- Close unnecessary containers.
- Place the model cache on a volume with sufficient space.
If OOM occurs frequently, it means that this NAS is more suitable for storage and not suitable for use as the main inference machine.
What to pay attention to about privacy and permissions
Meeting recordings often contain sensitive information, and on-premises deployments cannot ignore permissions.
suggestion:
- Set access permissions for the input/output directory.
- Do not expose the Web UI directly to the public network.
- Use VPN or reverse proxy authentication for external network access.
- Regularly clean temporary audio and intermediate files.
- Important meeting results retain the manual review process.
- If you connect to cloud LLM, you need to know which texts will be uploaded.
“Deployed on NAS” does not automatically equal security, permissions and network boundaries still need to be managed by yourself.
Recommended implementation process
The first deployment can be done in this order:
- Create input, output, models, and config directories on the NAS.
- Use Docker to run the conference assistant service.
- Upload a 1-minute test audio.
- Confirm the transcribed link using the
tinyorbasemodel. - Change to the
smallmodel to test the Chinese accuracy. - Connect to Ollama or OpenAI compatible LLM for summary.
- Configure regular cleanup and permission control.
- Process the real meeting recording again.
Don’t start with a two-hour session recording test. Use short audio to verify the link first, which saves time and facilitates troubleshooting.
FAQ
Is it possible to perform complete local offline transcription on NAS?
Yes, but only if the transliteration model, digest model, and all dependencies are local. If the abstract calls the cloud LLM, it is not completely offline. It is recommended to clearly distinguish the sources of STT and LLM in the configuration.
Can Synology, Feiniu, and TrueNAS be deployed?
As long as you can run Docker or similar container services, in theory it’s OK. The differences are mainly in paths, permissions, port mappings and CPU architecture.
Is ARM NAS suitable for running?
Lightweight transcription can be run, but image compatibility and performance must be confirmed in advance. Many AI images give priority to amd64 by default, and ARM devices are prone to architecture mismatches.
Does the meeting recording assistant require a GPU?
uncertain. CPU can also transwrite, but it is slower. Acceptable for short audio and low-frequency use; GPU machines are recommended for a large number of meetings or long videos.
In what format should the output be saved?
It is recommended to save at least txt or md verbatim, srt subtitles, and md abstract. Markdown is best for subsequent searching, archiving, and human editing.
Can it automatically identify different speakers?
This depends on whether the tool you are using supports speaker diarization. It is more complex and resource intensive than ordinary transcription. The important meeting recommended that “speaker recognition” be regarded as an enhanced feature and not a required feature in the first version.
Can I directly monitor the meeting recording folder automatically?
Yes, but please note that the file writing is completed before processing. Otherwise, the task will start to be transcribed before the recording is uploaded, and it is easy to fail. You can use the temporary directory to add and move it after completion.
Can the local model summary be directly used as a formal record?
Not recommended. AI summaries are good as first drafts, especially if action items and responsibilities require human review. Be even more cautious about client meetings, legal meetings, and important decision-making meetings.
summary
The key to locally deploying the AI meeting recording assistant on the NAS is not to install the most complex platform at once, but to run through the stable link first: the audio enters the NAS, the container can read, the transcription can be completed, the summary can be generated, and the results can be archived. When performance is insufficient, don’t force the NAS to take on all inferences. You can let it take care of storage and task management, and put the transcription or LLM on a stronger intranet machine.
The first edition recommends starting with short audio, lightweight models, and single-task concurrency. Once the table of contents, permissions, transcription, and summarization are stable, add automatic monitoring, team permissions, search, and long-term archiving.