namespace MediaBrowser.Model.Configuration
{
///
/// An enum representing the options to seek the input audio stream when
/// transcoding HLS segments.
///
public enum HlsAudioSeekStrategy
{
///
/// When video is transcoded and audio is copied, use a bitstream filter
/// to drop copied audio packets before the seek point, aligning them
/// with the accurately-seeked video. Timestamps are accurate and audio
/// remains stream-copied (no re-encoding overhead).
///
TrimCopiedAudio = 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,
}
}