## 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/c460c530-7e38-11f0-9f57-5d628208d2a7-1755744272643.png?tyName=live.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
```
