~ Mayank Johri’s Tips ~

December 16, 2008

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

Filed under: FAQ's, Microsoft SoftGrid Application Virtualization — mayankjohri @ 5:44 pm
Tags: ,

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.

December 14, 2008

TIPS: Python: How to convert python script to executable

Filed under: Development, Python — mayankjohri @ 12:15 am
Tags: ,

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)

December 10, 2008

TIPS: Linux : Compress a directory

Filed under: Linux, Tips — mayankjohri @ 3:22 pm
Tags: ,

The following command can be used to compress entire directory in a file :

tar cjf <FileName>.tar.bz2 <DirectoryPath>

December 1, 2008

Tips: Convert flv to mpg or avi

Filed under: Tips — mayankjohri @ 12:36 am
Tags: ,

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

Blog at WordPress.com.