Added speed slider. Minor improvements

This commit is contained in:
2026-07-07 05:19:50 +02:00
parent 02bbf5cc2e
commit 71ce142351
4 changed files with 45 additions and 27 deletions

View File

@@ -140,7 +140,7 @@ void Player::play_file(const QString& file_path,
args << "--vo=null" << "--no-video"
<< "--audio-pitch-correction=no"
<< "--audio-device=" + target
<< "--speed=" + QString::number(speed, 'f', 1)
<< "--speed=" + QString::number(speed, 'f', 2)
<< file_path;
auto process = std::make_unique<QProcess>();