Skip to main content

Posts

Showing posts from September, 2011

Video Conferencing Source code in JAVA

My video conferencing project was completed as 300 project for 3rd year.It is not totally completed. There is some bug in here.To solve these bugs and to help other students this project is open.It is first try to make a project open source in this way so it can be modified.Any kind of question against this project will be answered. As this project was created in 3rd year 1st semester and now i nearly completed my BSc. so there will be little description about this.I will try to describe every class and function later when i get the chance. ####################################################### FEATURE  ####################################################### 1.Multi Chat(Used Threadpole) 2.P2P Chat 3.P2P Audio Chat 4.P2P Video Chat 5.Complete Automated 6.H.263 compression Video  7.raw audio PREREQUISITE:  1. JUST INSTALL jmf-2.1.1 e 2.SQL LINK OF THE SOURCE CODE

Desktop Inside Document Searcher

While I was working with lucene I tried to analyze it for the purpose of creating a demo search engine . From That I got the plan to make a search tool for pc which will search in .txt , .cpp,.pdf,.ppt,.doc as search engine do. Like If I have written sieve or kmp in any file my tool will find it ,rank it and give the location .After finding location just paste it in the explorer and it will give you the particular file. Work Flow : 1.Indexed the particular drive. 2.Then search option enable 3. Give the input string for search 4.Output will be given rank wise in an area. 5. Copy the link and paste it to the explorer. 6.Cheachk is this you need. There are three classes 1.RS.java (Main Class) 2.Indexer.java 3.Searcher.java You must have to add the api of lucene here. Rs.java /**  * @  *  *  * @author sharma  * @version 1.00 2010/7/16  */ import java.io.BufferedInputStream; import java.io.IOException; import java.ne...