MkvPropEditWrapperAddProperty Method

Adds a property in the source Matroska video file.

Definition

Namespace: DevCase.ThirdParty.MKVToolNix
Assembly: DevCase.net48.ThirdParty.MKVToolNix (in DevCase.net48.ThirdParty.MKVToolNix.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public bool AddProperty(
	string filepath,
	string selector,
	string name,
	string value
)

Parameters

filepath  String
The source Matroska video filepath.
selector  String
The property selector. It can be one of these:

Segment info selector:

· 'info'

Track header selectors:

· 'track:n' (selects a track with the index number specified in 'n')

· 'track:an' (selects a audio track with the index number specified in 'n')

· 'track:vn' (selects a video track with the index number specified in 'n')

· 'track:uid' (selects a track with the UID identifier specified in 'uid')

Tag selectors:

· 'all' (selects all tags)

· 'global' (selects all global tags)

name  String
The property name to add.
value  String
The property value.

Return Value

Boolean
if successful, otherwise, .

Remarks

Note: Some functionalities of this assembly may require to install one or all of the listed applications:

MKVToolNix (mkvmerge.exe, mkvpropedit.exe)

Example

This is a code example.
C#
No code example is currently available or this language may not be supported.

See Also