473,503 Members | 241 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Video : picture by picture

Hello,
I want access picture by picture on video : is it possible on C# ?
Thanks

Apr 21 '06 #1
12 1958
It sure is.

Of course, *how* it's done depends on the type of "video" you're working
with.

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Hard work is a medication for which
there is no placebo.

"Audrey" <Au*************@ifrance.com> wrote in message
news:11**********************@i40g2000cwc.googlegr oups.com...
Hello,
I want access picture by picture on video : is it possible on C# ?
Thanks

Apr 21 '06 #2
for this moment i would work with MPEG2, MPEG4 video
Kevin Spencer a écrit :
It sure is.

Of course, *how* it's done depends on the type of "video" you're working
with.

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Hard work is a medication for which
there is no placebo.

"Audrey" <Au*************@ifrance.com> wrote in message
news:11**********************@i40g2000cwc.googlegr oups.com...
Hello,
I want access picture by picture on video : is it possible on C# ?
Thanks


Apr 21 '06 #3
Okay, and you're writing an application that you want to be able to pull the
individual images out of these?

In any case, you're likely to be using the Microsoft DirectX classes to do
this, along with possibly some help from the Windows Media Player ActiveX
control, although that may not be necessary. Check out the Microsoft DirectX
developer center, where you can download the latest DirectX SDK, and find
all kinds of helpful information:

http://msdn.microsoft.com/directx/
"Audrey" <Au*************@ifrance.com> wrote in message
news:11**********************@v46g2000cwv.googlegr oups.com...
for this moment i would work with MPEG2, MPEG4 video
Kevin Spencer a écrit :
It sure is.

Of course, *how* it's done depends on the type of "video" you're working
with.

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Hard work is a medication for which
there is no placebo.

"Audrey" <Au*************@ifrance.com> wrote in message
news:11**********************@i40g2000cwc.googlegr oups.com...
Hello,
I want access picture by picture on video : is it possible on C# ?
Thanks

Apr 21 '06 #4
I'm not sure if my last post went through. Forgive me if I'm repeating
myself. Check out the MS DirectX Developer center, in particular the latest
DirectX SDK:

http://msdn.microsoft.com/directx/

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Hard work is a medication for which
there is no placebo.

"Audrey" <Au*************@ifrance.com> wrote in message
news:11**********************@v46g2000cwv.googlegr oups.com...
for this moment i would work with MPEG2, MPEG4 video
Kevin Spencer a écrit :
It sure is.

Of course, *how* it's done depends on the type of "video" you're working
with.

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Hard work is a medication for which
there is no placebo.

"Audrey" <Au*************@ifrance.com> wrote in message
news:11**********************@i40g2000cwc.googlegr oups.com...
Hello,
I want access picture by picture on video : is it possible on C# ?
Thanks

Apr 21 '06 #5
I think all the DirectShow stuff was moved out of DirectX and put in the
Platform SDK though.

"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:e5**************@TK2MSFTNGP04.phx.gbl...
Okay, and you're writing an application that you want to be able to pull
the individual images out of these?

In any case, you're likely to be using the Microsoft DirectX classes to do
this, along with possibly some help from the Windows Media Player ActiveX
control, although that may not be necessary. Check out the Microsoft
DirectX developer center, where you can download the latest DirectX SDK,
and find all kinds of helpful information:

http://msdn.microsoft.com/directx/
"Audrey" <Au*************@ifrance.com> wrote in message
news:11**********************@v46g2000cwv.googlegr oups.com...
for this moment i would work with MPEG2, MPEG4 video
Kevin Spencer a écrit :
It sure is.

Of course, *how* it's done depends on the type of "video" you're working
with.

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Hard work is a medication for which
there is no placebo.

"Audrey" <Au*************@ifrance.com> wrote in message
news:11**********************@i40g2000cwc.googlegr oups.com...
> Hello,
> I want access picture by picture on video : is it possible on C# ?
> Thanks
>


Apr 21 '06 #6
There's an "easy" to implement this by using the Windows Media Player
component, which can move frame by frame with something like the following:

((IWMPControls2)axWindowsMediaPlayer1.Ctlcontrols) .step(1);

And to grab the image, you could use the SendKeys class to get the image
into the clipboard. I don't know if this is what you want though.

"Audrey" <Au*************@ifrance.com> wrote in message
news:11**********************@i40g2000cwc.googlegr oups.com...
Hello,
I want access picture by picture on video : is it possible on C# ?
Thanks

Apr 21 '06 #7
DirectShow is obsolete, but the DirectX.AudioVideoPlayBack namespace has all
the necessary functionality.

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Hard work is a medication for which
there is no placebo.

"James Park" <fa******@fakeaddress.com> wrote in message
news:OO**************@TK2MSFTNGP02.phx.gbl...
I think all the DirectShow stuff was moved out of DirectX and put in the
Platform SDK though.

"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:e5**************@TK2MSFTNGP04.phx.gbl...
Okay, and you're writing an application that you want to be able to pull
the individual images out of these?

