VideoHelp.com Forum
Closed Thread
Results 1 to 2 of 2
Thread
  1. Member
    Join Date: Apr 2009
    Location: United States
    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,

    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();
    thanks in advance,
    George

  2. I'm a MEGA Super Moderator Baldrick's Avatar
    Join Date: Aug 2000
    Location: Sweden
    One topic is enough. http://forum.videohelp.com/topic368214.html . I have already moved it to the programming section also.




Similar Threads

  1. How Can I Improve my video quality
    By legend10 in forum Newbie / General discussions
    Replies: 36
    Last Post: 23rd Feb 2012, 14:01
  2. How would you improve the quality of this video?
    By choobies in forum Newbie / General discussions
    Replies: 0
    Last Post: 28th Nov 2011, 12:24
  3. Improve video quality [HELP]
    By v1rto in forum Newbie / General discussions
    Replies: 8
    Last Post: 13th Jul 2011, 08:46
  4. How to improve the quality of the video
    By kemo1000 in forum Video Streaming
    Replies: 2
    Last Post: 24th Apr 2011, 15:36
  5. Replies: 4
    Last Post: 29th Dec 2008, 13:38
Search   Contact us   About   Advertise   Forum   RSS Feeds   Statistics   Tools