Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Mobile and Embedded
  4. Opencv play mp4 but there is no sound
Qt 6.11 is out! See what's new in the release blog

Opencv play mp4 but there is no sound

Scheduled Pinned Locked Moved Unsolved Mobile and Embedded
2 Posts 2 Posters 559 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.
  • DQUY05D Offline
    DQUY05D Offline
    DQUY05
    wrote on last edited by
    #1

    Hi everyone !

    I use Qt5, and opencv play mp4 file, has a good picture, but I want more sound then I need to do something more

        VideoCapture cap1("/storage/emulated/0/Download/QV5.mp4");
        while(true)
        {
        Mat ft;
        if (cap1.read(ft))
        {
        cv::resize(ft,ft, Size(300, 300),INTER_AREA);   // thay đổi kích thước
        QImage img= QImage((const unsigned char*)(ft.data),
                                            ft.cols,ft.rows,
                                            QImage::Format_BGR888);   // hiển thị
         ui->label_2->setPixmap(QPixmap::fromImage(img));  // show lên label
        }
         QCoreApplication :: processEvents ();
        }
    

    Thanks!

    1 Reply Last reply
    0
    • SGaistS Offline
      SGaistS Offline
      SGaist
      Lifetime Qt Champion
      wrote on last edited by
      #2

      Hi,

      Either use QtMultimedia or VLC or even ffmpeg. OpenCV is not a multimedia playback library.

      Interested in AI ? www.idiap.ch
      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

      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