Friday, September 3, 2010

CrazyEngineers Forum - Computer Science & IT Engineering

CrazyEngineers Forum - Computer Science & IT Engineering


How to Convert DVD and Video to Your Fashionable iPad

Posted: 02 Sep 2010 10:52 PM PDT

iPad has been released for about a month, but it is pretty popular among people. I think you guys who got iPad are very proud. How do you make full use of its great space without spending extra money? Show it off before friends? It is the best choice to use DVD collection and video you have. But how do you deal with it?
Recently I got the information from internet. I feel it is useful for all, so I’d like to share it with you guys. It is third-party software that can rip DVD and convert video for iPad. And the whole process is so easy. They are Aiseesoft DVD to iPad Converter and Aiseesoft iPad Video Converter.

Next it is divided into two parts to describe it in details.
Part One: How to Rip DVD to iPad.
Firstly you need download the software: Aiseesoft DVD to iPad Converter. And then install and run DVD to iPad Converter.
The specific operating steps as follows:



Step 1: Load DVD.
Click "Load DVD" to add your DVD contents.
Step 2: Set output video format.
Click "Profile" button from the drop-down list to select the exact output video format that is the most suitable for your iPad. You can click the "Settings" button to set parameters of your output video such as such as Resolution, Video Bitrate, Frame Rate, Audio Channels, Sample Rate, etc. to get the best video quality as you want.
Step 3: Select the output path by clicking “Browse” button from the line of destination.
Step 4: Click the "Start" button to start the conversion.

Part Two: How to Convert Video to iPad.

Also it is the same. Firstly download the software: Aiseesoft iPad Video Converter. And then install and run iPad Video Converter.

The specific operating steps as follows:



Step 1: Add video.
Click "Add Video" to add your video contents.
Step 2: Set output video format.
Click "Profile" button from the drop-down list to select the exact output video format that is the most suitable for your iPad. You can click the "Settings" button to set parameters of your output video such as such as Resolution, Video Bitrate, Frame Rate, Audio Channels, Sample Rate, etc. to get the best video quality as you want.
Step 3: Select the output path by clicking “Browse” button from the line of destination.
Step 4: Click the "Start" button to start the conversion.

Tips:
The two pieces of software have some basically editing functions such as trim, crop, effect,
1. Trim:
Three ways to do trim:
a. Drag the “start scissors bar” button to where you want to start and “end scissors bar” button where you want to end. (1)
b. You can click the “Trim From” button when you want to start the trim during your preview and click “Trim To” button when you want to end.
c. Set the exact “start time” and “end time” at right part of the trim window and click “ok”.


2. Crop:
Three ways to do crop
a. Select one crop mode from the “Crop Mode” drop-list.
b. Dragging crop frame to choose your own crop.
c. Set your own crop value.


3. Effect
Drag the adjustment bar to find your favorite effect of Brightness, Contrast, Saturation and Volume.


4. Merge into one file.
Pick the “Merge into one file” to merge the files you choose into one output file. (2)

There is another piece of software named iPad Converter Suite. It includes DVD to iPad Converter, iPad Video Converter and iPad Transfer.

12th c++ problem

Posted: 02 Sep 2010 08:39 PM PDT

Little Boy Banku is mad at his teacher, who ate all the sweets in the flat and even went to the neighbours to eat their sweets too. Now Banku's parents brought home a chocolate bar, and, sure enough, School teacher is here already and wants to eat it. However, this time Banku has firmly decided that not a single piece of chocolate will go to this glutton. Banku wants to use his teacher's addiction to the games of chance and suggests playing the following game. A chocolate bar can be considered as a rectangle of square units arranged in m rows and n columns and separated by lines . Two players take alternate turns. At his turn, a player must take one piece of chocolate and split it into two along one of the lines. If a player can't make a legal move (which happens when all pieces of chocolate consist of a single unit square), he loses, and the winner takes all the chocolate. But the teacher is smart enough! He immediately understood who should make the first turn in order for teacher to win, assuming that players take optimal turns. Can you guess that?
Input