In any case, you're likely to be using the Microsoft DirectX classes to
do this, along with possibly some help from the Windows Media Player
ActiveX control, although that may not be necessary. Check out the
Microsoft DirectX developer center, where you can download the latest
DirectX SDK, and find all kinds of helpful information:

http://msdn.microsoft.com/directx/
"Audrey" <Au*************@ifrance.com> wrote in message
news:11**********************@v46g2000cwv.googlegr oups.com...
for this moment i would work with MPEG2, MPEG4 video
Kevin Spencer a écrit :
It sure is.

Of course, *how* it's done depends on the type of "video" you're working
with.

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Hard work is a medication for which
there is no placebo.

"Audrey" <Au*************@ifrance.com> wrote in message
news:11**********************@i40g2000cwc.googlegr oups.com...
> Hello,
> I want access picture by picture on video : is it possible on C# ?
> Thanks
>



Apr 22 '06 #8
Thanks for this information.
Could you explain me why DirectShow is obsolete ?

I want access picture by picture to do a list of "screen shot" of video
on format JPEG for example.

Apr 22 '06 #9
I can only guess why DirectShow is obsolete. Its functionality has been
replaced by other namespaces and other classes. My guess would be that
Microsoft architects decided that the newer structure was more extensible,
logical, intuitive, or (I don't know) than the older. All of the
functionality is still there; it's just id different places, arranged
differently. The SDK will tell you how to use it, and includes all the DLLs
and support for it.

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Hard work is a medication for which
there is no placebo.

"Audrey" <Au*************@ifrance.com> wrote in message
news:11**********************@u72g2000cwu.googlegr oups.com...
Thanks for this information.
Could you explain me why DirectShow is obsolete ?

I want access picture by picture to do a list of "screen shot" of video
on format JPEG for example.

Apr 22 '06 #10
Ok thanks ...
I found more information on DirectShow but on audiovideoplayback it
wasn't very easy.
So, I would like ask you if you are some documentation (how to) for
manipulate video to image file?

Thank u for your help

Apr 22 '06 #11
I really don't Audrey. I've only used DirectSound and Direct3D.

Try the Managed DirectX newsgroup:

microsoft.public.win32.programmer.directx

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Hard work is a medication for which
there is no placebo.

"Audrey" <Au*************@ifrance.com> wrote in message
news:11*********************@u72g2000cwu.googlegro ups.com...
Ok thanks ...
I found more information on DirectShow but on audiovideoplayback it
wasn't very easy.
So, I would like ask you if you are some documentation (how to) for
manipulate video to image file?

Thank u for your help

Apr 22 '06 #12
Ok thanks for your help.

Kevin Spencer a écrit :
I really don't Audrey. I've only used DirectSound and Direct3D.

Try the Managed DirectX newsgroup:

microsoft.public.win32.programmer.directx

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Hard work is a medication for which
there is no placebo.

"Audrey" <Au*************@ifrance.com> wrote in message
news:11*********************@u72g2000cwu.googlegro ups.com...
Ok thanks ...
I found more information on DirectShow but on audiovideoplayback it
wasn't very easy.
So, I would like ask you if you are some documentation (how to) for
manipulate video to image file?

Thank u for your help


Apr 22 '06 #13

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
3773
by: Google Mike | last post by:
Is there a Linux PHP module so that I can process web cam video with Linux PHP from multiple USB ports? (I'm working on a video surveillance idea since I found out that my office spent a whopping...
1
5163
by: Bill | last post by:
Hello all, I found the following visual basic 6.0 source code on the web for displaying web cam video in a GUI. However, I want to display video from a camera which is hooked up through...
6
20205
by: Jaco | last post by:
I am looking for some examples (html code ..) of web page with a video (as wmv file) playing in a frame (using some Windows Media Player plugin). I don't need a specific server because my web pages...
1
2875
by: Mamatha | last post by:
Hi, I have a video capturing with motion detection application in C#.NET.In that application i detected all resources i.e video source and audion source thourgh motion detection,now i want to...
3
6503
by: sam_sam80 | last post by:
Hi Evrybody, Some one can tell me how to display texte or tranparent icon (like mouse pointer) over a runnig video. This video is an IP camera stream displaying within control (Vitamin Control)...
2
31564
debasisdas
by: debasisdas | last post by:
This program checks if webcam is available, if available then capture video and displays in picture box. Add this code to the general module (.BAS file)...
4
3302
by: mariusz | last post by:
Hi All, I have a problem with component DirectX.AudioVideoPlayback.Video. Following part of code works good but I have one problem. The movie is allways on the top left corner of the display....
3
5443
by: kathsunil | last post by:
I'm writing a program that tracks a moving objects in a mpeg file. I'm using AForge.net. I'm new to c# and programming. I cannot get to play the video. For right now I want to play the video in a...
0
7089
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7282
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7339
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
7463
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5581
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
4678
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
1515
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
738
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
389
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.