stopStream()

in ChatbotUI/src/app/components/main/main.component.ts [194:202]


  stopStream() {
    if (this.stream) {
      this.isRecording = false;
      const tracks = this.stream.getAudioTracks();
      tracks.forEach(track => track.stop());
      this.stream = null;
      console.log('Microphone stream stopped.');
    }
  }