Tuesday, December 16, 2008

FAQ: AppV : Can I stream application if it was sequenced on other OS

Short Answer is Yes & No.

Long Answer: If the application was sequenced on WinXP and streamed on Vista then there is more chances for the application to work but reverse is not recommended.

Sunday, December 14, 2008

TIPS: Python: How to convert python script to executable

Python script can be converted in a standalone executable using one of the exe builder like
* py2exe (Windows)
* py2app (Mac OS)
* PyInstaller (all platforms)
* cx_Freeze (Windows and Linux)
* bbFreeze (Windows and Linux)

Wednesday, December 10, 2008

TIPS: Linux : Compress a directory

The following command can be used to compress entire directory in a file :
tar cjf <FileName>.tar.bz2 <DirectoryPath>

Monday, December 1, 2008

Tips: Convert flv to mpg or avi

Following converts video.flv into video.mpg file:

CODE

ffmpeg -i video.flv -ab 56 -ar 22050 -b 500 -s 320x240 video.mpg


and following converts  video.flv into video.AVI with MP3 Audio:
CODE

ffmpeg -i I_test.flv -ab 56 -ar 22050 -b 500 -s 320x240 -vcodec xvid -acodec mp3 video.avi