# QTAudio **Repository Path**: NobodyFeng/QTAudio ## Basic Information - **Project Name**: QTAudio - **Description**: for sending and receiving audio frames in QT - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-11-07 - **Last Updated**: 2025-11-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README how to use these files in mainwindow.cpp in "mainwindow.h", define two objects: AudioPlayThread aud; audiosendthread audsend; in mainwindow.cpp: // to start the audio recieve thread: aud.setCurrenSampletInfo(8000,16,1); aud.setCurrentVolume(100); aud.start(); //to start the audio send thread: audsend.setaudioformat(8000,1,16); audsend.mystart();