Tagged Questions

Media Foundation is a multimedia framework which enables development of Multimedia Applications on Windows Vista and later. Media foundation is intended to replace DirectShow framework in future but, DirectShow is still being supported in all recent Windows versions. According to MSDN, ...

learn more… | top users | synonyms

3
votes
0answers
49 views

How to use Frame Rate convertor DMO in MF app

I wish to use the Frame Rate convertor DSP in my media foundation application. I'm using the 'SourceReader' to read the video file. Can anyone tell me where and how to integrate the DMO with MF to ...
2
votes
2answers
47 views

Media session example

I'm new to media foundation. Could anyone help me with video playback sample code using Media session technique. I want to add a MFT for a third party decoder (to decode H264 video files). Please help ...
2
votes
1answer
545 views

DirectShow vs. Media Foundation for video capture?

I'm trying to choose between these two APIs for a Video Capture/Monitoring/Streaming application, and I'm not sure which is going to be the best bet. A bit of background: I need it to work with a ...
2
votes
3answers
135 views

Is there a macro to detect the operating system…?

I am planning to write a piece of code using the media foundation API which is available after vista. I want to add the code inside a #if block something like... #if <SomeMacro> // all the ...
1
vote
1answer
272 views

Transparency of subtitles in Vista / Windows 7

I implemented the EVR renderer into a player of mine to deal with bad resizing quality on Windows Vista+ and came to problems... I have subtitle overlay problems with the EVR: try to see what i'm ...
1
vote
2answers
348 views

Using DirectShow filters outside DirectShow?

i´m currently dealing with windows media foundation. however. due to some problems with the microsoft h264 decoder and some missing decoders for custom format, i´d like to know if it would be possible ...
0
votes
0answers
40 views

Media Foundation : mpeg4 stream from camera gets distorted when GOV length is greater than 1

I am using Media Foundation on client side to display live mpeg4 stream from AXIS Camera through RTSP server. Client side video works very fine if i set GOV @ camera = 1, i.e. camera will only send ...
0
votes
0answers
16 views

Media foundation transform implementation without copying buffer

I'm trying to build an IMFTransform object that operates on frames in-place, instead of copying them. I started with the nicely-written MFT_Grayscale + MFPlayer2 sample in the Windows SDK. The ...
0
votes
1answer
53 views

IMediaSample(DirectShow) to IDirect3DSurface9/IMFSample(MediaFoundation)

I am working on a custom video player. I am using a mix of DirectShow/Media Foundation in my architecture. Basically, I'm using DS to grab VOB frames(unsupported by MF). I am able to get a sample from ...
0
votes
1answer
72 views

Can I get raw video frames from DirectShow without playback

I'm working on a media player using Media foundation. I want to support VOB files playback. However, media foundation currently does not support the VOB container. Therefore I wish to use DirectShow ...
0
votes
0answers
41 views

Media Foundation. Encoding video from bitmaps with custom IMFMediaSource

Can anyone clarify the following questions? A decent source code snippet or example would be wonderful, the only relevant example I've found so far is WavSource in the SDK. How is the raw bitmap ...
0
votes
1answer
89 views

How to get an off-screen plain surface from 'normal' IDirect3D9Surface

I'm working on a media player with Media Foundation. I'm trying to use post processing with DXVA-HD. However, when I try to do a VideoProcessBltHD using the HD device, it fails with E_INVALIDARGS. ...
0
votes
0answers
50 views

Inappropriate Rectangle Sizes in VideoProcessBlt function

Description I have a video with resolution 1280 X 720 pixels (with 16:9 aspect ratio). While processing each sample am setting rectangle sizes as following:- BLIT Process Pararmeter --> Target ...
0
votes
0answers
72 views

live streaming using Media Foundation SDK

Is there an easy way to use the data I'm encoding using Media Foundation and streaming it over the network instead of writing it to a WMV file?
0
votes
0answers
69 views

SetInputType on Decoder IMFTransofm always returns MF_E_INVALIDMEDIATYPE

I'm working on making a video player using media foundation. I'm using the Sourcereader for this (not through media session pipeline). Here, I wish to prevent the source reader from loading a decoder. ...
0
votes
0answers
44 views

Dynamic format changes with ReceiveConnection

I am using ReceiveConnection to change only video dimensions while graph is active. It is working fine for me, but sometimes while changing format MSVCRT.DLL is crashed with EVR (in vista and above ...
0
votes
1answer
105 views

Tracking down the source of E_POINTER in IMFMediaSource::ReadSample

I'm getting an E_POINTER error from the ReadSample call, and as far as I can tell, none of the pointers are invalid. See snippet below (note, it's a C++/CLI app): IMFSample* sample = NULL; ...
0
votes
1answer
368 views

VMR9 vs EVR : How to use ImageCompositor with EVR?

I've coded a PixelShader compiler/tester that works live on the Image or Video source that is playing using DirectShow.Net + VMR9. And it was all good until I decided to give it a go as a real video ...
0
votes
0answers
348 views

Need help adding overlay graphics to live video rendered via Microsoft Media Foundation/ Direct3D

I have an app running on Windows 7 which is using a WPF window to host live video coming from a webcam. Everything is working well, but now I need to add overlay graphics / text on top of the live ...
0
votes
0answers
168 views

Is it possible to get the number of Video Frames for a file using the Media Foundation Source Reader?

I am using the Source Reader in Media Foundation to read video files (MPEG-4/H.264 and WMV) and I want to do two things: Get the number of video frames in a file Is there a reliable way to get the ...
0
votes
2answers
668 views

System.AccessViolationException from unmanaged code?

I'm writing this library that implements some basic audio player features in C++/CLI via the Media Foundation framework that will be consumed by managed code. I can play audio, stop, pause, etc just ...