Thanks for this. For anyone else who needs to know, I did have to adapt this a bit. I used the following
function recipe_video_output( $output, $attributes, $recipe ) {
if ( function_exists('lyte_parse') ) {
$output = lyte_parse( $output );
}
return $output;
}
add_filter( 'wprm_recipe_video_shortcode', 'recipe_video_output', 10, 3 );
It works perfectly! Thanks so much for your help! This has been a difficult problem to solve.