FranklinChen / convert-chinese-free

Convert between simplified and traditional Chinese using Google Translate API.
0 stars 0 forks source link

error #1

Closed macw closed 7 years ago

macw commented 7 years ago

I installed node and ran npm. Then executed this command: $ convert-chinese --source zh-TW --target zh-CN /Users/epc_528-3/clones/childes-data/Frogs/Chinese-Chang/5/*.cha then I got a series of 24 translate: Error I am attaching the input folder I used.

--Brian MacWhinney 5.zip

FranklinChen commented 7 years ago

@macw Strange. I took one of the examples, 061.cha, and by gradually deleting stuff from the end, got to a file that worked. I currently suspect some kind of file size limit, but will investigate further. The good file was 1634 bytes in size:

$ wc -c test.cha
    1634 test.cha

If it's just a file size problem, I can certainly work around it by translating chunks and reassembling.

FranklinChen commented 7 years ago

I found the problem: https://github.com/matheuss/google-translate-api/pull/13/files

I will create my own fork of the library to solve it.

FranklinChen commented 7 years ago

Fixed.