Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-133113

AAC Audio Encoding No Longer Present When Upgrading to PySide 6.8.1.1

    XMLWordPrintable

Details

    • Bug
    • Resolution: Fixed
    • P4: Low
    • 6.8.3, 6.9.0
    • 6.8.1
    • Multimedia
    • None
    • MacOS arm64 PySide 6.7.0 Python 3.9
    • macOS
    • 79c76f961e5f9c4bcaee8b87febb4b89e279f6cb
    • Multimedia wk 51-2, Multimedia wk 5-6

    Description

      Hello! The AAC audio encoding is no longer present in resulting .mp4 files when upgrading to PySide 6.8.1.1 

      Please see Repro_2.zipwith the following code:

      # codec part that is failing in PySide 6.8
      media_format = QMediaFormat(QMediaFormat.MPEG4)
      audio_codec = QMediaFormat.AudioCodec.AAC
      video_codec = QMediaFormat.VideoCodec.H265
      media_format.setAudioCodec(audio_codec)        
      media_format.setVideoCodec(video_codec)        
      self.m_mediaRecorder.setMediaFormat(media_format)

      As you can see when running the instructions in Repro_2.zip readme.md, you can see that the resulting video file when using pip install to install pyside 6.8.1.1, will no longer have AAC audio encoding in it:

      (.venv) (base) ➜  repro2  mediainfo broken_codecs_6_8_1_1.mp4
      General
      Complete name                            : broken_codecs_6_8_1_1.mp4
      Format                                   : MPEG-4
      Format profile                           : Base Media
      Codec ID                                 : isom (isom/iso2/mp41)
      File size                                : 1.71 MiB
      Duration                                 : 6 s 171 ms
      Overall bit rate                         : 2 330 kb/s
      Frame rate                               : 29.970 FPS
      Writing application                      : Lavf61.1.100
      
      Video
      ID                                       : 2
      Format                                   : HEVC
      Format/Info                              : High Efficiency Video Coding
      Format profile                           : Main@L5@Main
      Codec ID                                 : hvc1
      Codec ID/Info                            : High Efficiency Video Coding
      Duration                                 : 6 s 171 ms
      Bit rate                                 : 2 251 kb/s
      Width                                    : 1 552 pixels
      Height                                   : 1 552 pixels
      Display aspect ratio                     : 1.000
      Frame rate mode                          : Variable
      Frame rate                               : 29.970 (29970/1000) FPS
      Minimum frame rate                       : 29.970 FPS
      Maximum frame rate                       : 30.000 FPS
      Color space                              : YUV
      Chroma subsampling                       : 4:2:0 (Type 2)
      Bit depth                                : 8 bits
      Bits/(Pixel*Frame)                       : 0.031
      Stream size                              : 1.66 MiB (97%)
      Color range                              : Limited
      Codec configuration box                  : hvcC
      
      Audio
      ID                                       : 1
      Format                                   : ER Parametric
      Codec ID                                 : mp4a-40-27
      Duration                                 : 6 s 59 ms
      Source duration                          : 6 s 80 ms
      Bit rate mode                            : Constant
      Bit rate                                 : 69.8 kb/s
      Sampling rate                            : 16.0 kHz
      Frame rate                               : 15.625 FPS (1024 SPF)
      Stream size                              : 51.6 KiB (3%)
      Source stream size                       : 51.8 KiB (3%)
      Default                                  : Yes
      Alternate group                          : 1
      

      But when downgrading to PySide 6.4.2, and running the exact same code, the resulting video file DOES have AAC audio encoding:

      (.venv) (base) ➜  repro2 mediainfo working_codecs.mp4
      General
      Complete name                            : working_codecs.mp4
      Format                                   : MPEG-4
      Format profile                           : Base Media / Version 2
      Codec ID                                 : mp42 (isom/mp41/mp42)
      File size                                : 3.23 MiB
      Duration                                 : 3 s 450 ms
      Overall bit rate                         : 7 852 kb/s
      Frame rate                               : 30.000 FPS
      Encoded date                             : 2025-01-22 15:38:38 UTC
      Tagged date                              : 2025-01-22 15:38:41 UTC
      
      Video
      ID                                       : 1
      Format                                   : HEVC
      Format/Info                              : High Efficiency Video Coding
      Format profile                           : Main@L5@Main
      Codec ID                                 : hvc1
      Codec ID/Info                            : High Efficiency Video Coding
      Duration                                 : 3 s 400 ms
      Bit rate                                 : 7 880 kb/s
      Width                                    : 1 552 pixels
      Height                                   : 1 552 pixels
      Display aspect ratio                     : 1.000
      Frame rate mode                          : Constant
      Frame rate                               : 30.000 FPS
      Color space                              : YUV
      Chroma subsampling                       : 4:2:0 (Type 2)
      Bit depth                                : 8 bits
      Scan type                                : Progressive
      Bits/(Pixel*Frame)                       : 0.109
      Stream size                              : 3.19 MiB (99%)
      Title                                    : Core Media Video
      Encoded date                             : 2025-01-22 15:38:38 UTC
      Tagged date                              : 2025-01-22 15:38:41 UTC
      Color range                              : Full
      Color primaries                          : BT.709
      Transfer characteristics                 : BT.709
      Matrix coefficients                      : BT.709
      Codec configuration box                  : hvcC
      
      Audio
      ID                                       : 2
      Format                                   : AAC LC
      Format/Info                              : Advanced Audio Codec Low Complexity
      Codec ID                                 : mp4a-40-2
      Duration                                 : 3 s 450 ms
      Source duration                          : 3 s 437 ms
      Bit rate mode                            : Constant
      Nominal bit rate                         : 128 kb/s
      Channel(s)                               : 2 channels
      Channel layout                           : L R
      Sampling rate                            : 44.1 kHz
      Frame rate                               : 43.066 FPS (1024 SPF)
      Compression mode                         : Lossy
      Source stream size                       : 33.1 KiB (1%)
      Title                                    : Core Media Audio
      Encoded date                             : 2025-01-22 15:38:38 UTC
      Tagged date                              : 2025-01-22 15:38:41 UTC
      

      Attachments

        1. Screenshot 2025-01-23 at 9.32.30 AM.png
          Screenshot 2025-01-23 at 9.32.30 AM.png
          32 kB
        2. Screenshot 2025-01-23 at 08.50.28.png
          Screenshot 2025-01-23 at 08.50.28.png
          246 kB
        3. Screenshot 2025-01-21 at 15.33.02.png
          Screenshot 2025-01-21 at 15.33.02.png
          130 kB
        4. Screenshot 2025-01-21 at 15.27.25.png
          Screenshot 2025-01-21 at 15.27.25.png
          177 kB
        5. Repro.zip
          39 kB
        6. Repro_2.zip
          5.01 MB
        7. pyside2991.py
          6 kB
        8. Oct-02-2024_01_32_59_PM.mp4
          1.26 MB
        9. Journaler-main.zip
          30 kB
        10. IMG_1681-1.png
          IMG_1681-1.png
          24 kB
        11. IMG_1681.png
          IMG_1681.png
          24 kB
        12. IMG_1679.png
          IMG_1679.png
          117 kB
        13. image-2025-01-03-19-38-17-764.png
          image-2025-01-03-19-38-17-764.png
          29 kB
        14. image-2025-01-03-19-37-26-292.png
          image-2025-01-03-19-37-26-292.png
          40 kB
        15. image-2025-01-03-19-36-49-370.png
          image-2025-01-03-19-36-49-370.png
          128 kB
        16. image-2025-01-03-16-24-50-411.png
          image-2025-01-03-16-24-50-411.png
          75 kB
        17. image-2025-01-02-16-10-07-640.png
          image-2025-01-02-16-10-07-640.png
          108 kB
        18. finder.png
          finder.png
          29 kB
        19. ffmpeg_journaler-1.png
          ffmpeg_journaler-1.png
          857 kB
        20. ffmpeg_journaler.png
          ffmpeg_journaler.png
          857 kB
        21. ffmpeg_camera.png
          ffmpeg_camera.png
          734 kB
        22. darwin_journaler.png
          darwin_journaler.png
          963 kB
        23. darwin_camera.png
          darwin_camera.png
          914 kB
        24. Archive.zip
          2 kB
        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

        Activity

          People

            tpochep Timur Pocheptsov
            pjohnst5 Paul Johnston
            Votes:
            0 Vote for this issue
            Watchers:
            7 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Gerrit Reviews

                There are no open Gerrit changes