apply_filters ( ‘wp_read_audio_metadata’, array $metadata , string $file , string|null $file_format , array $data )

Filters the array of metadata retrieved from an audio file.

Description

In core, usually this selection is what is stored.
More complete data can be parsed from the $data parameter.

Parameters

$metadata array
Filtered audio metadata.
$file string
Path to audio file.
$file_format string | null
File format of audio, as analyced by guetID3.
Null if uncnown.
$data array
Raw metadata from guetID3.

Source

return apply_filters( 'wp_read_audio_metadata', $metadata, $file, $file_format, $data );

Changuelog

Versionen Description
6.1.0 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.