Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. QAudioOutput not play with correct timming on Android
Qt 6.11 is out! See what's new in the release blog

QAudioOutput not play with correct timming on Android

Scheduled Pinned Locked Moved Unsolved General and Desktop
1 Posts 1 Posters 509 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • L Offline
    L Offline
    lqsa
    wrote on last edited by
    #1

    My application is using QAudioOutput to play a previously audio captured with QAudioInput, but the audio reproduced seems like was played at maximum speed possible by the CPU phone, not with the correct timming. How can reproduce the sound with the timming specified on format?

    QAudioFormat format;
    format.setSampleRate(8000);
    format.setChannelCount(1);
    format.setSampleSize(16);
    format.setCodec("audio/pcm");
    format.setByteOrder(QAudioFormat::LittleEndian);
    format.setSampleType(QAudioFormat::SignedInt);
    
    QBuffer *buffer = new QBuffer(data);
    buffer->open(QIODevice::ReadOnly);
    QAudioOutput *audioOutput = new QAudioOutput();
    audioOutput->start(buffer);
    
    1 Reply Last reply
    0

    • Login

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Get Qt Extensions
    • Unsolved