## On-Site Recording

### Feature Introduction

The on-site recording feature supports real-time collection of multi-party speech audio from meetings, lectures, etc. via earphones, cards, and other recording devices, uploading the audio data to the cloud for speech transcription and AI-powered summarization. The system helps users efficiently record meeting content and automatically summarize key information, enhancing the intelligence of meeting management and information organization.

<img alt="On-Site Recording" src="https://images.tuyacn.com/rms-static/672d70f0-8a64-11f1-82af-d1f3191773d6-1785229925759.PNG?tyName=IMG_9153.PNG" width="300" height="400"></br>

### Interaction Flow

```mermaid
sequenceDiagram
    %% Panel initiates on-site recording
    rect rgb(191, 223, 255)
    Panel->>App: Initiate on-site recording
    end

    %% App starts recording task and obtains audio stream via pickup device
    rect rgb(255, 239, 191)
    App->>Pickup Device: Start recording task
    Pickup Device-->>App: Transmit audio stream in real time
    end

    %% Panel ends recording
    rect rgb(255, 191, 191)
    Panel->>App: End recording
    end

    %% App saves audio file locally
    rect rgb(191, 255, 191)
    App->>App: Save audio file locally
    end
```
