The Microsoft DirectShow application programming interface (API) is a media-streaming architecture for Microsoft Windows. Using DirectShow, your applications can perform high-quality video and audio playback or capture.
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
148 views
How to display QWidget above data stream from device handled by external library
I'm creating application to analyze data from a device and displaying it on the screen. SDK to handling this device have function to display current frame of data in specific Window by setting window ...
1
vote
1answer
426 views
Using DirectShow in C++ to decode an MP4 video with a H.264 stream
I have an MP4 video containing a single H.264 stream and no audio stream. I would like to use DirectShow with C++ to decode the video, but I'm having trouble setting up the DirectShow filters and ...
1
vote
1answer
245 views
How to write an avi file with DirectShow
I'm trying to write an avi video file based on the streaming of my Decklink SDI card, after looking in the internet and here I wrote this code by my problem is that the program doesn't write the file ...
0
votes
0answers
88 views
Previewing camera through java using Direct Show and Java ( JNA/JNI )
I need to show a camera preview in a java application.
I am using DirectShow natively and using JNA as a bridge between Java and C++. I have a few questions regarding this :-
1) In DirectShow I can ...
2
votes
0answers
88 views
Looking for a working Hauppauge Colossus filter graph [closed]
I'm really having no luck in getting my Hauppauge Colossus to work in my app. Does anyone have a working filter graph for this device? Or a c++/c# list of filters that need to be added to a filter ...
0
votes
2answers
410 views
Faster frame extraction than ffmpeg
I have a video analytics program that processes assorted frames from a video. (Several hours long)
The video is likely going to be an MP4 but may be other formats going forwards.
At the moment, I ...
0
votes
1answer
126 views
Capturing an AVI video with DirectShow
I'm trying to capture an AVI video, using DirectShow AVIMUX and FileWriter Filters.
When I connect SampleGrabber filter instead of the AVIMux, I can clearly see that the stream is 30 fps, however ...
2
votes
0answers
157 views
Webcam DirectShow Properties Page in Python
I'm working on a windows Python 2.7 application that needs to communicate with many different USB webcams. I have been using OpenCV, but for some scientific webcams, the default frame rate, capture ...
1
vote
1answer
117 views
How should a DirectShow muxer filter with multiple input pins implement IMediaSeeking pass through?
I'm working on a bug with a custom audio mixer filter (I have the source) where the input audio streams seem to get out of sync after any seeking with some input sources (I don't have the source for ...
0
votes
1answer
111 views
Record and Preview VB.Net Directshow
I am using the GFPreview Sample code from directshow.net itself, I converted it to vb.net code, however, there is a following error when I select a device to use.
Retrieving the COM class factory for ...
0
votes
1answer
207 views
Record and view video at the same time DirectShow
I have used the sample code of DirectShow in order to record a video. however, I want to display the video during recording as well. But I can't do it at the same time, this error always shows:
' ...
0
votes
1answer
241 views
How can I create a DirectShow Project in VS 2010
I have Visual Studio 2010 in Win7 (64-bit) and I want to start developing DirectShow projects in C++ or C#. To be honest I don't know how can I do this in VS 2010. What is the software and libraries ...
2
votes
1answer
277 views
DirectShow sound capture from microphone + stereo mix
I'm trying to write some code to capture both the microphone and stereo mix with DirectShow filters. First I'm trying to set up the filters using GraphEdit from Windows SDK. I set the capture devices ...
2
votes
1answer
82 views
How can I take a HD signal from a device with component-out and display it in a window in a C# application?
I've been tasked with getting the video from the component out ports of a video device into a window in our C# application.
Think taking the component output from a TiVo or DVD player (not HDMI so no ...
0
votes
1answer
197 views
Directshow- ISampleGrabberCB::SampleCB callback frequency
I am working on an application which requires video frame capture from different frame-grabber cards. I am using directshow ISampleGrabberCB::SampleCB callback to receive pointer to the new frame. Now ...
0
votes
1answer
153 views
Video recording resolution using DirectShow
How do i change the screen resolution of a video while recording in directshow? because I have a 8 Mega-pixel web camera, which I use for video recording but after the video is saved, when I view the ...
0
votes
1answer
161 views
concatenate video files DirectShow
Using C#,
How to concantenate two video files (.avi files) using DrirectShow ..?
Kindly help!
Following code is just for explaining the issue ...
VideoSpanCollection newList = new ...
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
2answers
251 views
DirectShow Sample Grabber being called but 'this' in callback is NULL
I'm working on a basic implementation of a DirectShow filtergraph to get images
from my webcam in my application. I've read the documentation and created a simple
implementation. I create this graph: ...
0
votes
1answer
53 views
protocol for transfering binary data in local network
I have two computers connected by ethernet in a local network. The computers run Windows 7.
A video input device (monitoring a physics experiment) is connected to Computer A. I use DirectShow to ...
-1
votes
2answers
99 views
get loudness level from raw data recieved from microphone in DirectShow
How i can get loudness level from raw data recieved from microphone in DirectShow?
IMediaSample keep data in bytes. And how i can read this bytes and get somethink?
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 ...
0
votes
1answer
142 views
Connecting Microsoft DTV-DVD Video Decoder to Sample Grabber?
I have written a WPF application that can open, edit and render .GRF files. When rendering, I did not want it to open a new window (like GraphEdit does), so I found a solution that uses the Sample ...
2
votes
1answer
270 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
298 views
encoding direcshow frame buffers by using libavcodec
I am trying to encode a stream buffer of frames grabbed by ISampleGrabber(directshow) by using libavcodec. After encoding those frame I am writing it into a file. But after completion file contains ...
0
votes
1answer
182 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 ...
0
votes
1answer
180 views
Having trouble capturing digital TV using DirectShow
I have a YUAN MC570QA ATSC/Analog Hybrid Tuner device, I can open the device for capturing analog but I can't find any reference or source code showing how to open the digital tuner. If I enum ...
1
vote
0answers
72 views
Why does it take a long time to record video to a file?
I developed a video capture application in which the CPU is 624MHz(ARM920T-PAX310), and RAM is 72MB. The captured video is 1 minute but it takes almost 10 minutes to save the video file. I set a ...
0
votes
1answer
55 views
IVideoWindows shows outside form when use MDI
I'm using the ConferenceXP source code, when I try to set the video windows as child inside my form using MDI the IVideoWindows opens outside in a different ActiveMovie windows.
I need this to make a ...
1
vote
1answer
176 views
Get bitmap info from MPEG-2 Program / Transport Stream?
In order to render a DirectShow graph in my WPF application, I use a sample grabber to write a bitmap to memory, and read it elsewhere in code. This may seem as a wierd solution, but seems to be the ...
0
votes
1answer
80 views
Has Anyone Worked with GMF bridge and GMF PLay Project
There is an project named GMF bridge and GMF play which is available on the following link
http://www.gdcl.co.uk/gmfbridge/ in this project we are able to give the file as input and play it but how ...
0
votes
0answers
80 views
Can anyone please tell me how to use the RTSP source filter using Direct show example
Can anyone please tell me how to use the http://rtpstream.com/downloads.shtml RTSP source filter using Direct show example.
AND
How to use GMF bridge to get data from a socket connection or from array ...
1
vote
1answer
90 views
How do I make a Windows Forms control respond to a DirectShow message?
I am constructing a simple video player with a playlist using Windows Forms. The playlist is a ListBox control and I'm using the DirectShow.NET library to play the videos on a PictureBox control.
I ...
0
votes
2answers
185 views
How to change Directshow filter properties C++
How to change Filter Properties programmatically?
I am using a filter AAC encoder, and I can manually change its bitrate in graphedit by right clicking on the filter and entering the bitrate value.
...
-2
votes
1answer
51 views
Am i using the GMFBridge.DLL and GMFBridge player correctly and can gmf player be made to take data from socket?
I require an application in which i want to give the byte stream of NAL units to GMFBridge player instead of file.so i did the following
for demo
Takes the file and parse the file so that i can i ...
0
votes
0answers
101 views
IVideoWindow SetWindowPosition fails
Here is the scenario and issue i am facing.
I am creating a sample directshow camera streaming application for WINCE 7 platform that supports full screen view and minimized (reduced) view. I am ...
0
votes
1answer
206 views
Getting Unknown errors in DirectShow Project
i downloaded an direct show project from the link GMFBridge - Multiple Graphs in DirectShow
I added the following libraries
C:\Program Files\Microsoft ...
1
vote
0answers
383 views
Directshow Audio/Video for Captured device
Directshow Audio/Video Capture
In VB.Net, I can capture the video from connected device, but unable to recieve any sound, as speakers are connected. I can play movies and mp3s from MediaPlayer. ...
0
votes
1answer
113 views
DirectShow Installation
Issue with DirectShow Installation
I have a "Windows 7 (professional)" & "VS-2010" installed.
I want to install Directshow. I have two questions here...
1> Should I install "Windows SDK for ...
0
votes
0answers
64 views
IVideoWindow interface put in Silverlight applcation
I want to render some videos in my Silverlight application.
For such aims in desktop-apps I'm using IVideoWindow interface where I'm living in loaf, becuase it's simple.
But when I'm embedding such ...
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
157 views
Using webcam with OpenCV - 'can't initliaze capture' error [closed]
I have installed OpenCV b3.1 but I am not able to run applications using my
off-the-shelf USB webcam.
I get error "Can't initialize camera. Change the format". I am not even able to
run the apps what ...
0
votes
0answers
82 views
Capture video to file
I'm trying to capture a video to file.
I'm using direct show and I can successfully see live stream with the use of
CComQIPtr<IMediaControl, &IID_IMediaControl> mediaControl(graph);
hr ...
0
votes
1answer
211 views
Provide DirectShow filter for Windows Media Player ActiveX control in C# application
I'm using Windows Media Player ActiveX control in C# application. Also I have third-party DirectShow filter (Wasabi Marlin) which I need to use for video playback.
As far as I know, the Windows Media ...
2
votes
1answer
533 views
Capturing Video to an AVI File with DirectShow
I'm trying to write a C++ application with directshow that saves video capture to file.
The steps in the code are:
1. Create the Capture Graph Builder
2. Create the System Device Enumerator
3. ...
1
vote
1answer
66 views
What media players support the use of custom Directshow filters?
I have a directshow source filter that I have written to play a new file type. It works perfectly in GraphEdit and now I want to have a media player use it.
How can you register a Directshow Filter ...
2
votes
0answers
135 views
mp4 video created using direct show filter is not playing
Using direct show filters I have created a mp4 file writer with two input pin (one for audio and one for video) . I was writing audio sample received through one pin into one track and video sample ...
0
votes
1answer
453 views
Microsoft MPEG-2 Encoder & MPEG-2 Video Encoder failed at Windows 8
During building record graph to file from video and audio sources using Microsoft MPEG-2 Encoder at Windows 8 ICaptureGraphBuilder2::SetOutputFileName return failed 80040154 result - class not ...
0
votes
2answers
213 views
How to determine if pins can be connected?
Currently I'm working on a DirectShow based application for configuring TV capture cards. It's supposed to work with most of the capture cards out there, so it has to be as generic as possible.
Since ...
