Create your own text to speech converter software to make your computer speak whatever you type. Steps 1. Open the Notepad. 2.Copy/Write the code as given below into the notepad. Dim message, sapimessage=InputBox(“What do you want me to say?”,”Speak to Me”)Set sapi=CreateObject(“sapi.spvoice”)sapi.Speak message 3. Save the file with any name with an extension .vbs 4. [...]
Archive for the ‘Multimedia’ Category
How to Make Your Computer Speak Whatever You Type
Posted: April 9, 2011 in Multimedia, Programming Tips, Tips and Tricks, WindowsMost Essential Free Softwares after Windows Installation
Posted: April 24, 2010 in Applications, Multimedia, Tips and Tricks, Vista, Windows, Windows 7, XPAs a Windows lover, I have always tried to make it more secure, convenient and easy to use. This is my must-have list of 25 Free Softwares and Utilities that I use as an installation checklist on every fresh Windows installation. After these are installed, Windows is much more stable and powerful. These apps and [...]
VLC 1.0 has gotten several cool new features, one of which is the ability to record what is playing in the screen. Here we will take a look at how easy it is to record a DVD or other video formats using VLC. Record Using VLC You won’t see the record [...]
Interpolation (Resizing) of a Bitmap image
Posted: October 20, 2009 in C, C++, CUDA, Multimedia, Programming Tips, VC++Tags: *.bmp, Bitmap, C++, CUDA, Image, Interpolation, Multimedia, Pixel, Programming Tips, RAW, Resizing, VC++
Interpolation (Resizing) of a Bitmap image
To Change the Sharpness of R, G,B values of a Pixel of the image
Posted: October 16, 2009 in C, C++, CUDA, Multimedia, Programming Tips, VC++Tags: *.bmp, Bitmap, C++, CUDA, Image, Multimedia, Pixel, Programming Tips, RAW, RGB, VC++
To Change the Sharpness of R, G,B values of a Pixel of the image
To Change the Contrast of R, G, B values of a Pixel of the image
Posted: October 16, 2009 in C, C++, CUDA, Multimedia, Programming Tips, VC++Tags: *.bmp, Bitmap, C++, Contrast, CUDA, Image, Multimedia, Pixel, Programming Tips, RAW, RGB, VC++
To Change the Contrast of R, G, B values of a Pixel of the image
To Change the brightness of a Pixel of the image
Posted: October 16, 2009 in C, C++, CUDA, Multimedia, Programming Tips, VC++Tags: *.bmp, Bitmap, Brightness, C++, CUDA, Image, Multimedia, Pixel, RAW, RGB
To Change the brightness of a Pixel of the imag
To Change the Gamma of R, G,B values of a Pixel of the image
Posted: October 14, 2009 in C, C++, CUDA, Multimedia, Programming Tips, VC++Tags: *.bmp, Bitmap, C++, Gama, Image, Multimedia, RAW, RGB, VC++
To Change the Gamma of R, G,B values of a Pixel of the image
To Change the Saturation of R, G, B values of a Pixel of the image
Posted: October 14, 2009 in C, C++, CUDA, Multimedia, Programming Tips, VC++Tags: *.bmp, Bitmap, C++, CUDA, Image, Multimedia, Pixel, Programming Tips, RAW, RGB, Saturation, VC++
To Change the Saturation of R, G, B values of a Pixel of the image
To get the R, G, B values of a pixel from a packed or interlaced frame
Posted: October 14, 2009 in C, C++, CUDA, Multimedia, VC++Tags: *.bmp, B, Bitmap, C++, G, Image, Multimedia, Pixel, R, RAW, RGB
#define BCHANNEL 0 #define GCHANNEL 1 #define RCHANNEL 2 unsigned char Clip(int iVal) { return ( iVal > 255 ? 255 : ( iVal < 0 ) ? 0 : iVal) ; } //Pixel Functions int GetValue(int iX, int iY, int iImageWidth, int iImageHeight, int iChannel, int iBPP, BYTE *pbySrc) { Clip(iX); Clip(iY); return pbySrc[iY [...]