Wed 13 May 2009
Need a (free) web based movie player?
Posted by Aaron under Playing Around, Web
No Comments
Here's the skinny...
If you hadn't heard, my sister and brother in law just had (well, he's 1 now) a baby boy, congrats!. Given how tech savvy they both are they take a ton of movies and photos and post them online for relatives from all around the country to watch. This is an awesome way to keep up on how the little guy is doing. However! Given that some of our relatives may be a bit more on the less tech savvy side I decided that making an interactive web based movie page would be a good way to help them view their new nephew, cousin, grandson or great grandson. You can see a demo of it here.
For starters, I've already done a few projects using the JW FLV Player. I use this player for a few reasons. First off, it's free to use for non-commercial purposes! And even if you do use it commercially, it's pretty dirt cheap. Second! It's got an insanely awesome javascript interface. You can pretty much completely control the player and hook into almost every event you can think of that the player may publish. This is great for web developers that know absolutely nothing about flash but still want the benefit of a flash based movie player. Lastly, this player is great because it constantly getting updates and there's a huge community behind it; always good stuff.
What you'll need
I did try to spruce up this player slightly so you'll need a few things if you'd like this to work on your server.
- mod_perl, along with the CGI, File::stat and DateTime packages. I imagine most come pretty standard with a vanilla install of PERL.
- ffmpeg, compiled with png support. I imagine a pretty standard install of ffmpeg should be fine.
- movie files, yup! you'll need some movies to view. Right now this is limited by the type of movie files that the player natively supports. I may add some transcoding using ffmpeg later if anyone actually uses this and wants it.
And that should be it! Pretty simple. I'm also using the YUI javascript toolkit, but Yahoo! has been kind enough to host that on their CDN. So no need to download all those crazy javascript files.
How to Install
Here are some quick install instructions:
- Grab the zip file from here
- Make a directory on your server (in my case aaronstaves.com/movietest) where you want the files to and unzip 'em there.
- Make a directory (if you need to) where you're movies are going to be placed. I put mine in aaronstaves.com/movietest/movies). This directory will need to be writable as far as your webserver is concerned. If you already have them you can forget this step!
- Edit the movies.conf file. You'll need to specify the absolute path of your movie director and the url that links to them.
- Once that's done you should be able to just go to your url and watch some movies!
Features
Sorting and Dates
I've made it so the player automatically sorts the movies by date. The newer movies are listed at the top and the older movies are listed at the bottom. It also grabs the date one of two ways. 1) if the date is specified in the filename (yyyymmdd format), it will use that. 2) otherwise it will grab the timestamp on the actual file. Neat huh?! The only downside to this is is that it has to touch each file(name) to do this. But I wanted to make this without the hassle of a DB, kind of a necessary evil. Hopefully with 100's of files, this won't be that much of a performance hit.
Native file support
As I said above, this natively supports mp4 (m4v, etc) files as well as flv files. So hopefully if your files are in that format, you won't have to deal with transcoding files. Awesome! As I said, transcoding wouldn't be that hard to do, but it would be pretty time consuming on the server side, pending on how large the files were, so I'm not sure how I'd go about that at the moment.
Downloads
See a movie you like? Well download it! You'll notice at the top of the screen when you play a movie, you'll get an awesome download link. For anyone that wants to actively share or archive these movies, I figured it would be a necessity.
Feedback
Right now I've only tested this in FF3+, IE 7 and the latest version of Opera. If anyone finds something wrong with it, let me know and I'll see if I can address those issues. Otherwise feedback, suggestions, comments and criticism is welcome. This is my first mini-project in a while that I've made to "distrubute" so somethings may be clear while others may not. Hopefully with the addition of the conf file, you won't have to touch any of the code I wrote. This small tutorial is written for them, but anyone is more than welcome to use it if they want their own personal video page to share with others. Enjoy!











