Revert "Remove DvdLib (#9068)"

This reverts commit db1913b08f.
This commit is contained in:
Shadowghost
2023-02-03 18:49:23 +01:00
parent 6bf34f8e22
commit 519709bf10
26 changed files with 1258 additions and 1 deletions

View File

@@ -187,5 +187,13 @@ namespace MediaBrowser.Controller.MediaEncoding
/// <param name="path">The path.</param>
/// <param name="pathType">The type of path.</param>
void UpdateEncoderPath(string path, string pathType);
/// <summary>
/// Gets the primary playlist of .vob files.
/// </summary>
/// <param name="path">The to the .vob files.</param>
/// <param name="titleNumber">The title number to start with.</param>
/// <returns>A playlist.</returns>
IEnumerable<string> GetPrimaryPlaylistVobFiles(string path, uint? titleNumber);
}
}