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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user