Skip to main content

Zencoder - A Fantastic Online Encoding Tool

Ever run into a situation where you need to encode a bunch of different videos to a bunch of different formats?

I ran into just that situation recently when I was working on www.barrydonlevy.com.  I needed to have a variety of formats for an HTML5 video site with Flash video fall-back.  I tried encoding on my own computer using one the many free online applications you can download.  Unfortunately, I wasted a lot of time with my code because I didn't realize that my encodings were not working properly with certain browsers.  Looking into the issue more, I realized it wasn't an issue with my coding, but an issue with the actually encoding program I was using and I was pointed towards Zencoder.


Zencoder is an online encoding service that lets you upload your videos for encoding.  You have a slew of options to choose from and a variety of outputs to choose from.  Options range from file size and resolution to upscaling options and compression levels.  Output file types consist of .webm, .ogv, .avi, .mp4, etc...it covers all the HTML5 and "common" variants.

You upload your file, select the settings you want, and then click "create job".  You can have the site send an email when the encoding process is complete, create more jobs, or just wait for your job to complete.  A 5 minute video only took a couple of minutes to encode.

Now, they do charge you for this service, but I have to say that it is absolutely worth it.  At $0.05 a minute of encoded video, you get an outputted video file that is assured to play everywhere you can think of.  Consider it the cost of "peace of mind".  For all the videos I encoded (about 10), I believe I was charged about $1.50. Just for the amount of time this service saved me, it is absolutely worth the price.

Great service, great website.  I absolutely recommend it for any and all encoding jobs you may have.

Comments

Popular posts from this blog

How To Run Chrome From Within Notepad++

If you have recently tried to Run  Chrome from within Notepad++ recently, you've probably encountered the same issue I did.  Chrome didn't run. The fix is actually really simple.  Open up the Run box in Notepad++ and browse to your installation of Chrome. ie.  C:\Program Files\Google\Chrome\Application\Chrome.exe Select the file when you find it.  Now, the trick is: Put quotation marks around the path you see in the Run  box.  Now, put 1 space after the closing quotation mark. Type this: $(FULL_CURRENT_PATH) It'll look something like this: Click Run .  If Chrome opens, click Save and set your hotkey.

Developer Note: Virtuemart - Editing the Add to Cart MooTool Popup

To edit the “Add To Cart” popup that appears when you add an item to a cart in Virtuemart, there are few files that you need to know about. These are the files to know \components\com_virtuemart\themes\default\theme.js \components\com_virtuemart\js\mootools\   - contains the files for editing the appearance of the popup. To edit the appearance of the box, edit \components\com_virtuemart\js\mootools\mooPrompt.css to change the styles as well as editing the 2 images in the directory to edit how they appear as well (close box and header-background)

Proper Viewport Scaling on iPad and iPhone

So, this is a little silly and I'm a little embarrassed to say that I've spent far too much of my time on this issue. I had a multi-page site that wasn't displaying correctly on my iPad.  One page would look great, but the next would have the top menu cut off on the right and everything would be slightly zoomed in. I realized that it was a scaling issue, but for all the experimenting I did with the meta viewport tag , I couldn't get it to work. Then I thought of something...some pages didn't have as much content as the others.  The longer pages were displaying great, it was the pages short on content that weren't.  So, I went ahead and set a min-height for each page of 1050px (I figured it had to be a little larger than the 1024px portrait height of an iOS device) and voila, it worked. All the pages showed correctly.  Now, I fully admit that this is most likely a hack that isn't considered the "proper way", but I am absolutely open to sugge...