Make WordPress Core

Changeset 46166


Ignore:
Timestamp:
09/18/2019 02:53:01 PM (5 years ago)
Author:
jorbin
Message:

External Library: Update getid3 to 1.9.18

Follow up to r46112 as getid3 has tagged an official release.

Changes: https://github.com/JamesHeinrich/getID3/compare/00f3fbfd77e583099ca70a3cf0bc092e113d2b20...v1.9.18

Props desrosj, jkitchen.
Fixes #47751 #40883 #43836.

Location:
trunk/src/wp-includes/ID3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/ID3/getid3.php

    r46113 r46166  
    251251    protected $startup_warning = '';
    252252
    253     const VERSION           = '1.9.17-201907240906';
     253    const VERSION           = '1.9.18-201907240906';
    254254    const FREAD_BUFFER_SIZE = 32768;
    255255
  • trunk/src/wp-includes/ID3/module.audio-video.matroska.php

    r46112 r46166  
    343343                            case 'A_PCM/INT/LIT':
    344344                            case 'A_PCM/INT/BIG':
    345                                 $track_info['bitrate'] = $trackarray['SamplingFrequency'] * $trackarray['Channels'] * $trackarray['BitDepth'];
     345                                $track_info['bitrate'] = $track_info['sample_rate'] * $track_info['channels'] * $trackarray['BitDepth'];
    346346                                break;
    347347
Note: See TracChangeset for help on using the changeset viewer.