Adblock breaks this site

screen recorder

Discussion in 'Programming General' started by Reximus, Dec 5, 2007.

  1. Reximus

    Reximus Guest

    Referrals:
    0
    screen recorder

    saw a post on this on here somewhere (couldnt be bothered finding it again)
    but it was an example of gif and lots of problems so 2 minutes googling and i found this:

    >Click Here<

    its basic but i can vouch it works
    only thing you really need to change is :

    Code:
    ProColl = Encoder.ProfileCollection
    lLength = ProColl.Count
    For i = 0 To lLength - 1
        Pro = ProColl.Item(i)
        If Pro.Name = "Windows Media Video 8 for Local Area Network (384 Kbps)" Then
            SrcGrp.Profile = Pro
            Exit For
        End If
    Next
    
    change this code to this :


    Code:
    ProColl = Encoder.ProfileCollection
    lLength = ProColl.Count
    For i = 0 To lLength - 1
        Pro = ProColl.Item(i)
        If Pro.Name = "Screen Video/Audio High (CBR)" Then
            SrcGrp.Profile = Pro
            Exit For
        End If
    Next
    

    writes file to an AVI which will run in windows media player
    also records audio
    only problem im currently having (havent really looked into it yet)
    is getting it to record a certain region of a form (Runescape for example)
     
< [Source + DLL] Hiscores Usercontrol | needing help >


 
 
Adblock breaks this site