mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-11 03:14:02 +00:00
Ignore format for ISO files
This commit is contained in:
parent
6d0b2ed080
commit
ef9eba8bc9
2 changed files with 7 additions and 1 deletions
|
|
@ -313,6 +313,12 @@ namespace MediaBrowser.Controller.MediaEncoding
|
|||
return null;
|
||||
}
|
||||
|
||||
// ISO files don't have an ffmpeg format
|
||||
if (string.Equals(container, "iso", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
return container;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue