qfjp / MediaLibraryCompression

A script to convert video files to x265 codec in mp4 containers. Forces hvc1 for MacOS Big Sur compatibility
GNU General Public License v3.0
2 stars 1 forks source link

Assumed stream index order is wrong #6

Closed qfjp closed 12 months ago

qfjp commented 1 year ago

The assumed order for streams and their indices is [Video(s), Audio(s), Subtitle(s)]. However, in my collection there is at least on video where the Audio Stream index is 0, then the Video Stream index follows with 1 -> [Audio, Video] (this video has only one of each, with no text tracks). It stands to reason that these can be in any order, and only 'well-behaved' files stick to the original index order..

The 'misbehaved' file can be found in the Internet Archive Looney Tunes Collection, specifically Bosko the Talk-Ink Kid.

The mediainfo JSON for the file is below. Note the StreamOrder and ID fields for the @type=Video|Audio streams:

{
  "creatingLibrary": {
    "name": "MediaInfoLib",
    "version": "23.07",
    "url": "https://mediaarea.net/MediaInfo"
  },
  "media": {
    "@ref": "/home/<redacted>/Looney Tunes - S1929E01 - Bosko the Talk-Ink Kid HDTV-1080p.mp4",
    "track": [
      {
        "@type": "General",
        "VideoCount": "1",
        "AudioCount": "1",
        "FileExtension": "mp4",
        "Format": "MPEG-4",
        "Format_Profile": "Base Media",
        "CodecID": "isom",
        "CodecID_Compatible": "isom/iso2/avc1/mp41",
        "FileSize": "137351897",
        "Duration": "283.467",
        "OverallBitRate": "3876342",
        "FrameRate": "23.976",
        "FrameCount": "6796",
        "StreamSize": "147438",
        "HeaderSize": "40",
        "DataSize": "137204467",
        "FooterSize": "147390",
        "IsStreamable": "No",
        "Title": "1929. Bosko, the Talk Ink Kid (Bosko)(0)[Blu-Ray]",
        "Movie": "1929. Bosko, the Talk Ink Kid (Bosko)(0)[Blu-Ray]",
        "Genre": "Animation",
        "File_Modified_Date": "2023-09-07 11:57:37 UTC",
        "File_Modified_Date_Local": "2023-09-07 07:57:37",
        "Encoded_Application": "Lavf57.26.100",
        "Comment": "Blu-Ray"
      },
      {
        "@type": "Video",
        "StreamOrder": "1",
        "ID": "2",
        "Format": "AVC",
        "Format_Profile": "High",
        "Format_Level": "4",
        "Format_Settings_CABAC": "Yes",
        "Format_Settings_RefFrames": "4",
        "CodecID": "avc1",
        "Duration": "283.450",
        "BitRate": "3767892",
        "Width": "1380",
        "Height": "1080",
        "Stored_Width": "1392",
        "Stored_Height": "1088",
        "Sampled_Width": "1380",
        "Sampled_Height": "1080",
        "PixelAspectRatio": "1.000",
        "DisplayAspectRatio": "1.278",
        "Rotation": "0.000",
        "FrameRate_Mode": "CFR",
        "FrameRate_Mode_Original": "VFR",
        "FrameRate": "23.976",
        "FrameRate_Num": "24000",
        "FrameRate_Den": "1001",
        "FrameCount": "6796",
        "ColorSpace": "YUV",
        "ChromaSubsampling": "4:2:0",
        "BitDepth": "8",
        "ScanType": "Progressive",
        "StreamSize": "133501161",
        "Encoded_Library": "x264 - core 148 r2665 a01e339",
        "Encoded_Library_Name": "x264",
        "Encoded_Library_Version": "core 148 r2665 a01e339",
        "Encoded_Library_Settings": "cabac=1 / ref=1 / deblock=1:0:0 / analyse=0x3:0x113 / me=hex / subme=2 / psy=1 / psy_rd=1.00:0.00 / mixed_ref=0 / me_range=16 / chroma_me=1 / trellis=0 / 8x8dct=1 / cqm=0 / deadzone=21,11 / fast_pskip=1 / chroma_qp_offset=0 / threads=12 / lookahead_threads=4 / sliced_threads=0 / nr=0 / decimate=1 / interlaced=0 / bluray_compat=0 / constrained_intra=0 / bframes=3 / b_pyramid=2 / b_adapt=1 / b_bias=0 / direct=1 / weightb=1 / open_gop=0 / weightp=1 / keyint=250 / keyint_min=23 / scenecut=40 / intra_refresh=0 / rc_lookahead=10 / rc=crf / mbtree=1 / crf=23.0 / qcomp=0.60 / qpmin=0 / qpmax=69 / qpstep=4 / ip_ratio=1.40 / aq=1:1.00",
        "extra": {
          "CodecConfigurationBox": "avcC"
        }
      },
      {
        "@type": "Audio",
        "StreamOrder": "0",
        "ID": "1",
        "Format": "AAC",
        "Format_Settings_SBR": "No (Explicit)",
        "Format_AdditionalFeatures": "LC",
        "CodecID": "mp4a-40-2",
        "Duration": "283.467",
        "Duration_LastFrame": "0.011",
        "BitRate_Mode": "CBR",
        "BitRate": "104514",
        "Channels": "2",
        "ChannelPositions": "Front: L R",
        "ChannelLayout": "L R",
        "SamplesPerFrame": "1024",
        "SamplingRate": "48000",
        "SamplingCount": "13606416",
        "FrameRate": "46.875",
        "FrameCount": "13287",
        "Compression_Mode": "Lossy",
        "StreamSize": "3703298",
        "Language": "en",
        "Default": "Yes",
        "AlternateGroup": "1"
      }
    ]
  }
}