Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Processing of API file!!

Status
Not open for further replies.

abhijit123

Programmer
Sep 26, 2002
17
0
0
US
I have a requirement to develop a application in which:

1) Application should provide a FileChooser to open a API file.
2) Application should display the frame rate and length of the API files.
3) Application should be able to take input in sec and should be able to display the corresponding frame in an application.

I am new to VC++ and very much new also to the processing of multimedia files.

Can these functionalities be achieved by VC++ application?
Can anyone suggest the approach?

Thanks in advance!
 
>> Can these functionalities be achieved by VC++
>> application?

Yes.

>> Can anyone suggest the approach?
>> 1) Application should provide a FileChooser to open a API
>> file.

CFileDialog class

>> 2) Application should display the frame rate and length
>> of the API files.

Open the file and find the data. This requires knowledge of the file format of course. I have none.

>> 3) Application should be able to take input in sec and
>> should be able to display the corresponding frame in an
>> application.

Again requires knowledge of the file format.

Good luck
-pete



 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top