Saturday, March 5, 2011

CrazyEngineers Forum - Computer Science & IT Engineering

CrazyEngineers Forum - Computer Science & IT Engineering


How to Convert DVD and Video to Your Fashionable iPad

Posted: 05 Mar 2011 12:44 AM PST

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.

Visual C++

Posted: 04 Mar 2011 11:36 PM PST

Hello
I am new to the Visual Studio C++ i cant the book Visual C++ programming by yashwant Kanetkar , if any one have the link to download or study , please tell me

thanks

Which is the best engineering Computer Engineering or Computer Science Engineering?

Posted: 04 Mar 2011 10:42 PM PST

And Please also Explain which is the best of the above mentioned ? pleas help me it is important for me.Because its about my career . I m going to select these subject , so give me good advice. Thank you.

Object Oriented PHP!!

Posted: 04 Mar 2011 02:26 PM PST

Hi Ceans,

Here I am with another tutorial and as requested by goyal hope you guys get benefited by this....

NOTE: This tutorial is copyrighted to CE as its my own work!! :p

Before getting into OO programming we have to know what are the basic features available in object oriented programming. So lets begin with features in OO programming. following is the list of important features when it comes to OO programming:

NOTE: I know you guys already read and know about it but still I thought may be I can add my thought and understanding on these features :)

Objects: It's a real time entity it can be a name, person or a place. technically speaking its defined as the instance of a class.

Class: Collection of similar objects together is called a class.

Inheritance: The ability of a program to be reused basically re-usability of code, which is once written and can be used again and again

Polymorphism: The ability of a program or a function which can act differently at different instances.


NOTE: The above features holds fine for all the programming languages which supports object orient programming ;)

Let's start by defining a class in PHP....

In order to define a class in php we have to use the keyword class, a typical class structure will be as shown below:

class class_name
{

var variable1;

function functionname(argument list)
{
//Some commands
}

}


Looks simple right!! yes it is easy ok now lets try something interesting... using class in php. I am going to define a class named crazyengineers and define a variable and then define two functions within the class so lets do it,

<?php
class crazyengineers
{
var $name;

function Greet()
{
echo "Welcome to CE!!";
}

function Pride()
{
echo "Be proud to be a CEAN :)";
}

}

?>


Ok So what we have done is... we have defined a class named crazyengineers using the keyword class and I have defined a variable named $name which does not hold any value (just a variable declaration) and then I have defined two functions Greet() and Pride() which is going to display the message "Welcome to CE!!" and Be proud to be a CEAN :) " respectively. if you probably execute the above code you will not get any output because we have just defined a class with two function but we have not called it any where in the program, so unless we call the function its not gonna do the command what we want it to do...

So in order to access the elements ($name, Greet() and Pride() are the elements of the class crazzyengineers) in a class we require an object so lets create one. In order to create a object in class we use the keyword new followed by the class name, following is the object for the class crazyengineers:

$ceobject = new crazyengineers;

So I have created an object named $ceobject for the class called crazyengineers . That's it!! now how can we use the object to access the class methods or variables?? that's again easy Lets see how to do it for instance I wanna access the variable $name then I have to do something like this,

$ceobject->name;

Yeap the object name followed by the -> operator and the variable name with out the prefix '$' will allow you to access the variable $name in the class crazyengineers using its object $ceobject.

Ok how can I assign a value to that variable using an class object?? simple...

$ceobject->name='slashfear';

Now I have assigned a value slashfear for the variable named $name which is in the class crazyengineers. Accessing the function in the class works the same way,

$ceobject->Greet();
$ceobject->Pride();


Now lets complete our code:


<?php

class crazyengineers
{
var $name;

function Greet()
{
echo "Welcome to CE!!";
}
function Pride()
{
echo "Be proud to be a CEAN :)";
}

}

$ceobject = new crazyengineers;

$ceobject->name = 'slashfear';

echo "Hi " . $ceobject->name;
echo "<br>";

$ceobject->Greet();

echo "<br>";

$ceobject->Pride();

?>


It's done!! Output of the above program will be as shown below:

Hi slashfear
Welcome to CE!!
Be proud to be a CEAN :)


I guess you guys understood about the basics of class and objects in PHP.

If you have any doubts please feel free to ask!! Love to solve you doubts and also post in your feedback's (I have spent time in writing this tutorial for you guys!!)


-Arvind

No comments:

Post a Comment