Tagged Questions

The purpose of this library is to allow access to Microsoft's DirectShow functionality from within .NET applications. This library supports both Visual Basic .NET and C#, and theoretically, should work with any .NET language.

learn more… | top users | synonyms

7
votes
2answers
235 views

How to list camera available video resolution

if I have more than one camera attached to my PC ... I want to know the best available resolutions for a specific camera ... for example some cameras are HD or FullHD (1,280×720 pixels (720p) or ...
7
votes
1answer
824 views

FFmpeg Hardware Acceleration -> GPU + DirectShow

Is there a hardware accelerated version of FFmpeg (e.g. a version that utilizes the GPU)? Also, does anybody use FFmpeg with GPU support? Possibly for scaling and converting video format? Or, for ...
5
votes
1answer
46 views

Recreating Theater Mode with DirectX

I need to simultaneously display a video that is playing in my applciation, full screen on a larger monitor. On some video cards, this is called Theater mode and is configured using a tool that the ...
4
votes
1answer
275 views

Question about setting up FIle Writer in C#

Im using DirectShowLib in C#. I want to use File Writer in C# to set a file output. I want to use File Writer because Graph.SetOutputFileName() wont connect to my encoder, but File Writer will. How ...
3
votes
4answers
70 views

How to simulate low memory for .net application?

Well, I have to debug a memory allocation issue. The application runs out of memory over time. I need to simulate low memory system for a .net window app, as a way to reproduce the out of memory issue ...
3
votes
2answers
288 views

Capturing frames from webcam using DirectShow.NET

I am new at DirectShow, so some parts of this library i don't understand well. I already see the example DxSnap, but i need to capture frames without previewing it, for futher processing. How can i do ...
3
votes
1answer
233 views

Is there a way to fake a DirectShow filter in a program?

I have an IP Camera that receives a char buffer containing an image over the network. I cant access it until i setup the connection to it in a program. I am trying to dissect windows source filter ...
3
votes
2answers
190 views

DirectShow causes Time to slow down in .NET application

In our C# .NET application we have two DirectShow filter graphs each showing a video device and one audio device. Whenever the filtergraphs are running the system time is slowed down about 4-6s per ...
2
votes
1answer
68 views

Get WebCam status using C#

I use DirectShowLib .Net to capture images from WebCam. How get state of my WebCam in C#? I mean if it's alredy using by another app?
2
votes
2answers
231 views

directshow.net webcam overlay transparent panel

I am trying to use a webcam to take photos for badges. To do this I have used the directshow.net library and examples, this has got me a webcam preview screen in .NET rendered in a picturebox as per ...
2
votes
1answer
172 views

How to go about running DirectShow.net application on other computers

I have a C# DirectShow.Net application and i want to test it running on other computers in release mode. How can i go about making sure my program will run on other machines that don't incorporate the ...
2
votes
1answer
386 views

How can i Programmatically set a Directshow Filters' options?

I have filters in Graphedit whose settings can be changed. I have a usb webcam which i can go to its properties and make it stream at different sizes, but im not sure how i would change these types ...
2
votes
1answer
299 views

Am i using the GMFBridge.DLL to preview/capture a stream correctly?

I am trying to use the GMFBuilder so that i can preview a stream from a webcam and save it periodically without restarting the whole graph. However Im not sure if this is correct or not, I was trying ...
2
votes
2answers
156 views

How to check for directshow filters on pc

Is there a way to see what filter's are installed on my machine, because i have a C# winform application that takes a photo using directshow that works perfectly fine on my laptop but won't work on my ...
2
votes
1answer
127 views

How can I identify DirectShowNet Filter Pins

Im trying to implement a graphedit filter file i created. I am using 3ivx to encode and compress a video then save it to .mp4. in my graphedit file i have: Mpeg4s Decoder DMO (out0) -> (XForm In) ...
2
votes
1answer
123 views

Is it possible to control 2 DirectShowNet streams from one input?

I am using DirectShow.Net in C#. I made a player that will stream video from a usb device to a video screen and to an avi file at the same time. I want to have a button so the video will preview on ...
2
votes
1answer
287 views

DirectShow interpolation (pixelization) problem with VMR9 windowless

For a .net project, I use DirectShow (through DirectShow.net) with the VMR9 in windowless mode for video display. On Windows 7, I noticed a pixelization problem when the video is resized (magnified). ...
2
votes
1answer
1k views

How to find duration of an uploaded mp4 or f4v video?

I've tried using directshowlib-2005 by installing k-lite mega codec pack. It can't find the duration of an mp4 file or f4v file (avi, wmv and flv has no problem). I use ImediaSeeking interface of ...
2
votes
1answer
440 views

How to draw on an unfilled box on a video stream using the mouse

I am using dshownet(first time) and C#. I have got a sample to take the web cam input and display it on a form. I now need to draw a rectangle on top of the video stream using the mouse. (the intent ...
2
votes
1answer
702 views

Determine length of audio file using DirectShow

I am just starting with DirectShow.NET, and I am trying to get the length (in seconds) of an audio file. The audio may be .mp3, .wav, .aac, or .m4a. Can I get this information using DirectShow, or do ...
2
votes
4answers
7k views

How to access an audio stream using DirectShow.NET C#

What I would like to do is to pass an arbitrary audio file to a DirectShow filtergraph and receive a (PCM audio) stream object in the end using .NET 3.5 C# and DirectShow.NET. I would like to reach ...
2
votes
3answers
25k views

C# + DirectShow.NET = Simple WebCam access?

I have found an example for accessing a webcam in C#. The example uses the DirectShow.NET library. I have tried to understand the code, but so far the only thing I could figure out is that somehow the ...
1
vote
1answer
78 views

how to find the main speakers directshow audio device

I am capturing the desktop using VLC and DirectShow an I need to find the main speakers audio device in order to capture all the sound from the desktop, can this be done programmaticly ? I am using C# ...
1
vote
2answers
315 views

Video Capture output always in 320x240 despite changing resolution

Ok I have been at this for 2 days and need help with this last part. I have a Microsoft LifeCam Cinema camera and I use the .NET DirectShowLib to capture the video stream. Well actually I use ...
1
vote
2answers
139 views

directshow : display graph result onto wpf window

I am a beginner directshow programmer I am trying to make WPF App that contain (live feed) from certain web camera and then I can snap a picture from this "live feed" I defined a GraphBuilder and I ...
1
vote
1answer
92 views

Is it possible to use an http url as your source location of a Source Filter in DirectShow .Net?

I'm using the DirectShow.Net Library to create a filter graph that streams video by using an http address and the WM Asf Writer. Then on the webpage I'm able to use the object element to render the ...
1
vote
1answer
69 views

Given a WPF Image control, is it possible to determine its HWND?

I am integrating a webcam in a WPF application. I can see the camera feed in the main window, as I pass its HANDLE on to the DirectShow functions. But this is not what I want. The main form has a ...
1
vote
2answers
364 views

C# control to display camera video with DirectShow.Net

I want to use DirectShow.Net to capture the stream from a webcam. What type of UI control can I use to display a the webcam video capture? I have seen an example that uses the whole window of a ...
1
vote
1answer
164 views

Setting video /audio buffer time in DirectShow

I have a source filter (rtsp source filter). I can set its video/audio buffer time in graph edit. But do not know programatically how to set. Does any body know a generic mechanishm which i can set ...
1
vote
1answer
511 views

Writing a Direct Show Source Filter

I should have to write a Direct Show Filter which takes input(video,audio) from live source. And it should give the data(video,audio : which are encoded) to a decoder Filter ...
1
vote
1answer
347 views

Question about Rendering a stream in DirectShowNet

currently I have a disfigured avi file that a program of mine creates. I found out that by going into graphedit, i can refigure it correctly. I found that if i do: SourceFile(test1.avi) -> AVI ...
1
vote
2answers
486 views

How to create audio spectrum in c#

I want to make an audio player in c# with signal spectrum. I saw some examples in the net about how to make the player but cant find example about the spectrum. Anyone can give me a direction ...
1
vote
0answers
144 views

DirectShow.Net Problem Bridge Sample Filter Freeze video

I've some troubles trying to make the DirectShowNet Bridge filter working. When I connect it to the rest of my graph, it just freezes everything (with one second delay), and then everything stop. When ...
1
vote
1answer
89 views

.NET or ActiveX component for playing common video formats

I'm looking for any reliable, commercial or freeware component to add video playback support in .NET application. Tried numerous options and packages and none of them seem to handle playback of ...
1
vote
1answer
362 views

DirectShow Record Problem - fps

I just create simple graph to record video from a source Filter: SourceFilter ---> Muxer ---> FileWriter I can able to save video which come from SourceFilter to my local disk. But when i ...
1
vote
1answer
283 views

GMFBridge usage in DirectShow

enter code hereI have to stop and start Video Renderer Filter dynamically . That is not possible with "normal" Direct Show Architecture without creating new graph. But with GMFBridge it seems it is ...
1
vote
2answers
370 views

Question about DirectShow.Net Video FIlter

I have a Graph in GraphEdit which converts a usb webcam into different forms of video like .mkv Input -> ffdshow Video Converter -> Smart Tee -> AVI Mux -> file.mkv How can I create the ...
1
vote
2answers
456 views

Is there another way to save a video in directshow

I am using DirectShow.Net and I am capturing video from a webcam and saving it to an AVI file. AVI files can get large and I would like to save it in a different format. I am using ...
1
vote
1answer
306 views

Dynamically change filter value without Property Page

I just write a simple DirectShow Filter ( which inherits from CTransformFilter). But i wanted to set a variable of filter dynamically. This can be done using Property Page. But what i want is ...
1
vote
1answer
282 views

Writing mp4 file into file using DirectShow

I use GraphEdit program for taking live videostreams from rtsp sorce and write that file in to local storage. My Graph is rougly like this: RtspSourceFilter -> VideoDecoder(MPG4) -> ...
1
vote
1answer
384 views

Can one Video Mixing Renderer 9 (VMR9) render more video streams?

I am rendering a number of video streams in a Windows form, using the same number of VMR9 instances. I am doing this in C# using DirectShowLib-2005. If there is a need to display 100 videos, I will ...
1
vote
3answers
545 views

getting specific video frame

I have been browsing around here (stack overflow) attempting to find a stable way to get images (an array of pixels) out of video files in general. In C# .NET I have found: ...
1
vote
1answer
238 views

General question about DirectShow.NET, DirectShow and Windows Media Format

I searched and googled for an answer but couldn't find one. Basically I'm developing a webcam/audio streaming application which should capture audio and video from a pc (usb webcam/microphone) and ...
1
vote
1answer
159 views

Disconnect, then reconnect pin

I'm using DirectShow.net and SlimDX to put a video texture on a quad. I've got a problem on device lost. I'm not able to reset my device. After hours of googling, I've find a forum topic where the ...
1
vote
1answer
263 views

Using DirectShow CaptureNet to add audio to avi

Hi I am using the CaptureNet application out of the box from this codeproject source: http://www.codeproject.com/KB/directx/directshownet.aspx What I'm trying to do is also capture audio from the ...
1
vote
1answer
169 views

Why does SoundPlayer intermittently hang on playback?

I have a WPF application in which I'm using SoundPlayer to play several short sounds such as keyboard clicks. Sometimes, seemingly at random, the sounds will stop playing. When I navigate away from ...
1
vote
1answer
498 views

How to capture video from WDM to MPEG format using DirectShow?

I wanna capture video from video source and encode it into MPEG format by using DirectShow. How to design Capture Graph and How to set the video properties for MPEG format (e.g. bitrate, framerate, ...
1
vote
1answer
203 views

Why doesn't capture graph in Directshow work?

This is my graph. I capture media from Pinnacle Capture Card into MPEG-2 Encoder, but the output of this graph (test.mpeg) is wrong. The video and audio in this file doesn't match. The video will ...
1
vote
1answer
532 views

DirectShow GUID missing for DVR device

I am using DShowNET in a C# project and I have been trying multiple cards. The Card I am trying to access is a GV-800_4A, which is a a capture card normally used by GeoVision CCTV software. The ...
1
vote
3answers
539 views

How can I learn a DirectShow programming?

I'm a .Net C# Developer. I want to develop the media programming about video/audio codec, capture media from source, etc. I'm going to use the DirectShow Lib, but I read it on MSDN, and I'm very ...

1 2 3