Tagged Questions
2
votes
1answer
260 views
How do you render a video from a MemoryStream using DSPack?
I'm able to render a video from the file system using a TFilterGraph and a TVideoWindow within Delphi 2010. I'd like to render the video from a MemoryStream instead of directly from the file system. ...
0
votes
1answer
180 views
How do you loop a video using DSPack?
I've got a very simple program that uses DSPack from within Delphi 2010. I have a form with a TFilterGraph and a TVideoWindow. The video plays and renders nicely. I can't seem to figure out how to ...
2
votes
0answers
161 views
How to Prevent Black Background When Resizing a DSPack TVideoWindow
Is there a way to prevent the black background when resizing the window while a video is playing?
I've tried setting the TVideoWindow.Color and the TVideoWindow.Canvas.Color to white but every time ...
1
vote
1answer
143 views
How to initialize a TFilter with a known Video Capture source without using TSysDevEnum.GetMoniker?
Is it possible to create/initailize a TFilter object with a known Video Capture source without using TSysDevEnum.GetMoniker(...)?
The Video Capture Source's name and other details are already known ...
2
votes
1answer
767 views
How to capture frames using Delphi/DSPack without displaying it on TVideoWindow?
DSpack has example code to play a DirectShow compatible video device and to capture the video frames simultaneously. A TVideoWindow is attached to the FilterGraph to display the video (Firgure-1). If ...
4
votes
0answers
241 views
dspack, pushsource how to use it?
I saw some topic, like How to use/install custom Directshow filter to register a filter, but no code how to use it. Can anybody show a sample how to actual use that filter (pushsource, pushdesktop) to ...
2
votes
1answer
259 views
My DirectShow filter crashes Skype 5.x during a call. Runs fine in 4.x, Graph Edit and other programs
I have a DirectShow push source video filter written in Delphi 6 with the DSPACK component library. The filter runs fine during a Skype call as long as the Skype client utilizing the filter is not ...
2
votes
1answer
270 views
Why does adding a renderer to my DirectShow Filter Graph smooth out audio input to the graph?
I have a DirectShow filter graph in my Delphi 6 application built with the DSPACK component library. The structure of the graph is as follows:
Custom push source audio filter
Sample Grabber
Tee ...
3
votes
1answer
475 views
DirectShow render window shows black if graph started when host Tab is not visible (TVideoWindow)
I have a Delphi 6 application that uses the DirectShow DSPACK component suite. It has a TVideoWindow component that will render the images from a filter graph. The TVideoWindow component is on a Tab ...
1
vote
1answer
185 views
What Directshow filter event can I use to unblock the source stream thread upon filter shutdown?
I have a DirectShow filter written in Delphi 6 using the DSPACK component library. It is a push source video filter. The filter blocks on an event that is signaled in another thread that generates ...
0
votes
1answer
101 views
When do I need to worry about locking a DirectShow filter's shared state?
I have a Delphi 6 DirectShow push source video filter that uses the DSPACK component library. What aspects of the filter require me to lock the filter state before performing certain operations? For ...
0
votes
1answer
165 views
Why am I getting successive media samples from a DirectShow capture filter with the same sample time?
I have a DirectShow application written in Delphi 6 using the DSPACK component library and running on Windows XP. At the top of my filter graph is an audio capture filter. The capture filter is ...
1
vote
2answers
440 views
Getting stuttering during rendering of my DirectShow filter despite output file being “smooth”
I have a DirectShow application written in Delphi 6 using the DSPACK component library. I have two filter graphs that cooperate with each other.
The primary filter graph has this structure:
...
0
votes
1answer
439 views
What could cause a DirectShow push source filter to push out data faster than expected?
I have a DirectShow push source filter and a DirectShow simple audio mixer filter both written in Delphi 6 with the help of the DSPACK component library. In my app, I build a filter graph manually ...
1
vote
1answer
243 views
Why is DirectShow dragging in unnecessary intermediate filters when making multiple input connections to my DirectShow Transform filter?
I have a DirectShow Transform filter written in Delphi 6 using the DSPACK component library. It is a simple audio mixer that creates a new input pin whenever a new connection is attempted. I say ...
0
votes
1answer
73 views
Can I safely assume that the destination Sample received by my DirectShow Transform Filter will have memory already allocated to it?
I've written a DirectShow Transform filter using Delphi 6 and the DSPACK library. I've examined the DSPACK base Filter classes and the code belonging to their 'WAV Dest' sample app, which is a ...
2
votes
0answers
120 views
How do I arbitrate stream messages across input pins in my DirectShow multi-input audio filter?
I am implementing a DirectShow filter that does simple audio mixing between multiple input pins and delivers the merged data to singular output pin (many-to-one). I've got the audio data mixing ...
1
vote
1answer
236 views
Is there a simple DirectShow filter that can mix audio together of the exact same format?
I have a DirectShow application written in Delphi 6 using the DSPACK component library. I want to be able to mix together audio coming from the output pins from multiple Capture Filters that are set ...
0
votes
1answer
85 views
Is there an automatic way to protect against “stale” DirectShow interface references?
I just had a long debug session that was caused by a "stale" interface reference in my Delphi 6 DirectShow application that uses the DSPACK component library. As you know there are some operations ...
0
votes
1answer
405 views
Other causes for DirectShow “no combination of intermediate filters could be found” errors?
I have a Delphi 6 application that uses the DSPACK DirectShow component library. Currently I am getting the error "no combination of intermediate filters could be found" when I attempt to connect the ...
1
vote
1answer
648 views
How to debug an unspecified error ($80004005) during DirectShow put_Enable call on Capture filter?
I have a DirectShow application written in Delphi 6 using the DSPACK component library. I am having a strange problem enabling an input line on a Filter. I search the pins until I find the input ...
0
votes
1answer
364 views
Can't find pin in DirectShow filter by name/ID despite it being the ID returned by QueryPinInfo
I'm having a weird problem while developing my DirectShow application. I am using Delphi 6 with the DSPACK DirectShow component library. One of the IBaseFilter instances doesn't seem to recognize a ...
0
votes
1answer
149 views
Do I need a unique class ID for each DirectShow filter instance if a filter has persistent local data?
I have written a push source filter that I use privately in my Delphi 6 application. The application uses the DSPACK DirectShow component library. By privately I mean I simply add instances of the ...
2
votes
2answers
293 views
Correct way to handle a NULL ppPins parameter in DirectShow Filter's EnumPins method (Delphi/DSPACK)?
I have a custom push source filter written in Delphi 6 using the DSPACK DirectShow component library on a Windows XP/32 machine. During coding I ran into a problem with range check errors occurring ...
2
votes
1answer
266 views
How do I construct a private aka unregistered DirectShow filter properly (have source code)?
I have created a push source filter using Delphi 6 Pro and the DSPACK DirectShow component library. I want to use the filter privately so I will not be creating an AX file for a DLL. Instead I want ...
1
vote
1answer
288 views
What is the correct sample size for a DirectShow push source filter that provides only audio?
I have a Delphi 6 Pro program using the DSPACK library to do DirectShow filter work. I am creating my first Push Source Filter that would provide audio from a custom audio source. Currently my ...
5
votes
1answer
771 views
How to eliminate 1 second delay in DirectShow filter chain? (Using Delphi and DSPACK)
I have a Delphi 6 Pro app that uses the DSPACK component library to send audio to Skype from the system's preferred audio input device. I am using a TSampleGrabber component to tap into the Filter ...
2
votes
2answers
449 views
How can I directly embed a DirectShow Push Source filter in an EXE?
I have a Delphi 6 program that receives audio from an external program via a socket. Now I want to feed that audio to a DirectShow filter graph I create that routes that audio to different output ...
2
votes
1answer
263 views
How do I inject custom audio buffers into a DirectX filter graph using DSPACK?
I am using Delphi 6 with DSPACK to do several operations involving audio and DirectX. I have the "input" side figured out where I assign one of the enumerated audio input devices to a TFilter object ...
2
votes
1answer
648 views
DSPACK example for converting audio sample rate on the fly?
I am using DSPACK with Delphi 6 Pro. I am looking for a good sample that shows how to create a filter graph that will convert the sample rate of an audio stream to a desired format (sample rate, bit ...
2
votes
2answers
2k views
Capture images from a webcam in delphi
I am looking for a way to capture images from my webcam using directshow, preferably I want to use HD resolutions if possible, and avoid CPU spikes at 60-100%.
can someone shoot me in the right ...