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
1
vote
1 answer

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 WMENC_ENCODER_STOPPED status, but the file was not fully…
0
votes
0 answers

How to remove audio distortion from fast recorded video in android programmatically?

I need help for this if anyone got this issue, can you please share your experience for this? Thank you in advance! Distortion will be removed from any speed variations.
0
votes
1 answer

How to show full images with no errors in after effects?

I am trying to open my project and render it on another PC (my cousin's PC), but 2 of the images don't appear fully, but look like a TV with no signal. This is a screenshot to see what is happening: I tried to search for missing files or…
0
votes
1 answer

Can one pass a comp from AE to AME where AME is located on a separate server from AE via extendscript

I’ve developed a system that cranks out thousands of short videos. Currently, I have AE and AME on the same computer. I use ExtendScript to: create a comp from various components pop that comp into the AE render queue :…
0
votes
0 answers

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 that the writer is dropping data packets! This is…
Sander
  • 25,685
  • 3
  • 53
  • 85
0
votes
1 answer

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 really bad. Does anyone know how I can get around…
Chibueze Opata
  • 9,856
  • 7
  • 42
  • 65
0
votes
0 answers

Microsoft media encoder screen capture, save a specific part of the video being recorded

I'm coding a screen capture program in C# using windows media encoder. While the screen is being recorded i want to save the last 30sec of the current video being recorded in a separate video when a btn gets clicked. Is there a function in encoder…
Moe
  • 13
  • 4
0
votes
0 answers

How to capture windows screen at 60 frames per second using api?

I have tried GDI approach which takes 75 ms to capture 1920x1080 screen. DirectX front buffer approach which takes 84 ms to capture 1920x1080 screen. Desktop Duplication API which is very fast when videos are being played takes 9 ms per capture…
0
votes
1 answer

How to adjust quality with ConfigureFilterUsingProfile DirectShow uncompressed recording?

I am digging into DirectShow to record video from USB device and from the following code: hr= m_captureGraphBuilder.SetOutputFileName(MediaSubType.Asf, "E:\\exa.wmv", out pMux, out fSinkFilter); // //configure which video setting is used by…
Rawat
  • 461
  • 3
  • 6
  • 23
0
votes
1 answer

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); to set the bitrate as CBR?
Prince OfThief
  • 6,323
  • 14
  • 40
  • 53
0
votes
1 answer

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 WMEncProfile2(); this.newProfile.ValidateMode…
Prince OfThief
  • 6,323
  • 14
  • 40
  • 53
0
votes
1 answer

ASF file can't be rendered by GraphEdit but can be played by WMP

My program uses Windows Media Foundation WMV/WMA MFTs to encode to ASF format (mux is done by ffmpeg). Generated file can be played perfectly by Windows Media Player on Win10 but failed to be rendered by GraphEdit, error code == NS_E_INVALID_DATA…
rhbc73
  • 739
  • 9
  • 24
0
votes
1 answer

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 help
0
votes
2 answers

PrepareToEncode() method in dot net application with Window Media Encoder 9.0 series raising exception.

I am getting the ArgumentException:"Parameter is incorrect." when I call a method "PrepareToEncode()" in an application. I am using... Windows Media Encoder 9 series with Visual Basics Dot Net Framework version 2.0. I am actually upgrading the…
Sumeet
  • 51
  • 6
0
votes
1 answer

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(); DesktopEncoder =…