Skip to main content

Posts

ffmpeg library loaded in visual studion 2010 with h263 Encode/Decode code

I am an amateur  started browsing the field of Media Encode/Decode recently.Creation of RTP was also my need.I search the net whole lot of day and not able to find any good tutorial about how to load ffmpeg in a Visual Studio Project. So I started my work in these area.And also the little bit analysis and playing with  ffmpeg was my new interest. In my post I will describe how to encode RGB to h263 of YUV420 and decode YUV420 to RGB. Here I am providing an exe solution with ffmpeg loaded.Anyone can build use Just by clicking solution file in MVC-2010.   ffmpeg loaded in MVC C++ solution

SVN fails to UPDATE and COMMIT only says is already locked.

Cause: This thing happens when an commit or update is interrupted in the middle. Solution: Just Clean Up by SVN.Then update and commit . It will work. If it doesn't work then go into the .svn folders /pristine/IntegerValue. * IntegerValue may be a random number of a folder on which todays info of changes will stored.    Now from that folder by date of modified find the .svn-base file which will look like   00a0a66811fd94042c2a2ae86b43700c86968ace.svn-base  . Then Just delete it/ move it to other folder. Then update and commit . It will work. Worst-Case: If it doesn't work then you need to Checkout again and your work will vanish.  :(

Callback and Function pointer in C++ for interoping with .dll

We use many dynamic library and static library in a project for development purpose .The most way we use is call the various function from the .dll or .lib or any library.But sometimes it is needed to call the application function from .dll or .lib (application: who use the .dll / .lib). In programming literature it is called as callback .Now I will demonstrate how to call a function of an application to execute from library . For this purpose we will use function pointer.The way is like.... 1. app says     : "dll/lib keep my function address, which you will execute ". 2. dll/lib says : "Ok, I got it and stored it for future use". . . . 3. dll/lib says : "It is time I call you for work my application function". Step 0 : Declare the function pointer. i) typedef  void(*function)(void)   function : function address   void       : parameter(No) ii) typedef int(*function)(void) int   ...

Rar Password Breaker Software or Code Breaker

                                                           Name :  Code Breaker , Version : 2.0 ,Platform : Windows XP/7/Vista                                    Processor : x86/x64. Capability : Utility                                    Release Date : 12-11-2012. Category :Free Description :   It is an utility software  which is used for finding the password of  a .rar file.At ...

How to make .cue from .bin or Cue Maker Software ----- Smart Cue

Sometimes after downloading a game ,a software ,a movie it is a pain that it is in .bin format.As a result we can't burn it directly by any magic ISO creator software.So for user little help I have made a soft ,which can do this little work easily. The name of this soft is Smart Cue . Hope it helps ,all the gamer and video watcher. Download: Executable MF Link   Note : It was made in a way to test my own C# skill ,as I am sometimes interested to many languages and the need to create software when I need it ( Basically when I download a game , it was on .bin format).

My favourite writer Humayun Ahmed

There is none who can replace him.At least the standard which he create in is life time in the running literature it never be replaceable.The new generation which is all the time busy in playing PC games,chatting ,bands etc. only his writing makes them to take a glance on the literature.For example Himu and Misir ali all the time keep them on track by anti-logic and logic.They also have show-down on the novel.I myself read all of the books of Himu and Misir ali and wait for the new one to come every year.Now I have to wait for life time. Except books he makes our dirty film industry pure by his heart warming ,well versed film.Following him many new producer try to make well and good film (not the dirty one) .He also contribute our drama by his dashing drama's. In writing except romance ,logic ,anti-logic ,he also write many science fiction.His brother Sir Dr. Md. Zafar Iqbal is the man who started science fiction in bangla. The list of books: Selected novels • Lilaboti (2...

Using Git for code.google.com in windows Computer

1. First create an account on code.google.com    It then generate username and password. 2. Then install git for windows. 3. Now in git bash (command line) go to the folder in which local folder your project is in. 4. Give command for clone (SVN CHECKOUT) git clone https://username@code.google.com/p/Project_Name/ and git clone https://code.google.com/p/Project_Name/  5. First initialization of repo git init 6.  Now add the file you need to upload. git add *.java git add *.txt git add *.c git add *.cpp 7. Now commit these code. git commit *there are types on commit.So read it in http://git-scm.com 8. Add the remote origin git remote add origin https://code.google.com/p/you-project-name 9. Finally, Push the code to google code git push orgin --all It will then ask for username and password. Give that which we have at the registration to code.google.com And now everything is done.