Windows Media Encoder 9 Series is a powerful production tool for compressing audio and video content into a format that is suitable for streaming over the Internet, downloading onto users' computers, or playing back on hardware devices.

learn more… | top users | synonyms

0
votes
0answers
39 views

windows media encoder screen recording plays in vlc as a tilted image

I've done a screen recording with windows media encoder and I've tried playing it in VLC but the image appear tilted by 45 degrees. How can this happen? Any ideas how to resolve it. Do I need to load ...
0
votes
0answers
142 views

Set quality video record desktop screen windows media encoder 9 SDK

I use windows media encoder 9 SDK in C# to record desktop screen. But video quality is bad. How to set video's quality? Here's my code: WMEncoderApp DesktopEncoderAppln = new WMEncoderApp(); ...
0
votes
1answer
543 views

Difference between IIS Smooth Streaming and Windows media Service

I am looking in to options for windows streaming technologies for streaming live webcam . I am not quite sure pros -cons , price and media format differences between the two . I know that IIS smooth ...
1
vote
1answer
235 views

C# WMEncoder Error C00D002E

I wrote a Windows Service Code to convert AVI to WMV file. I'm using XviD, and Windows Media 9, in a Windows Vista. The service starts converting, and stops before completing the job, with a ...
0
votes
0answers
205 views

windows media encoder stream from PC Webcam to server port

I Want to stream my webcam video to a specific port on a remote server as a live stream so users can access this live stream from another computers. I want to use wndows media encoder SDK. Are there ...
0
votes
0answers
145 views

Playing live stream from windows media encoder in WPF

I am using windows media encoder 9 for live streaming from firewire camera. Everything is set up perfectly and i can view the stream by using e.g. VLC player. I want to display the live stream from ...
0
votes
0answers
39 views

How to obtain XML for event actions in Windows Media Encoder?

Is there a way I can view events for each action made in WME? For example, I want to schedule a task that executes a batch file, which triggers when the "Stop Encoding" button is hit in WME. I believe ...
3
votes
0answers
130 views

Push a video to Windows Media Services 2008

I have a Windows Media Services 2008 Server (NOT IIS Smooth Streaming) and I need to push a video to publishing point. What is the C# code (VS2010) to get this? What SDK I need to install? Where is ...
4
votes
1answer
371 views

WMEncoder throws OutOfMemoryException after one iteration

I'm using WMEncoder for screen recording. At the first time everything is working properly, but at the second time Start() method throws me OutOfMemoryException: System.OutOfMemoryException was ...
0
votes
0answers
70 views

How to make WriteStreamSample never drop packets?

I am using Windows Media Format 11 SDK to copy a video file by reading and writing compressed samples (i.e. without any decoding/encoding happening - just copying of the raw samples). My problem is ...
9
votes
3answers
3k views

How to Close another Process from c#

I need to close another Process (Windows Media Encoder) from a C# Application ,and so far i can do it with: Process.GetProcessesByName("wmenc.exe")[0].CloseMainWindow(); But if the Media Encoder ...
0
votes
1answer
259 views

How to record high quality videos with Windows Media Encoder in C#

I recently created a software for recording screen activity with the help of a windows media encoder tutorial.. However I am having serious problems with quality. It seems the quality of the video is ...
0
votes
1answer
197 views

Windows Media Encoder : How to set average bitrate in audio Bitrate-based mode

How to set average bitrate in audio Bitrate-based mode? In Window media encoder SDK, it tell that I must specify average bitrate. Is it using the same audience.SetAudioConfig(0, 2, 44100, 192000, 16); ...
1
vote
1answer
202 views

Windows media encoder Library cannnot be created

I have an application that records video from webcam. It works on my 64-bit window, but this doesn't work in 32-bit version. Actually I just try to initiate an WME Object from this below statement. ...
0
votes
1answer
131 views

Cannot record Bitrate-based audio using Windows media encoder

I want to record video from webcam and sound from microphone using Windows Media Encoder. I set a profile to record audio using bitrate-based mode and video using CBR. this.newProfile = new ...
0
votes
1answer
79 views

Merging two ASF files

I have an ASF file which contain 8 audios and 1 video. Now i want to merge this file with other of same ASF type. Is it possible to do with windows media SDK. My language is VC++ Please give some ...
2
votes
1answer
712 views

Windows Media Encoder object not created in ASP.NET on MS Server 2003 64 bit

I created (and used) a Windows Media Encoder object in Microsoft Visual C# 2008 Express Edition on MS Server 2003 64 bit. This worked fine. However, when I attempted to create the equivalent Windows ...
3
votes
1answer
379 views

How do I get recorded video from a digital camera?

Can anyone provide C# code for getting recorded video from camera via Windows Media Encoder?
2
votes
0answers
445 views

Windows Media Encoder - Audio Codecs

When encoding and streaming audio with Windows Media Encoder 9 (with WMA 10 Professional codecs installed), there seems to be a minimum audio latency of ~2 seconds, even when using the Low Delay CBR ...
1
vote
2answers
622 views

Custom WM profile - issues with codec

Hello I create my custom WM encoder profile. The reason I need a custom, non standard WM profile is that I need that the video resolution must be the same as input video stream. I created below ...
1
vote
2answers
504 views

encoding camera with audio source in realtime with WMAsfWriter - jitter problem

I build a DirectShow graph consisting of my video capture filter (grabbing the screen), default audio input filter both connected through spliiter to WM Asf Writter output filter and to VMR9 renderer. ...
0
votes
1answer
605 views

Windows Media Encoder based application deployment issue

If I develop my application based on Windows Media Encoder 9 Series SDK, and I am using C# + .Net 2.0 + VSTS 2008, how to deploy all necessary dependent files (the ones from Windows Media Encoder 9 ...
3
votes
2answers
1k views

Convert a wma to wav programatically with Windows Media Encoder

Has anyone converted a WMA to a WAV using Windows Media Encoder? If so, do you have a short code snippet of how you did it? All samples I've seen have been for WAV to WMA, not the other way around.
2
votes
1answer
2k views

How do I preview a Windows Media Encoder session in WPF?

This code works in a windows forms application (it shows the preview) but not in a WPF application. WMEncoder _encoder; WMEncDataView _preview; _encoder = new WMEncoder(); ...