As usual in things code-related, I can think of a few ways of achieving this but I think the easiest would be to place the video inside a div that has a wood grain background image. So the html would look like....
Code:
<div class="wood">
<div class="video">
<iframe src="http://www.youtube.com/embed/MOVIEID?fs=1&autoplay=1&loop=1&rel=0&border=0&modestbranding=1" width="560" height="315" frameborder="0"></iframe>
</div> <!--closes video-->
</div> <!--closes woodgrain-->
and the css:
Code:
.wood {
backround: url("/path/to/wood/image.jpg");
padding: 4ex 3em;
}
.video {
border-radius: 20px;
width:560px;
margin: auto;
overflow:hidden;
}
This should create a video div nested inside of another div (which has woodgrain as its image), with some padding around the edges. The padding will reveal the woodgrain, giving the appearance of a wooden border around the video.
You might have to adjust margins ond image repeats/tiling and things like that, but that is the general idea.