Skip to content

Start-BurnSubtitles

SYNOPSIS

SYNTAX

Start-BurnSubtitles [-video] <Object> [-transcode] [-srtfile] <Object> [[-crf] <Object>] [<CommonParameters>]

DESCRIPTION

Burn subtitles from an srt file.

EXAMPLES

EXAMPLE 1

If the transcode switch parameter is used then the file will be transcoded in addition to the subtitles being burned.

Start-BurnSubtitles -video "Action Jackson.mkv" -srtfile "Action Jackson.srt" -Transcode

PARAMETERS

-video

Specify Video Input

Type: System.Object
Parameter Sets: (All)
Aliases:

Required: True
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-transcode

Specify if the video should also be transcoded

Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False

-srtfile

Specify an srt file for use with the Srt parameter set

Type: System.Object
Parameter Sets: (All)
Aliases:

Required: True
Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-crf

Default is set to 21. Use this parameter to change it to another value.

Type: System.Object
Parameter Sets: (All)
Aliases:

Required: False
Position: 3
Default value: 21
Accept pipeline input: False
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

OUTPUTS

NOTES

Back to top