Play simple Avi file in WIN32 API C++
-
Hi, What API can I use to play a simple avi-file on the window (HWND)? Please not using DirectX (DirectShow). thanks in advance, Ward Ward
See this...[^] SaRath.
"It is your attitude, not your aptitude, that determines your altitude - Zig Ziglar." My Blog | Understanding State Pattern in C++ -
See this...[^] SaRath.
"It is your attitude, not your aptitude, that determines your altitude - Zig Ziglar." My Blog | Understanding State Pattern in C++Yes, those functions I already found, but there is no example (or at least I can't see one) that shows the use of these functions to open an avi-file and display it on a window. I've explored the MCI api (a little higher in the treeview of the link you gave me), but this is also not exactly what I need. MCIWnd gives me a complete window (including a bucn of controls), but that I don't need that. Ward
-
Hi, What API can I use to play a simple avi-file on the window (HWND)? Please not using DirectX (DirectShow). thanks in advance, Ward Ward
What do you need?i think MCI functions are good_**
**_
whitesky
-
What do you need?i think MCI functions are good_**
**_
whitesky
-
OK, can you show example code where you can load and show an avi on a HWND, not containing any controls? Ward
Well in fact i want to show like this code but its a big for this fourm so i said you can use MCI_**
**_
whitesky
-
Yes, those functions I already found, but there is no example (or at least I can't see one) that shows the use of these functions to open an avi-file and display it on a window. I've explored the MCI api (a little higher in the treeview of the link you gave me), but this is also not exactly what I need. MCIWnd gives me a complete window (including a bucn of controls), but that I don't need that. Ward
Ward wrote:
Yes, those functions I already found, but there is no example (or at least I can't see one) that shows the use of these functions to open an avi-file and display it on a window.
"The largest fire starts but with the smallest spark." - David Crow
"Judge not by the eye but by the heart." - Native American Proverb
-
Ward wrote:
Yes, those functions I already found, but there is no example (or at least I can't see one) that shows the use of these functions to open an avi-file and display it on a window.
"The largest fire starts but with the smallest spark." - David Crow
"Judge not by the eye but by the heart." - Native American Proverb
Final solution. I'm sorry to say that all you were able to reply on this topic was simply a result of some high level searching the internet. None of them showed me a nice clean piece of code that actually did it. Finally I found it on my own using a common control of ICC_ANIMATE_CLASS. This window class is able to to it by using simple functions like Animate_Open and Animate_Play. For those who are really interested, I can post a nice clean example of it. Just ask for it and I'll post here here. kind regards, Ward -- modified at 8:55 Friday 30th June, 2006
-
Final solution. I'm sorry to say that all you were able to reply on this topic was simply a result of some high level searching the internet. None of them showed me a nice clean piece of code that actually did it. Finally I found it on my own using a common control of ICC_ANIMATE_CLASS. This window class is able to to it by using simple functions like Animate_Open and Animate_Play. For those who are really interested, I can post a nice clean example of it. Just ask for it and I'll post here here. kind regards, Ward -- modified at 8:55 Friday 30th June, 2006
Ward wrote:
None of them showed me a nice clean piece of code that actually did it.
Surely you can't be that lame. Sarath provided you a link to the AVI functions, and you replied to him that you already knew of them but that none of them had an example that showed how to open an AVI file. I provided you with a very succinct example of how to open an AVI file (from the link that Sarath provided).
"The largest fire starts but with the smallest spark." - David Crow
"Judge not by the eye but by the heart." - Native American Proverb
-
Ward wrote:
None of them showed me a nice clean piece of code that actually did it.
Surely you can't be that lame. Sarath provided you a link to the AVI functions, and you replied to him that you already knew of them but that none of them had an example that showed how to open an AVI file. I provided you with a very succinct example of how to open an AVI file (from the link that Sarath provided).
"The largest fire starts but with the smallest spark." - David Crow
"Judge not by the eye but by the heart." - Native American Proverb
The AVI functions that you brought up where all created with the purpose of editing the AVI file. The application I was looking for was to play an AVI file. I've searched before in all the information that Sarath gave my a link to and I've also looked at the example that you've (DavidCrow) linked me too. But the functions and the example did not provided a simple solution. The purpose for me was to have a simple solution to play an avi, not the implement a complete engine using the AVI-functions. I'm sure that I would be able to accomplish that, but it had to be implemented in a very short period of time. I understand your remarks, and I hope you understand mine as well. kind regards, Ward