Index: src/bp-core/classes/class-bp-embed.php
===================================================================
--- src/bp-core/classes/class-bp-embed.php
+++ src/bp-core/classes/class-bp-embed.php
@@ -205,6 +205,8 @@
 
 			// Grab cache and return it if available.
 			if ( !empty( $cache ) ) {
+				/** This filter is documented in /wp-includes/class-wp-embed.php */
+				$cache = apply_filters( 'embed_oembed_html', $cache, $url, $attr, 0 );
 
 				/**
 				 * Filters the found cache for the provided URL.
@@ -238,6 +240,8 @@
 
 				// If there was a result, return it.
 				if ( $html ) {
+					/** This filter is documented in /wp-includes/class-wp-embed.php */
+					$html = apply_filters( 'embed_oembed_html', $html, $url, $attr, 0 );
 
 					/** This filter is documented in bp-core/classes/class-bp-embed.php */
 					return apply_filters( 'bp_embed_oembed_html', $html, $url, $attr, $rawattr );
