Found a solution
Here's how I did to place a Youtube video on my Author page
Step 1
You need to enter the Youtube share link into a field in the administration... I used Jabber / GTalk and change the title for "Youtube Link"
Step 2
In your author.php file, you need to get the value of the above field and call it into a variable.
$link = $curauth->jabber;
$pieces = explode("/", $link);
?>
This part of code use a specific function found on the web to retrive some information...
If I echo $link, I get this http://youtu.be/XXXXXXX-XX for exemple.
Then after, with the explode PHP function, I explode in array the text everytimes it founds a /
So,
$pieces[0] = http:
$pieces[1] =
$pieces[2] = youtu.be
$pieces[3] = XXXXXXX-XX
The $pieces[3] is the one I actually search.
Step 3
Call your iframe and echo the $pieces[3] into the link.
<iframe width="560" height="349" src="http://www.youtube.com/embed/<?php echo $pieces[3]; ?>" frameborder="0" allowfullscreen></iframe>
Hope this help some one!