mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Merge pull request #2049 from softworkz/ContentLength
Fix incorrect calculation of content length
This commit is contained in:
commit
5d919a12ef
@ -383,7 +383,7 @@ namespace MediaBrowser.Api.Playback.Progressive
|
|||||||
|
|
||||||
if (totalBitrate > 0 && state.RunTimeTicks.HasValue)
|
if (totalBitrate > 0 && state.RunTimeTicks.HasValue)
|
||||||
{
|
{
|
||||||
return Convert.ToInt64(totalBitrate * TimeSpan.FromTicks(state.RunTimeTicks.Value).TotalSeconds);
|
return Convert.ToInt64(totalBitrate * TimeSpan.FromTicks(state.RunTimeTicks.Value).TotalSeconds / 8);
|
||||||
}
|
}
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user