Tagged Questions
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.
9
votes
3answers
337 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 ...
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
408 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 ...
2
votes
1answer
237 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
319 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 ...
2
votes
1answer
1k 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();
...
1
vote
1answer
97 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. ...
1
vote
2answers
405 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
402 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
0answers
45 views
how to create one WMV file from wma file and wmv file using Microsoft Expression Encoder 4 sdk
I have 2 files: one is audio file (.wma) and the second one is video file (.wmv)
I want to create one file in wmv format that it audio will be taken from my audio file and the video will be taken from ...
0
votes
0answers
26 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 ...
0
votes
1answer
61 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
0answers
49 views
Question on windows media encoder
I am looking into WME SDK documentation and sample, for screen capturing and sending it to remote system. I am having following doubts,
My application will be use for cross platform users e.g. ...
0
votes
1answer
121 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); ...
0
votes
1answer
70 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
47 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 ...
0
votes
1answer
400 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 ...