Add a hook to modify oEmbed resource data

Created on 22 March 2019, about 6 years ago
Updated 30 January 2023, about 2 years ago

I want to fetch the max resolution thumbnail from YouTube (1280x720), but OEmbed is providing only the the 480x360 thumbnail URL and there is currently no way to override that. Could a hook be provided to alter the OEmbed data? Currently one can only change the OEmbed url via hook_oembed_resource_url_alter().

{
  "author_url": "https://www.youtube.com/user/ZackScott",
  "provider_name": "YouTube",
  "height": 270,
  "thumbnail_width": 480,
  "thumbnail_height": 360,
  "width": 480,
  "version": "1.0",
  "html": "<iframe width=\"480\" height=\"270\" src=\"https://www.youtube.com/embed/M3r2XDceM6A?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>",
  "title": "Amazing Nintendo Facts",
  "provider_url": "https://www.youtube.com/",
  "thumbnail_url": "https://i.ytimg.com/vi/M3r2XDceM6A/hqdefault.jpg",
  "author_name": "ZackScott",
  "type": "video"
}

Implemented solution


/**
 * Alters the information provided by the oEmbed resource url.
 *
 * @param array $data
 *   Data provided by the oEmbed resource.
 * @param $url
 *   The oEmbed resource URL.
 */
function hook_oembed_resource_data_alter(array &$data, $url) {
  if (strpos($url, 'youtube.com/oembed') !== FALSE) {
    // Get the maximum resolution thumbnail from YouTube.
    $data['thumbnail_url'] = str_replace('hqdefault', 'maxresdefault', $data['thumbnail_url']);
  }
}

Release snippet

New hook (hook_oembed_resource_data_alter) available in Media to hook into the generated embed data.

✨ Feature request
Status

Needs work

Version

10.1 ✨

Component
Media  →

Last updated about 9 hours ago

Created by

🇳🇱Netherlands josé trindade

Live updates comments and jobs are added and updated live.
  • Needs subsystem maintainer review

    It is used to alert the maintainer(s) of a particular core subsystem that an issue significantly impacts their subsystem, and their signoff is needed (see the governance policy draft for more information). Also, if you use this tag, make sure the issue component is set to the correct subsystem. If an issue significantly impacts more than one subsystem, use needs framework manager review instead.

  • Needs issue summary update

    Issue summaries save everyone time if they are kept up-to-date. See Update issue summary task instructions.

Sign in to follow issues

Merge Requests

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

Production build 0.71.5 2024