Hello everyone,
I am using the following code snippets to record screen, and in most situations recorded wmv file is clear enough, but for some part of video it is not very clear (grey color for some parts). What I record is ppt with full screen mode. I am using Windows Media Encoder 9.
Here is my code snippet,
thanks in advance,Code:IWMEncSourceGroup SrcGrp; IWMEncSourceGroupCollection SrcGrpColl; SrcGrpColl = encoder.SourceGroupCollection; SrcGrp = (IWMEncSourceGroup)SrcGrpColl.Add("SG_1"); IWMEncVideoSource2 SrcVid; IWMEncSource SrcAud; SrcVid = (IWMEncVideoSource2)SrcGrp.AddSource(WMENC_SOURCE_TYPE.WMENC_VIDEO); SrcAud = SrcGrp.AddSource(WMENC_SOURCE_TYPE.WMENC_AUDIO); SrcVid.SetInput("ScreenCap://ScreenCapture1", "", ""); SrcAud.SetInput("Device://Default_Audio_Device", "", ""); // Specify a file object in which to save encoded content. IWMEncFile File = encoder.File; string CurrentFileName = Guid.NewGuid().ToString(); File.LocalFileName = CurrentFileName; CurrentFileName = File.LocalFileName; // Choose a profile from the collection. IWMEncProfileCollection ProColl = encoder.ProfileCollection; IWMEncProfile Pro; for (int i = 0; i < ProColl.Count; i++) { Pro = ProColl.Item(i); if (Pro.Name == "Screen Video/Audio High (CBR)") { SrcGrp.set_Profile(Pro); break; } } encoder.Start();
George
Closed Thread
Results 1 to 2 of 2
Thread: how to improve video quality?
Thread
-
One topic is enough. http://forum.videohelp.com/topic368214.html . I have already moved it to the programming section also.
Similar Threads
-
Low quality video on high resolution screen, improve video quality?
By Nitrius in forum Software PlayingReplies: 4Last Post: 29th Dec 2008, 14:38 -
How to improve the quality of a video
By petarone in forum Video ConversionReplies: 2Last Post: 28th Aug 2006, 12:52 -
How Can I Improve Video Quality?
By heyjjjaded in forum CapturingReplies: 14Last Post: 15th Apr 2004, 01:58 -
Improve video quality
By The haltman in forum EditingReplies: 2Last Post: 20th May 2003, 14:36 -
Improve video quality
By omega_weapon in forum EditingReplies: 1Last Post: 31st Oct 2002, 05:53
Statistics
Newest guides
Latest tool updates
New media comments


