Custom video player

I would like to design a custom video player interface for use on a website.

Is there a tutorial and code that show you how to integrate the code into a custom interface designed in Photoshop?

Thanks.

Yes there’s a tutorial on creating a video player on gotoandlearn.com

Yeah EastCoast is right, there’s so many instruction there for you to learn on creating a video. Check gotoAndLearn() - Free video tutorials from Lee Brimelow on Adobe Flash

Thanks for the link.

I saw those videos and it seems that they use Flash to create the interface.

What I really want to know is how to code a video player made from a Photoshop. Or is it the same?

Here are some video players PSD design tutorials:

Create a Slick Video Player UI in Photoshop

Video Player Interface [PSD] | SwiftPSD.com

How can I code one of these?

ok. He imports it into flash so I will try that.

you can use html5
<video width=“320” height=“240” controls=“controls”>
<source src=“movie.mp4” type=“video/mp4” />
<source src=“movie.ogg” type=“video/ogg” />
<source src=“movie.webm” type=“video/webm” />
Your browser does not support the video tag.
</video>