Questions tagged [windows-media-encoder]

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.

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.

http://www.microsoft.com/windows/windowsmedia/howto/articles/introencoding.aspx

32 questions
21
votes
2 answers

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 Application is Streaming or Recording it shows a…
Rosmarine Popcorn
  • 10,761
  • 11
  • 59
  • 89
5
votes
2 answers

How to detect Windows Media pack installed on system

One of the components in my application is failing on Windows because Windows K/KN systems don't have Media Feature Pack installed. To prevent this I was thinking of adding a check during install time to see if Media Feature Pack is installed on the…
4
votes
1 answer

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.
Peter Walke
  • 2,497
  • 6
  • 33
  • 50
3
votes
1 answer

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(); IWMEncSourceGroupCollection SrcGrpColl =…
loraderon
  • 4,658
  • 2
  • 32
  • 35
3
votes
1 answer

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?
Andriy
  • 33
  • 5
3
votes
1 answer

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 the docs? thanks a lot!
3
votes
1 answer

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 caught HResult=-2147024882 Message=Not enough…
Dor Cohen
  • 16,769
  • 23
  • 93
  • 161
2
votes
1 answer

Set up IWMWriter to wirte 4K video

This question is about using Window Media API to output a 4K WMV video (although theoretically WMV doesn't support output to 4K) After IWMWriter->BeginWriting() is called on both 32bit and 64bit Win10 (on both systems BeginWriting() returns S_OK),…
rhbc73
  • 739
  • 9
  • 24
2
votes
1 answer

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 Media Encoder object using Microsoft Visual Web…
Ron
  • 21
  • 3
2
votes
2 answers

Custom WM profile - issues with codec

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 profile but after I encode my video and audio with it, the…
cubesoft
  • 3,448
  • 7
  • 49
  • 91
1
vote
1 answer

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. But it seems not work. When I try to do debugging,…
1
vote
0 answers

Multiple Camera Angle .ism and .ismc generation

I was trying to follow this sample of Microsoft's Multiple Camera Angles to use with Smooth Streaming client: http://msdn.microsoft.com/en-us/library/gg134026(v=vs.95).aspx The article doesn't indicate how to (or what did) generate the .ism file…
1
vote
1 answer

windows media encoder 9 insert (link,script) handling

hi guys I’m new in broadcasting technology I’m broadcasting using windows media encoder 9, what I want is while broadcasting when i use insert link option of windows media encoder 9 that time I want to change image path on broadcasting page but when…
1
vote
0 answers

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 configurations. Are there any codecs out there…
JML
  • 409
  • 2
  • 8
1
vote
2 answers

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. This means I want to have realtime audio/video…
cubesoft
  • 3,448
  • 7
  • 49
  • 91
1
2 3