Use the following command to convert rm files to ogg files.
$ mplayer "aks1.rm" -ao pcm:file=temp.wav | oggenc -q 10 -o "aks1.ogg" temp.wav
$ rm temp.wav
My 2cent tips & tricks on computer technology & Application Virtualization ...
Wednesday, August 29, 2007
Display Video in VLC when using compiz is enabled.
For some reason, when compiz is running VLC does not show any video. I found the work around to the issue by following the below instructions
- Start VLC and click on Settings -> Preferences.
- Expand Video -> Output modules.
- Select Output modules, and check the checkbox at the bottom right that says Advanced options.
- Select the option to select a different output device. Pick X11 video output, click on Save.
Sunday, August 26, 2007
mp32ogg convertor
I am adding a script which will convert the mp3 from a folder to ogg. mpg123 and oggenc are prerequisite for this scirpt. It can be download from http://mayankjohri.files.wordpress.com/2007/08/mp32ogg.pdf
The PreReq's are mpg123, vorbis-tools, python-id3
The PreReq's are mpg123, vorbis-tools, python-id3
Saturday, August 25, 2007
Setting Evolution for Gmail Account
Steps to follow
- Enable the POP & SMTP service on gmail accont.
- Start Evolution
- Add New Account by clicking "Edit" -> "Preference"
- In "Accout Details", press "Add" Button
- Select "Forward"
- Enter your Account Name and Email ID and select "Forward"
- Select "POP" server for "Receiving Email"
- Under "Configuration" section enter "POP.gmail.com" and your email username
- Under "Security" select "SSL encryption"
- Under "Authentication Type" select Password
- Select "Forward"
- Select "Forward" for "Receiving Options
- In "Sending Email" select
- Server Type : SMTP
- Under "Server Configureation" add "SMTP.GMAIL.COM" for Server
- Under "Security" select "SSL Encryption" as "Use Secure Connection"
- Enter Username under Authentication section.
- Select "Forward"
Tuesday, August 21, 2007
Slackware: Enabling package update through online mirrors
Unfortunately Slackware 12.0 does not unable update of OS by default, slackpkg needs to be installed from the install CD/DVD which is located in "extra\slackpkg" folder.
installpkg slackpkg*.tgz
uncomment only one mirror on /etc/slackpkg/mirrors file which represent your version.
slackpkg update; slackpkg upgrade-all
the above command will upgrade your machine.
installpkg slackpkg*.tgz
uncomment only one mirror on /etc/slackpkg/mirrors file which represent your version.
slackpkg update; slackpkg upgrade-all
the above command will upgrade your machine.
Friday, August 17, 2007
Adding HTTP Proxy Details in SVN
Edit the server file at ~/.subversion/servers
$ vi ~/.subversion/servers
Add or update the following values in the file
http-proxy-host = <Fill the proxy server name>
http-proxy-port = <Proxy Port>
$ vi ~/.subversion/servers
Add or update the following values in the file
http-proxy-host = <Fill the proxy server name>
http-proxy-port = <Proxy Port>
Thursday, August 16, 2007
Remedy for Bug #89741: with Compiz, the title bar on maximized windows are drawn completely white.
When Compiz is running then the title bar on maximized windows are drawn completely white for my Laptop R32.
The solution of the issue is to create /etc/drirc file with the following contents:
<option name="allow_large_textures" value="2" />
The solution of the issue is to create /etc/drirc file with the following contents:
<option name="allow_large_textures" value="2" />
Tuesday, August 14, 2007
Add Context Menu for a FileType
Eg:
The above reg key will add UpdateOSD menu for .osd file type
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\\.osd]
@="SoftGrid.osd.File"
"Content Type"="application/softricity-osd"
[HKEY_CLASSES_ROOT\\SoftGrid.osd.File\\shell\\UpdateOSD]
[HKEY_CLASSES_ROOT\\SoftGrid.osd.Fileshell\\UpdateOSD\\Command]
@="\"C:Program Files\\AddTabsToOSD\\addTabsToOSD.exe\" \"%1\""
The above reg key will add UpdateOSD menu for .osd file type
Wednesday, August 8, 2007
Slackware's pacman through HTTP Proxy
edit the /etc/pacman.conf on your slackware/frugalware machine and add or update the following.
ProxyServer = your.proxy.server ie proxy.domain.comProxyPort = your_proxy_port ie 8080
Subscribe to:
Comments (Atom)