For web accessibility reasons I need to have a title on the iframe generated by oembed for youtube videos. i found a hack that lets you specify the title but that makes it the same for all videos. is there a way to have oembed add the video title to the iframe as the title attribute?
the current code generated:
<iframe width="604" height="340" src="http://www.youtube.com/embed/VLK9ckgeXAc?feature=oembed" frameborder="0" allowfullscreen=""></iframe>
the desired code:
<iframe width="604" height="340" title="title of video" src="http://www.youtube.com/embed/VLK9ckgeXAc?feature=oembed" frameborder="0" allowfullscreen=""></iframe>