First of all, I would like to express my sincere gratitude to the author for his hard work!!!
When using the mydict command to search for resource files, the returned files are incorrect
System environment
macOS 15.0.1
Operation steps
./mydict /Users/**/Library/Containers/com.test.**/Data/Library/Application\ Support/Dictionaries/oaldpe/oaldpe.1.mdd \\worded__gb_1.mp3
-
Return result
After converting the returned base64, it turns out to be: "word_perfect_1_gb_1.mp3"
-
How to verify
Write the base64 string to the hard disk using Python
import base64
data = "..."
mp3_bytes = base64.b64decode(data)
with open("output.mp3", "wb") as f:
f.write(mp3_bytes)
mdd file link: https://pan.baidu.com/s/17h8m3JbC0JHac-2zBDDC5Q?pwd=6ccg 提取码: 6ccg
First of all, I would like to express my sincere gratitude to the author for his hard work!!!
When using the mydict command to search for resource files, the returned files are incorrect
System environment
macOS 15.0.1
Operation steps
Return result
After converting the returned base64, it turns out to be: "word_perfect_1_gb_1.mp3"
How to verify
Write the base64 string to the hard disk using Python
mdd file link: https://pan.baidu.com/s/17h8m3JbC0JHac-2zBDDC5Q?pwd=6ccg 提取码: 6ccg