Navigation
API > API/Plugins > API/Plugins/MovieRenderPipelineMP4Encoder
A node which can output H264 mp4 files.
| Name | UMovieGraphMP4EncoderNode |
| Type | class |
| Header File | /Engine/Plugins/MovieScene/MovieRenderPipeline/Source/MovieRenderPipelineMP4Encoder/Public/Graph/MovieGraphMP4EncoderNode.h |
| Include Path | #include "Graph/MovieGraphMP4EncoderNode.h" |
Syntax
UCLASS (MinimalAPI, BlueprintType)
class UMovieGraphMP4EncoderNode :
public UMovieGraphVideoOutputNode ,
public IMovieGraphEvaluationNodeInjector
Inheritance Hierarchy
- UObjectBase → UObjectBaseUtility → UObject → UMovieGraphNode → UMovieGraphSettingNode → UMovieGraphFileOutputNode → UMovieGraphVideoOutputNode → UMovieGraphMP4EncoderNode
Implements Interfaces
Constructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
UMovieGraphMP4EncoderNode() |
Graph/MovieGraphMP4EncoderNode.h |
Structs
| Name | Remarks |
|---|---|
| FMP4CodecWriter |
Variables
Public
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| AverageBitrateInMbps | float | What is the average bitrate the encoder should target per second? Value is in Megabits per Second, so a value of 8 will become 8192Kbps (kilobits per second). | Graph/MovieGraphMP4EncoderNode.h |
|
| bCompositeOntoFinalImage | bool | If true, the burn-in that's generated will be composited onto this output. | Graph/MovieGraphMP4EncoderNode.h |
|
| bEnableBurnIn | bool | If true, this output node will also generate a burn-in. | Graph/MovieGraphMP4EncoderNode.h |
|
| bIncludeAudio | bool | If true, audio will be included in the video file. | Graph/MovieGraphMP4EncoderNode.h |
|
| bOverride_AverageBitrateInMbps | uint8 | Graph/MovieGraphMP4EncoderNode.h |
|
|
| bOverride_bCompositeOntoFinalImage | uint8 | Graph/MovieGraphMP4EncoderNode.h |
|
|
| bOverride_bEnableBurnIn | uint8 | Graph/MovieGraphMP4EncoderNode.h |
|
|
| bOverride_bIncludeAudio | uint8 | Graph/MovieGraphMP4EncoderNode.h |
|
|
| bOverride_BurnInClass | uint8 | Graph/MovieGraphMP4EncoderNode.h |
|
|
| bOverride_BurnInFileNameFormat | uint8 | Graph/MovieGraphMP4EncoderNode.h |
|
|
| bOverride_ConstantRateFactor | uint8 | Graph/MovieGraphMP4EncoderNode.h |
|
|
| bOverride_EncodingLevel | uint8 | Graph/MovieGraphMP4EncoderNode.h |
|
|
| bOverride_EncodingProfile | uint8 | Graph/MovieGraphMP4EncoderNode.h |
|
|
| bOverride_EncodingRateControl | uint8 | Graph/MovieGraphMP4EncoderNode.h |
|
|
| bOverride_MaxBitrateInMbps | uint8 | Graph/MovieGraphMP4EncoderNode.h |
|
|
| bOverride_OCIOConfiguration | uint8 | Graph/MovieGraphMP4EncoderNode.h |
|
|
| bOverride_OCIOContext | uint8 | Graph/MovieGraphMP4EncoderNode.h |
|
|
| BurnInClass | FSoftClassPath | The widget that the burn-in should use. | Graph/MovieGraphMP4EncoderNode.h |
|
| BurnInFileNameFormat | FString | The file name format used for writing out the burn-in video (if not composited). | Graph/MovieGraphMP4EncoderNode.h |
|
| ConstantRateFactor | int32 | What is the Constant Rate Factor (CRF) when targeting a specific quality. | Graph/MovieGraphMP4EncoderNode.h |
|
| EncodingLevel | EMoviePipelineMP4EncodeLevel | A higher encode level generally results in a better quality video for the same bitrate, but may not be supported for playback on old devices. | Graph/MovieGraphMP4EncoderNode.h |
|
| EncodingProfile | EMoviePipelineMP4EncodeProfile | A higher profile generally results in a better quality video for the same bitrate, but may not be supported for playback on old devices. | Graph/MovieGraphMP4EncoderNode.h |
|
| EncodingRateControl | EMoviePipelineMP4EncodeRateControlMode | Specifies the bitrate control method used by the encoder. | Graph/MovieGraphMP4EncoderNode.h |
|
| MaxBitrateInMbps | float | When using VariableBitRate_Constrained, what is the maximum bitrate that the encoder can briefly use for more complex scenes, while still trying to maintain the average set in AverageBitrateInMbps. | Graph/MovieGraphMP4EncoderNode.h |
|
| OCIOConfiguration | FOpenColorIODisplayConfiguration | OCIO configuration/transform settings. | Graph/MovieGraphMP4EncoderNode.h |
|
| OCIOContext | TMap< FString, FString > | OCIO context of key-value string pairs, typically used to apply shot-specific looks (such as a CDL color correction, or a 1D grade LUT). | Graph/MovieGraphMP4EncoderNode.h |
|
Functions
Public
Overridden from UMovieGraphNode
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual FSlateIcon GetIconAndTint
(
FLinearColor& OutColor |
Graph/MovieGraphMP4EncoderNode.h | ||
virtual FText GetKeywords() |
Graph/MovieGraphMP4EncoderNode.h | ||
virtual FText GetMenuCategory() |
Graph/MovieGraphMP4EncoderNode.h | ||
virtual FText GetNodeTitle
(
const bool bGetDescriptive |
Graph/MovieGraphMP4EncoderNode.h | ||
virtual FLinearColor GetNodeTitleColor() |
Graph/MovieGraphMP4EncoderNode.h |
Protected
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual void BeginFinalize_EncodeThread
(
MovieRenderGraph::IVideoCodecWriter* InWriter |
Graph/MovieGraphMP4EncoderNode.h | ||
virtual void Finalize_EncodeThread
(
MovieRenderGraph::IVideoCodecWriter* InWriter |
Graph/MovieGraphMP4EncoderNode.h | ||
virtual const TCHAR * GetFilenameExtension() |
Graph/MovieGraphMP4EncoderNode.h | ||
virtual void WriteFrame_EncodeThread
(
MovieRenderGraph::IVideoCodecWriter* InWriter, |
Graph/MovieGraphMP4EncoderNode.h |
Overridden from UMovieGraphVideoOutputNode
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual bool Initialize_EncodeThread
(
MovieRenderGraph::IVideoCodecWriter* InWriter |
Graph/MovieGraphMP4EncoderNode.h | ||
virtual TUniquePtr< MovieRenderGraph::IVideoCodecWriter > Initialize_GameThread
(
const FMovieGraphVideoNodeInitializationContext& InInitializationContext |
Graph/MovieGraphMP4EncoderNode.h | ||
virtual bool IsAudioSupported() |
Graph/MovieGraphMP4EncoderNode.h |
Overridden from UMovieGraphSettingNode
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual void UpdateTelemetry
(
FMoviePipelineShotRenderTelemetry* InTelemetry |
Graph/MovieGraphMP4EncoderNode.h |
Overridden from IMovieGraphEvaluationNodeInjector
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual void InjectNodesPostEvaluation
(
const FName& InBranchName, |
Graph/MovieGraphMP4EncoderNode.h |