Add AudioTrackNamePassthru and SubtitleTrackNamePassthru preset key to preserve the existing track names, and AudioAutomaticNamingBehavior to disable or enable the audio track automatic names. Co-authored-by: sr55 <sr55.code@outlook.com>
23 lines
502 B
C#
23 lines
502 B
C#
using HandBrakeWPF.Properties;
|
|
|
|
namespace HandBrakeWPF.Model.Audio
|
|
{
|
|
using HandBrake.Interop.Attributes;
|
|
|
|
public enum AudioTrackNamingBehaviour
|
|
{
|
|
|
|
[DisplayName(typeof(Resources), "AudioTrackNaming_None")]
|
|
[ShortName("none")]
|
|
None,
|
|
|
|
[DisplayName(typeof(Resources), "AudioTrackNaming_Unnamed")]
|
|
[ShortName("unnamed")]
|
|
Unnamed,
|
|
|
|
[DisplayName(typeof(Resources), "AudioTrackNaming_All")]
|
|
[ShortName("All")]
|
|
All,
|
|
}
|
|
}
|