Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VideoPlayer: advanced setting for max tempo #13325

Merged
merged 1 commit into from
Jan 7, 2018

Conversation

FernetMenta
Copy link
Contributor

Users demanding max tempo > 1.5 but this won't work in general on all platforms. So far platform devs did not override maxTempo.
The advanced setting gives users the chance to experiment.

bool CProcessInfo::IsTempoAllowed(float tempo)
{
if (tempo > 0.75 && tempo < 1.55)
if (tempo > MinTempoPlatform() &&
(tempo < MaxTempoPlatform() || tempo < g_advancedSettings.m_maxTempo))

This comment was marked as spam.

This comment was marked as spam.

@FernetMenta FernetMenta merged commit ba1dae5 into xbmc:master Jan 7, 2018
@FernetMenta FernetMenta deleted the tempo branch January 7, 2018 17:59
@Rechi Rechi added this to the L 18.0-alpha1 milestone Jan 7, 2018
@KarellenX
Copy link
Member

Wiki done... https://kodi.wiki/view/Advancedsettings.xml#video

<video>
<maxtempo>2.1</maxtempo>
</video>

freakynl added a commit to freakynl/xbmc that referenced this pull request Nov 2, 2020
Would like to be able to lower playback speed beyond 0.8. Currently hard-coded.

Found: xbmc#13325 which made maxTempo configurable. Don't get his comment on that it's supposed to only be capable of overriding  the max (in response to Rechi xbmc#13325 (comment))
freakynl pushed a commit to freakynl/xbmc that referenced this pull request Nov 2, 2020
Not sure why only maxTempo was added in that commit. FernetMenta did
react to Rechi that this was intended, I have no idea why unfortunately.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants