Minor fixes

This commit is contained in:
niksedk 2023-11-10 15:08:48 +01:00
parent 7f148987f8
commit 06c33b1c59
2 changed files with 3 additions and 2 deletions

View File

@ -28,7 +28,7 @@
* Update German translation - thx Netspark
* Update Russian translation - thx elfriob
* Update Spanish translations - thx jmaraujouy
* Update Dutch translaton - thx Flitskikker
* Update Dutch translation - thx Flitskikker
* Save settings from selected lines unbreak/break - thx David
* Add simple page up/down for combo-boxes
* Add access keys for message box buttons - thx Christophe

View File

@ -1109,7 +1109,8 @@ namespace Nikse.SubtitleEdit.Forms.AudioToText
Configuration.Settings.Tools.WhisperChoice != WhisperChoice.ConstMe)
{
process.StartInfo.EnvironmentVariables["PYTHONIOENCODING"] = "utf-8";
process.StartInfo.EnvironmentVariables["PYTHONLEGACYWINDOWSSTDIO"] = "utf-8";
process.StartInfo.EnvironmentVariables["PYTHONUTF8"] = "1";
//process.StartInfo.EnvironmentVariables["PYTHONLEGACYWINDOWSSTDIO"] = "utf-8";
}
if (dataReceivedHandler != null)