A visual tool for building and testing filter graphs for DirectShow.

learn more… | top users | synonyms

0
votes
1answer
112 views

Reconnect Directshow Filter Pin

How to reconnect Filter Pins? I created a resizer filter (c++) and added a property page with options Pal(720X576) and Ntsc(720X480).(default is Pal). In Graph Edit i selected a video file and added ...
0
votes
1answer
92 views

c++ directshow filter Private Interface

I am using direct show sample ezrgb24 and trying to expose its private interface. In iez.h file has the below code DEFINE_GUID(IID_IIPEffect, 0xfd5010a3, 0x8ebe, 0x11ce, 0x81, 0x83, 0x00, 0xaa, 0x00, ...
0
votes
1answer
49 views

Make Custom Directshow fiter to accept Parameters

I Created a CTransformFilter, this is used to Resize the output video. it is working with default values which i gave in the code. is it possible to make this filter receive values, i mean when i ...
1
vote
1answer
97 views

How to find the IMoniker used to create a source filter?

Currently I'm writing a DirectShow based application that should help users configuring their TV capture cards, since GraphEdit seems to be too difficult for most to understand. The idea is that this ...
0
votes
0answers
197 views

how to convert graphedit diagram to c# code?

how to convert this graphfilter diagram in graph edit to c# code using directshow.lib graphbuilder?
0
votes
0answers
287 views

Directshow X264Vfw Codec CPU usage issue

I run one graph in graphedit that is below, Video Source (Capture Pin) --> x264vfw - H.264/MPEG-4 AVC Codec ---------> Mpeg Muliplexter --> Output (Writer) ...
1
vote
1answer
155 views

Is there any helper tool for creating graphedit files “on the fly” (programmatically)

I notice that avisynth can accept as input a "live directshow source" only through a graphedit file that includes that source in it. Is there any help tool out there to create a graphedit file on the ...
0
votes
1answer
240 views

Closed Caption to text file using directshow graphedit

I want to capture cc(closed caption) as plain text to text file; using directshow, graphedt. I have used VBICodec and Dump filter. My graph is as follow Ospray Capture Device (has 4 output ...
0
votes
2answers
809 views

Is there something like GraphEdit for MediaFoundation?

GraphEdit only works for DirectShow, and not for topologies built using MediaFoundation. Is there a similar tool as GraphEdit for MediaFoundation?
0
votes
0answers
454 views

ffdshow doesn't show up h.264 encoder in vfw configuration

I have installed ffdshow codec(ffdshow_rev4422_20120409.exe) from http://ffdshow-tryout.sourceforge.net/download.php. I m creating Graph using Graphedit utility of Direcshow. But ffdshow doesn't ...
1
vote
1answer
1k views

How to use H264 DS Filter with Directshow GraphEdit [closed]

I want to capture live video streams to .mp4 file. I have downloaded H264 DS Filter from http://hax264.sourceforge.net/. I want to generate Graph using GraphEdit utility of DirectShow. Can anyone ...
1
vote
1answer
171 views

Graphedit generates MP4 file with very large size

I have created a graph using Graphedit utility for live streaming video capture. I used GDCL MP4 mux dll from gdcl.co.uk/mpeg4. It generated .mp4 file but of very large size. If i continue playing for ...
1
vote
2answers
353 views

Mathematica Graph Editor?

I've got Mathematica 8 and I'm trying to use GraphEdit[] but I am finding it extremely annoying. For one thing, I can't figure out how to use its output to feed back to itself. For instance, I ...
1
vote
1answer
180 views

I hear clicking in audio with a DirectShow graph created with Graph Edit yet player software on my PC plays audio smoothly

I have a DirectShow application that I built with Delphi 6 using the DSPACK component library. For two days I have been trying to solve a problem with audio playback. When I run the filter graph I ...
0
votes
1answer
93 views

unresolved problems with C++ EDITTEXT and DIRECTSHOW PAUSE()

i have a simple winform that writes to an EDITTEXT , as the program goes on the printing process executing perfectly . but once i click the STOP BUTTON which firstly calls the PAUSE() function my ...
1
vote
1answer
473 views

How can I convert avi to mp4 using graphedit and ffdshow?

I´m working on an application based on directshow that has to convert an AVI source file to to an mp4-file that can be played back with Quicktime. Since 3ivx, according to my web research the most ...
0
votes
1answer
137 views

GrapEdt crash when move renderer window to computer second screen [ DirectShow]

I have simple direct Direct Show Filter: Source ---> Decoder --->Renderer I run the filter with microsoft Graph Edt Tool.Its work fine.... But when i move the renderer window to my computer ...
0
votes
1answer
174 views

DirectShow DMO Color Converter

I am having an issue with connecting the Color Converter DMO object in graphedit (graphstudio, and in code). It works on one machine and turns green in graphedit, however on the machine I have to demo ...
1
vote
1answer
302 views

why do I see different filters in GraphEdit & GraphStudio

I am using both GraphEdit & GraphStudio to process videos. However, there are some filters which are visible via GraphEdit only and vice versa. For example: ffdshow is available in GraphStudio but ...
1
vote
1answer
466 views

Why does my virtual cam (using e2eVcam directshow filter) doesn't display in Skype or Lync correctly?

I'm using e2eSoft's VcamSDK to create a virtual cam and put image overlay over it programmatically on a WPF application. Everything seems to work as I want when viewing the graph using ...
4
votes
1answer
1k views

Mac OS X equivalent for DirectShow, GraphEdit

New to Mac OS X, familiar with Windows. Windows has DirectShow, a good number of built-in filters, COM programming, and GraphEdit for very fast prototyping and snooping on the graphs you've ...
1
vote
1answer
1k views

Property page for custom Directshow filter

I managed to create a custom DirectShow transform filter, register it, and export it in a DLL. It now works properly in both GraphEdit and a C++ test program. My next goal is to create a custom ...
2
votes
3answers
2k views

Using a custom DirectShow filter (DLL, registered)

I've written a small transform filter (derived from TransInPlaceFilter baseclass), and managed to make it work properly in a Directshow graph, entirely coded in C++. I basically followed the 5 first ...
2
votes
4answers
4k views

DirectShow Filter Graph Editor doesn't show remote graphs

I have a problem with connecting to remote graph from DirectShow Filter Graph Editor. When I run application that creates a direct show graph, on my Windows XP machine graph is shown in the list of ...
2
votes
1answer
790 views

How to use SampleGrabber with Matroska Muxer in DirectShow?

I made a simple graph to write MKV file. But I do not want to use file writer. I want to use SampleGabber and get stream using simple program. Problem is that I get data from anything but Matroska ...