How to play a DVR buffer file (Visual Basic)

The following subroutine for Visual Basic shows how to use the ltmmPlayCtrl object to play the DVR buffer data file format (.LBL file).

 

Private Sub PlayDVRBufferFile 

   Dim LTMMPlay As LTMMPlayCtrl
   Set LTMMPlay = MainForm.LTMMPlay

   '' Set the source file on the player
   LTMMPlay.SourceFile = "C:\Temp\DVR\Capture.LBL"

End Sub