mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Adjust the order of transcoding fps and speed ratio
This item corresponds to `TranscodingInfo.Framerate`, so put speed ratio at the end. Signed-off-by: nyanmisaka <nst799610810@gmail.com>
This commit is contained in:
parent
0127a3c660
commit
00876950d1
1 changed files with 1 additions and 1 deletions
|
@ -202,7 +202,7 @@ function getDisplayTranscodeFps(session, player) {
|
|||
return `${transcodeFramerate} fps`;
|
||||
}
|
||||
|
||||
return `${(transcodeFramerate / originalFramerate).toFixed(2)}x (${transcodeFramerate} fps)`;
|
||||
return `${transcodeFramerate} fps (${(transcodeFramerate / originalFramerate).toFixed(2)}x)`;
|
||||
}
|
||||
|
||||
function getReadableSize(size) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue