craft-videoembedder
craft-videoembedder copied to clipboard
Video Title
It'd be great to be able to pull the Video's title too!
+1
Sorry for the delay! I'm answering this blindly without testing, but you should be able to use the getTitle
function:
{% set videoUrl = 'https://www.youtube.com/watch?v=6xWpo5Dn254' %}
{% set videoTitle = craft.videoEmbedder.getTitle(videoUrl) %}
{% if videoTitle | length %}
<h2>{{ videoTitle }}</h2>
{% endif %}