namespace MediaBrowser.Model.Configuration
{
///
/// An enum representing the options to seek the input audio stream when
/// transcoding HLS segments.
///
public enum HlsAudioSeekStrategy
{
///
/// If the video stream is transcoded and the audio stream is copied,
/// seek the video stream to the same keyframe as the audio stream. The
/// resulting timestamps in the output streams may be inaccurate.
///
DisableAccurateSeek = 0,
///
/// Prevent audio streams from being copied if the video stream is transcoded.
/// The resulting timestamps will be accurate, but additional audio transcoding
/// overhead will be incurred.
///
TranscodeAudio = 1,
}
}