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. Multimedia accurate pause
Qt 6.11 is out! See what's new in the release blog

Multimedia accurate pause

Scheduled Pinned Locked Moved General and Desktop
1 Posts 1 Posters 693 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.
  • ? Offline
    ? Offline
    A Former User
    wrote on last edited by
    #1

    Hi, I'm trying to make a subtitle editor with Qt using QtMultimedia,
    I want to be able to play one part, starting at a specific time and pausing at the specific time,
    I'm currently using positionChanged as following:
    @
    connect(player, SIGNAL(positionChanged(qint64)), SLOT(positionChanged(qint64)));
    void MyApp::positionChanged(qint64 time)
    {
    if(stopTime>0 && time>=stopTime && player->state()==QMediaPlayer::PlayingState)
    {
    stopTime = -1;
    player->pause();
    return;
    }
    }
    @
    but it is not accurate and playback pauses at some time after desired time,
    is there another way for that?

    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