Generating splash images The splash images on the page were configured with FFMPEG tool with following command line argument. ffmpeg -i my_movie.flv -f image2 -s 320×240 my_image.jpg The command is not optimized in any ways. You can play with the tool and send us a better command if you like.
Monthly Archives: July 2010
reload software:507 on BB bold
1. Download and Install the preferred OS on your PC. Here is the latest official osĀ 4.6.0.301 2. Delete “vendor.xml” file (C:\Program Files\Common Files\Research In Motion\AppLoader) 3. Connect bold to PC 4. Run “Loader.exe” (The file can be found at the same location as vendor.xml). This will initiate operating system loading.
How to Send RSS Feeds to Twitter and Facebook
http://thesocialmediaguide.com.au/2010/04/25/how-to-send-rss-feeds-to-twitter-and-facebook/ http://app.dlvr.it/ http://www.slideshare.net/iglassbox/how-to-send-rss-feeds-to-twitter-and-facebook
Text to Speech | Voice
Home http://tts.loquendo.com/
You Tube Flash AS3 / AS2 Data & Player API
Recently I have been working on something involving the use of video content from You Tube. With the lack of a good API out there I created my own. Below is a simple example of this working with sample code to download further below.
PHP mail validation function
function valid_email($str) { return ( ! preg_match(“/^([a-z0-9\+_\-]+)(\.[a-z0-9\+_\-]+)*@([a-z0-9\-]+\.)+[a-z]{2,6}$/ix”, $str)) ? FALSE : TRUE; }