First line of input contains number of test cases. The second line of the input contains space-separated integers m and n (1 <= m, n <= 50).
Output

For each test case If teacher should start the game in order to win, output "[:=[first]" otherwise, output "[second]=:]".
Example

Input:
3
2 4
1 3
2 9


Output:
[:=[first]
[second]=:]
[:=[first]

Solve this Sql Query

Posted: 02 Sep 2010 08:36 PM PDT

Consider a database which stores employee data having following fields

Name
Destination
Department
Salary

Now you have to write a sql query such that it will display the data of employee whose salary is second highest among all

Can you solve this?:p

Difficulty in implementing video conferencing on Internet

Posted: 02 Sep 2010 12:56 PM PDT

I am B.E (C.S.E) Final year student, developing a project on E-Learning.
I have designed some modules like mail,e-library etc.
I was doing video conferencing in LAN.
I have little bit idea of implementing video conferencing on LAN by using Java Media Framework through RTP protocol,
but my teacher suggested me to do that on Internet i.e a student from any location should be able to do video conferencing with the teacher at server.
I don't have any idea how to provide video conferencing on Internet.:confused:
Please give me some idea about the same.

What steps I should follow?

What will be the H/W & S/W requirements for the project?

P.S:- My teacher clearly said that she cannot guide me in this project....:(

Brief explanation of Quick Sort algorithm

Posted: 02 Sep 2010 09:32 AM PDT

On request of one user from ce,i am going to explain one of the most commonly used sorting algorithm ie quick sort

It is based on Divide and conquer approach.

It is one of the common practical example of recursion

There are generally 3 steps in this

1:-Divide a problem a multiple sub problems
2:-Solve them individually.
3:-Merge those sub problems to find solution of main problem

Algorithm

1. Choose any key element in an array which is know a pivot.
2. Reorder the array such that that all elements which are less than the pivot come before the pivot and so that all elements greater than the pivot come after it. After the partitioning, the pivot is in its final position.
3. Recursively reorder two sub-lists: the sub-list of lesser elements and the sub-list of greater elements.


Below is the program written in c++ ,it can help you for better understanding

//Program for Quicksort
#include<iostream.h>
#include<conio.h>
int partition(int a[],int,int);
void quick(int a[],int,int);
void main()
{
int *a,n,i;
cout<<"Enter size of array"<<endl;
cin>>n;
a=new int[n];
cout<<"Please enter elements for array"<<endl;
for(i=0;i<n;i++)
{
cin>>a[i];
}
quick(a,0,n-1);
cout<<"Elments are"<<endl;
for(i=0;i<n;i++)
{
cout<<a[i]<<endl;
}
getch();
}
void quick(int a[],int start,int finish)
{
if(start<finish)
{
int q=partition(a,start,finish);
quick(a,start,q-1);
quick(a,q+1,finish);
}
}
int partition(int a[],int start,int finish)
{
int x=a[finish],temp,temp1,j;
int i=start-1;
for(j=start;j<=finish-1;j++)
{
if(a[j]<=x)
{
i=i+1;
temp=a[i];
a[i]=a[j];
a[j]=temp;
}
}
temp1=a[i+1];
a[i+1]=a[j];
a[j]=temp1;
return (i+1);
}

How to Format mobile?

Posted: 02 Sep 2010 08:40 AM PDT

how to format mobile?
my mobile is of s 60 edition and i want to format it...
any suggestions?????

Problem in VB

Posted: 02 Sep 2010 07:24 AM PDT

Hi CEans,
I'm using Visual Basic 2008 express edition. While creating forms in projects, the form window appeared is not fit to the work space area. I have used maximize button also but it doesn't effects. Can anyone suggest me what to do?:confused:
And, there is an option in form property window that is "Start position". Does it have any link with the form size?

linux scheduler

Posted: 02 Sep 2010 05:22 AM PDT

can anyone tell me how to extract scheduler code from linux(ubuntu/debian) source code?

No comments:

Post a Comment