Hi:
Anyone know links to develop Video plugins from sractch?. I want to develop my first video plugin and realy I don't know how to start.
Realy need a good tutorial which explain in detail how to start and show all the commands I cabn use.
Hope any can help me.
Thanks
Anyone know links to develop Video plugins from sractch?. I want to develop my first video plugin and realy I don't know how to start.
Realy need a good tutorial which explain in detail how to start and show all the commands I cabn use.
Hope any can help me.
Thanks
Inviato Mon 11 May 09 @ 10:05 pm
I've done quite a few now...
You'll need C++ and DirectX skills - the level of skill required depends on what you are trying to acheieve.
Regards,
Scott
You'll need C++ and DirectX skills - the level of skill required depends on what you are trying to acheieve.
Regards,
Scott
Inviato Tue 12 May 09 @ 5:51 am
Thanks for answer
For example you developed a plugin named SCROLLING TEXT.
Is possible to send to me the source code in order to have as a guide and learn about it?
I have C++ skills and some of Directx as well, but need some examples in order to start.
Hope you can help me.
Regards
walter D.
For example you developed a plugin named SCROLLING TEXT.
Is possible to send to me the source code in order to have as a guide and learn about it?
I have C++ skills and some of Directx as well, but need some examples in order to start.
Hope you can help me.
Regards
walter D.
Inviato Tue 12 May 09 @ 5:43 pm
Scrolltext is quite a large video plugin, definately not a good starting point ;)
Inviato Tue 12 May 09 @ 6:11 pm
No Matter, because I can learn a lot from it.
It has a windows, buttons, scrolls buttons, text editor, and video (text controller).
If you can send me it will be very appreciatted
Regards
walter D.
It has a windows, buttons, scrolls buttons, text editor, and video (text controller).
If you can send me it will be very appreciatted
Regards
walter D.
Inviato Tue 12 May 09 @ 6:15 pm
Most of what you listed there is just basic dialog handling :)
Inviato Tue 12 May 09 @ 6:33 pm
so, if possible to it send me?
Inviato Tue 12 May 09 @ 10:06 pm
I'm afraid not.
What effect are you trying to accomplish?
If you have the SDK, then you have the barebones of a video effect plugin already :)
What effect are you trying to accomplish?
If you have the SDK, then you have the barebones of a video effect plugin already :)
Inviato Wed 13 May 09 @ 7:16 am
Ok, More simple.
Do you have a plugin (source code) for example to only put a "X" in the center of the output video screen when the plugin is activate?
Regards
Walter D.
Do you have a plugin (source code) for example to only put a "X" in the center of the output video screen when the plugin is activate?
Regards
Walter D.
Inviato Wed 13 May 09 @ 11:23 am
"X" as drawtext, "X" as createtext, or "X" as a polygon?
Inviato Wed 13 May 09 @ 12:10 pm
Lest start with "X" is a drawtext
Thanks for your help
Regards
Thanks for your help
Regards
Inviato Wed 13 May 09 @ 2:43 pm
you can use the functions D3DX... :
http://msdn.microsoft.com/en-us/library/bb173961.aspx
#include <d3dx9.h>
#pragma comment(lib,"d3dx9.lib")
ID3DXFont *p_Font;
D3DXCreateFontIndirect(D3DDevice,...,&p_Font)
p_Font->DrawText(...)
http://msdn.microsoft.com/en-us/library/bb173961.aspx
Inviato Wed 13 May 09 @ 4:41 pm