DSPack is a set of Components and class to write Multimedia Applications using MS Direct Show and DirectX technologies. DSPack 2.3 is designed to work with DirectX 9 on Win9X, ME, 2000, and Windows XP operating systems using Delphi 5,6,7 and BCB6.
0
votes
1answer
31 views
Determining video file properties using DSpack and Delphi7
I would like to determine various properties from a video file (eg MP4) such as the length of the video etc but I have no experience of working with multimedia Can anyone help
Thanks
MIke
0
votes
0answers
159 views
DSPack play 3gp videos
Im working with Delphi DSPack from
http://sourceforge.net/projects/dspack/
I try to play AVI files and with perfectly but if i try to ran 3gp files it give me error
my code is
procedure ...
2
votes
1answer
273 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
189 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
162 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 ...
0
votes
0answers
300 views
How to Install DSPack in Delphi 2010
I'm trying to install DSPack in Delphi 2010. I just downloaded the latest DSPack from the google code site using TortoiseSVN. The readme.txt file makes installation a bit confusing. It's a bit old ...
0
votes
1answer
331 views
How to get a Frame Bitmap from a Video File by DsPack Components?
Is it possible to get a bitmap from a video file by DsPack components?
In this case I'm using this code; but It can't take a screenshot Image:
type
TForm4 = class(TForm)
FilterGraph1: ...
1
vote
1answer
146 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
788 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
242 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 ...
0
votes
1answer
422 views
DSPack: how to connect PushSource to videocap?
I want to use PushSource filter to capture but I need to "connect" it to "videocap" sample. This filter is not a standalone filter, so it can't be enumerated as capture device, also I dont want it 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
272 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
480 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
186 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
444 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
444 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
248 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
122 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
418 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
662 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
372 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
150 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
298 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 ...
1
vote
3answers
274 views
Unit source code does not match code execution path when breakpoint hit in Delphi 6 package
I am debugging a DirectShow filter I created with the DSPACK code library using Delphi 6 Pro. When a breakpoint I set is hit in one particular unit named BaseClass.pas, and I begin tracing, the ...
2
votes
1answer
269 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
289 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
785 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
450 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
267 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
651 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 ...
12
votes
2answers
1k views
How is SkypeKit different from programming with the Skype API?
I have a lot of experience writing Delphi 6 Pro apps using the Skype API. I don't use the COM object but instead I interface directly with the Skype client using the SendMessage() system. My current ...
1
vote
1answer
141 views
What to do with NIL response for legacy filter 'Wav Dest' in Delphi 6 DSPACK program?
I am trying to create a Delphi 6 program with DSPACK that records audio from the PC input devices (Windows XP) and then writes the captured audio to a MS format WAV file. The problem I am having is ...
1
vote
2answers
315 views
Should I use DSPACK to record audio (only) from Direct3D devices with Delphi 6?
I'm trying to save time on a project I'm beginning that will record audio from the connected audio input devices on a Windows XP or Windows 7 PC. In the past I have used the DSPACK components for ...
3
votes
1answer
1k views
DSPack - How to get the default device for sound output?
In Windows 7 there are multiple playback devices.
Example (on my laptop):
Speakers and Dual Headphones
Independent Dual Headphones
SPDIF (Digital Out via HP Dock)
The situation is thus:
I am writing ...
0
votes
1answer
2k views
How to take snapshot and save to JPEG from webcam using DSPack?
Using DSPack, Delphi XE I need to take a snapshot from a webcam and allow a preview before which the user is allowed to save to JPEG file. How can this be done (code)?
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 ...
3
votes
1answer
385 views
Delphi divx player compatible with windows vista
I usualy use DSpack or DCAVIPlayer components to play divx avi videos in delphi 5.0.
Those two components are not compatible with windows vista. Both give run time error when you try to play the ...
