reamberPy Help

Scroll Speed

The dominant bpm is the bpm that is the most active in the map. See Dominant BPM for more information.

Return

Returns a pd.Series of name speed, with the offset as the index.

Usage

from reamber.algorithms.analysis import scroll_speed from reamber.osu import OsuMap import pandas as pd osu_map = OsuMap.read_file("path/to/map.osu") s: pd.Series = scroll_speed(osu_map) offset = s.index
from reamber.algorithms.analysis import scroll_speed from reamber.qua import QuaMap import pandas as pd qua_map = QuaMap.read_file("path/to/map.qua") s: pd.Series = scroll_speed(qua_map) offset = s.index
Last modified: 23 March 2024