View Issue Details

IDProjectCategoryView StatusLast Update
0000374eac3tobugpublic2022-08-19 12:42
ReporterGCRaistlin Assigned To 
PrioritynormalSeverityminorReproducibilityalways
Status newResolutionopen 
Summary0000374: Cyrillic chars are being displayed incorrectly
Descriptioneac3to output is ANSI while the console is OEM. It has no effect for Latin chars but Cyrillic chars are being displayed like a garbage. Screenshot 1 shows how it looks and screenshot 2 shows how it should look.
For other command-line tools with the similar output issue it is possible to use a batch wrapper (that's how I got the screenshot 2):
util.exe %*| iconv.exe -c -f cp1251 -t 866
But it's actually useless for eac3to 'cause nothing is displayed until the process finished.
TagsNo tags attached.
eac3to Version3.31

Activities

GCRaistlin

2016-01-02 17:08

reporter  

eac3to1.png (9,860 bytes)   
eac3to1.png (9,860 bytes)   

GCRaistlin

2016-01-02 17:08

reporter  

eac3to2.png (11,927 bytes)   
eac3to2.png (11,927 bytes)   

GCRaistlin

2018-12-09 21:51

reporter   ~0002446

Last edited: 2018-12-09 22:10

Workaround - eac3to.cmd:

@echo off
for /f "tokens=2 delims=:" %%A in ('chcp') do set CP=%%A
>nul chcp 1251
eac3to.exe %*
if errorlevel 1 pause
>nul chcp %CP%

Issue History

Date Modified Username Field Change
2016-01-02 17:08 GCRaistlin New Issue
2016-01-02 17:08 GCRaistlin File Added: eac3to1.png
2016-01-02 17:08 GCRaistlin File Added: eac3to2.png
2018-12-09 21:51 GCRaistlin Note Added: 0002446
2018-12-09 22:10 GCRaistlin Note Edited: 0002446