You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have this filename /path/Tenkû no shiro Rapyuta/file.avi and I try to get the media info but instead I get an empty exception throw on line 76 file /Runner/MediaInfoCommandRunner.php.
Im using this code inside a CentOS 7 docker image over Windows, and this is a shared volumen from local path.
The text was updated successfully, but these errors were encountered:
sirio3mil
changed the title
Unicoded filename fail
Unicode filename fail
Feb 17, 2017
Here's the problem, Windows encodes its system text using the encoding Windows-1252 (A.K.A. CP1252).
Linux uses UTF-8 that accepts the full base of Unicode.
So, when the Linux VM, or a Linux style terminal tries to find that directory it tries to find it using a UTF-8 encoding. And the two bytes that encode the characters in UTF-8, seen as if they were Windows-1252 look like two characters.
I have this filename /path/Tenkû no shiro Rapyuta/file.avi and I try to get the media info but instead I get an empty exception throw on line 76 file /Runner/MediaInfoCommandRunner.php.
Im using this code inside a CentOS 7 docker image over Windows, and this is a shared volumen from local path.
The text was updated successfully, but these errors were encountered: