Gets or sets the time interval to trim from the start of the output.
Syntax
var trimStartTime = mediaTranscoder.trimStartTime;
mediaTranscoder.trimStartTime = trimStartTime;
Property value
Type: Number [JavaScript] | System.TimeSpan [.NET] | Windows::Foundation::TimeSpan [C++]
A TimeSpan structure that contains the time interval.
Examples
The following example sets this property to 1 second.
function doTranscode() { // Clear any existing effects. transcoder.clearEffects; // Add video effect. transcoder.addVideoEffect(videoEffect); // Add audio effect. transcoder.addAudioEffect(audioEffect); // Set start and stop times for trimming. transcoder.trimStartTime(1000); transcoder.trimStopTime(9000); // Always reencode the source transcoder.alwaysReencode = true; return transcoder.prepareFileTranscodeAsync(source, destination, profile); }
Requirements
|
Minimum supported client | Windows 8 |
|---|---|
|
Minimum supported server | Windows Server 2012 |
|
Namespace |
|
|
Metadata |
|
See also
Build date: 12/4/2012