Hey there, it looks like this is your first time here. May I suggest subscribing to this blog and checking out these articles.

SOME RANDOM DUDE

Tag Results for ''

YouTube Opens Up, Levels Video Playing Field… Almost

March 12th, 2008

Say what you want about Google, they are the gargantuan multi-billion-dollar conglomerate, but the news from YouTube to radically open its platform has Google written all over it. With the features they have opened up, developers can (almost) essentially use YouTube as a free video hosting/serving solution. As expected, the videos will also be viewable on YouTube, but for people with little wallets and big ideas, this does not seem like a bad tradeoff. Services like Brightcove are going to no doubt lose some clients with less hefty pocketbooks.
(more…), , , , , , , , , , , , , , , , ,

Daily Delicious - Video in Actionscript 3

February 6th, 2007

For nearly the past year of my life, Flash Video has been the main focus of my work. I was fortunate enough to have the opportunity to build the next-generation Flash Video player for Current TV in 2006 and I am currently working on another video player project for another large online media organization. With Actionscript 3.0 becoming a more viable option for development with every passing day (Flash Player 9 is up to about 50% penetration already), I am very interested in how the video model works under the new version of Flash’s programming language. After mucking around in AS3 for a short time, I was surprised at how easy the migration is - luckily, video is no exception.

I read a well done mini-writeup on Actionscript 3 video and I came away very excited at the prospect of using Actionscript 3 from this point forward. The code is leaner, and once and for all we can create a video object exclusively through Actionscript (it is about time).

Also, due to the Actionscript 3 event model (details here), no longer do we need to see this:


netStream.onStatus = function(sObj:NetStatusEvent)	{
	trace("sObj.info.code")
}

This has never been fun due to scoping issues and just an overall bloat to your code.


netStream.addEventListener(NetStatusEvent.NET_STATUS, status);

public function status(sObj:NetStatusEvent):Void	{
	trace(sObj.info.code);
}

With event listeners, it keeps the code much more consolidated with no more scoping problems and nested functions. Beautiful stuff. My next video project will most definitely be in Actionscript 3, my hope is all my future projects will be as well.

del.icio.us link, , , , , , , , ,

Daily Delicious - Actionscript 3 Live JPEG Encoder

January 4th, 2007

I stumbled upon a great actionscript blog and discovered a pretty amazing Actionscript 3 Flash application. Simply, it dynamically encodes a JPEG from a playing FLV (Flash video) file and allows you to either save it to the server or to your own computer. Have a look at the project page for more details. This is just one small yet very cool reason why Actionscript 3 is going to dramatically change what can be done on the web. I have begun to slowly delve into AS3 and I am pretty amazed at the possibilities.

Not to beat a dead horse, but anti-flash standardistas, try doing that with AJAX.

del.icio.us link, , , , , , , , , , ,

Anti-Flash Standardistas - You’re Cutting Off Your Nose to Spite Your Face

December 4th, 2006

The more I read attacks on Flash, the more I end up shaking my head in confusion. Honestly, I am a little surprised this is still being debated. People, we need to get over this. Before I elaborate further, I want to make clear my support for web standards, usability and accessibility. Additionally, I understand the concern with Flash - it is not as easy to make accessible compared to HTML/CSS, it has, and continues, to be used for some really stupid things, etc., etc., etc. We have all been down that road, we have heard the arguments. That being said, standardistas: you are fighting a losing battle, and on top of it, a battle not worth fighting. Flash is about as standards-friendly as any media plug-in there is. For each bad use of Flash, there are hundreds being used well. Lastly, and more importantly, it is changing what we can do on a browser and how our generation accesses media. Please, for everyone’s sake, stop griping about Flash and start educating people on how it can be used more effectively with standards and accessibility in mind.
(more…), , , , , , , , , , , ,

Additional Doodads

Subscribe to Some Random Dude

Related Entries:

Most Commented Pages