Saturday, January 12, 2008

GMail Adds Group Mailing List Functions

Google announced the 'group mail' option in gmail official blog on 10th of jan,
this feature is support for IE7, Firefox 2 and above.

Add Group



Add Contacts to the group










Send mail to the group

Wednesday, January 2, 2008

Movie player 4 linux

To install MPlayer from source code, download the code tarball. Extract the files into a temporary directory. Change to the directory into which you downloaded the files and enter the following commands:

./configure --enable-gui
make
su (if you're not already root)
make install

Thursday, December 27, 2007

Encoding of media files in Linux

mencoder
---------------
$mencoder -oac -ovc -o

audio-output-format option is given as

-oac copy no encoding, just streamcopy
-oac pcm encode to uncompressed PCM
-oac mp3lame encode to MP3 (using Lame)


video-output-format is given as

-ovc copy no encoding, just streamcopy
-ovc divx4 encode to DivX4/DivX5
-ovc rawrgb encode to uncompressed RGB24
-ovc lavc encode with a libavcodec codecs

To cut a movie file give the following command
$mencoder -ss -endpos -o -oac -ovc -o

here end-postion can be given as
-endpos 56 encode only 56 seconds
-endpos 01:10:00 encode only 1 hour 10 minutes
-endpos 100mb encode only 100 MBytes
for start-position
-ss 56 encode from 56 sec
other options are similar as above.

for more option type
$man mplayer

Get access of windows partitions in linux

As root, edit the file /etc/fstab e.g. let your windows C drive partition is /dev/hda1 and it is 'fat 32' file system. So to mount the C partition in /windows/C directory, in the /etc/fstab file, make an entry as
/dev/hda1 /windows/C vfat umask=0000 0 0
Note that umask=0000 will give write permissions to every user. To give write permission only to root, replace by
umask=0002

Sunday, December 23, 2007

Create ISO image in Linux

To make an ISO from your CD/DVD, place the media in your drive but do not mount it. If it automounts, unmount it.

$ dd if=/dev/dvd of=dvd.iso # for dvd
$ dd if=/dev/cdrom of=cd.iso # for cdrom
$ dd if=/dev/scd0 of=cd.iso # if cdrom is scsi

To make an ISO from files on your hard drive, create a directory which holds the files you want. Then use the mkisofs command.

$ mkisofs -o /tmp/cd.iso /tmp/directory/

This results in a file called cd.iso in folder /tmp which contains all the files and directories in /tmp/directory/.