WMEncoder.Pause

Windows Media Encoder SDK banner art

The Pause method pauses the encoding process.

Syntax

WMEncoder.Pause

Parameters

This method takes no parameters.

Return Values

This method does not return a value.

Remarks

You can only pause the encoding process when your sources are from devices and your output is to a file.

Example Code

' Create a WMEncoder object.
  Dim Encoder As WMEncoder
  Set Encoder = New WMEncoder

' Configure the sources, output, and profile.
' The source must be from a device and the output must be to a file.

' Start encoding.
  Encoder.Start

' Pause encoding.
  Encoder.Pause

Requirements

Reference: Windows Media Encoder

Library: wmenc.exe

See Also