文字转语音(支持英语、韩语)

  • Google Text to Speech API
    • 基本使用方法
    • 英文转语音
    • 韩文转语音
  • 读取csv文件,将韩文/英文内容转语音

Google Text to Speech API

基本使用方法

gTTS (Google Text-to-Speech), a Python library and CLI tool to interface with Google Translate’s text-to-speech API.

pip install gTTS

英文转语音

from gtts import gTTS
text ="Hello World."tts = gTTS(text=text, lang='en')
tts.save("hello_en.mp3")

韩文转语音

from gtts import gTTS
text ="안녕하세요."tts = gTTS(text=text, lang='ko')
tts.save("hello_ko.mp3")

读取csv文件,将韩文/英文内容转语音

INDEX,KR,EN                                       # 该csv 文件有3列,分别是编号,韩语,英语。
0,,
1,"안녕하세요.",Hi.
2,"안녕하십니까.",Hello.
# pip install gTTS                                # 安装gTTS包
# pip install pandas
from gtts import gTTS
import pandas as pd# 读取csv
csvFile = pd.read_csv(r"E:\Pycharm\tts\script\Chap1-1.csv")for i in range(len(csvFile)):index_num = csvFile['INDEX'][i]kr_info = csvFile['KR'][i]en_info = csvFile['EN'][i]if str(kr_info) != "nan":                     # 如果内容不为空tts = gTTS(text=kr_info, lang='ko')# tts = gTTS(text=en_info, lang='en')     # 英文 tts.save(str(index_num) + '.mp3')print("done: ", index_num)
#mermaid-svg-fEKCzUEiQkU2xLpe .label{font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family);fill:#333;color:#333}#mermaid-svg-fEKCzUEiQkU2xLpe .label text{fill:#333}#mermaid-svg-fEKCzUEiQkU2xLpe .node rect,#mermaid-svg-fEKCzUEiQkU2xLpe .node circle,#mermaid-svg-fEKCzUEiQkU2xLpe .node ellipse,#mermaid-svg-fEKCzUEiQkU2xLpe .node polygon,#mermaid-svg-fEKCzUEiQkU2xLpe .node path{fill:#ECECFF;stroke:#9370db;stroke-width:1px}#mermaid-svg-fEKCzUEiQkU2xLpe .node .label{text-align:center;fill:#333}#mermaid-svg-fEKCzUEiQkU2xLpe .node.clickable{cursor:pointer}#mermaid-svg-fEKCzUEiQkU2xLpe .arrowheadPath{fill:#333}#mermaid-svg-fEKCzUEiQkU2xLpe .edgePath .path{stroke:#333;stroke-width:1.5px}#mermaid-svg-fEKCzUEiQkU2xLpe .flowchart-link{stroke:#333;fill:none}#mermaid-svg-fEKCzUEiQkU2xLpe .edgeLabel{background-color:#e8e8e8;text-align:center}#mermaid-svg-fEKCzUEiQkU2xLpe .edgeLabel rect{opacity:0.9}#mermaid-svg-fEKCzUEiQkU2xLpe .edgeLabel span{color:#333}#mermaid-svg-fEKCzUEiQkU2xLpe .cluster rect{fill:#ffffde;stroke:#aa3;stroke-width:1px}#mermaid-svg-fEKCzUEiQkU2xLpe .cluster text{fill:#333}#mermaid-svg-fEKCzUEiQkU2xLpe div.mermaidTooltip{position:absolute;text-align:center;max-width:200px;padding:2px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family);font-size:12px;background:#ffffde;border:1px solid #aa3;border-radius:2px;pointer-events:none;z-index:100}#mermaid-svg-fEKCzUEiQkU2xLpe .actor{stroke:#ccf;fill:#ECECFF}#mermaid-svg-fEKCzUEiQkU2xLpe text.actor>tspan{fill:#000;stroke:none}#mermaid-svg-fEKCzUEiQkU2xLpe .actor-line{stroke:grey}#mermaid-svg-fEKCzUEiQkU2xLpe .messageLine0{stroke-width:1.5;stroke-dasharray:none;stroke:#333}#mermaid-svg-fEKCzUEiQkU2xLpe .messageLine1{stroke-width:1.5;stroke-dasharray:2, 2;stroke:#333}#mermaid-svg-fEKCzUEiQkU2xLpe #arrowhead path{fill:#333;stroke:#333}#mermaid-svg-fEKCzUEiQkU2xLpe .sequenceNumber{fill:#fff}#mermaid-svg-fEKCzUEiQkU2xLpe #sequencenumber{fill:#333}#mermaid-svg-fEKCzUEiQkU2xLpe #crosshead path{fill:#333;stroke:#333}#mermaid-svg-fEKCzUEiQkU2xLpe .messageText{fill:#333;stroke:#333}#mermaid-svg-fEKCzUEiQkU2xLpe .labelBox{stroke:#ccf;fill:#ECECFF}#mermaid-svg-fEKCzUEiQkU2xLpe .labelText,#mermaid-svg-fEKCzUEiQkU2xLpe .labelText>tspan{fill:#000;stroke:none}#mermaid-svg-fEKCzUEiQkU2xLpe .loopText,#mermaid-svg-fEKCzUEiQkU2xLpe .loopText>tspan{fill:#000;stroke:none}#mermaid-svg-fEKCzUEiQkU2xLpe .loopLine{stroke-width:2px;stroke-dasharray:2, 2;stroke:#ccf;fill:#ccf}#mermaid-svg-fEKCzUEiQkU2xLpe .note{stroke:#aa3;fill:#fff5ad}#mermaid-svg-fEKCzUEiQkU2xLpe .noteText,#mermaid-svg-fEKCzUEiQkU2xLpe .noteText>tspan{fill:#000;stroke:none}#mermaid-svg-fEKCzUEiQkU2xLpe .activation0{fill:#f4f4f4;stroke:#666}#mermaid-svg-fEKCzUEiQkU2xLpe .activation1{fill:#f4f4f4;stroke:#666}#mermaid-svg-fEKCzUEiQkU2xLpe .activation2{fill:#f4f4f4;stroke:#666}#mermaid-svg-fEKCzUEiQkU2xLpe .mermaid-main-font{font-family:"trebuchet ms", verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-fEKCzUEiQkU2xLpe .section{stroke:none;opacity:0.2}#mermaid-svg-fEKCzUEiQkU2xLpe .section0{fill:rgba(102,102,255,0.49)}#mermaid-svg-fEKCzUEiQkU2xLpe .section2{fill:#fff400}#mermaid-svg-fEKCzUEiQkU2xLpe .section1,#mermaid-svg-fEKCzUEiQkU2xLpe .section3{fill:#fff;opacity:0.2}#mermaid-svg-fEKCzUEiQkU2xLpe .sectionTitle0{fill:#333}#mermaid-svg-fEKCzUEiQkU2xLpe .sectionTitle1{fill:#333}#mermaid-svg-fEKCzUEiQkU2xLpe .sectionTitle2{fill:#333}#mermaid-svg-fEKCzUEiQkU2xLpe .sectionTitle3{fill:#333}#mermaid-svg-fEKCzUEiQkU2xLpe .sectionTitle{text-anchor:start;font-size:11px;text-height:14px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-fEKCzUEiQkU2xLpe .grid .tick{stroke:#d3d3d3;opacity:0.8;shape-rendering:crispEdges}#mermaid-svg-fEKCzUEiQkU2xLpe .grid .tick text{font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-fEKCzUEiQkU2xLpe .grid path{stroke-width:0}#mermaid-svg-fEKCzUEiQkU2xLpe .today{fill:none;stroke:red;stroke-width:2px}#mermaid-svg-fEKCzUEiQkU2xLpe .task{stroke-width:2}#mermaid-svg-fEKCzUEiQkU2xLpe .taskText{text-anchor:middle;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-fEKCzUEiQkU2xLpe .taskText:not([font-size]){font-size:11px}#mermaid-svg-fEKCzUEiQkU2xLpe .taskTextOutsideRight{fill:#000;text-anchor:start;font-size:11px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-fEKCzUEiQkU2xLpe .taskTextOutsideLeft{fill:#000;text-anchor:end;font-size:11px}#mermaid-svg-fEKCzUEiQkU2xLpe .task.clickable{cursor:pointer}#mermaid-svg-fEKCzUEiQkU2xLpe .taskText.clickable{cursor:pointer;fill:#003163 !important;font-weight:bold}#mermaid-svg-fEKCzUEiQkU2xLpe .taskTextOutsideLeft.clickable{cursor:pointer;fill:#003163 !important;font-weight:bold}#mermaid-svg-fEKCzUEiQkU2xLpe .taskTextOutsideRight.clickable{cursor:pointer;fill:#003163 !important;font-weight:bold}#mermaid-svg-fEKCzUEiQkU2xLpe .taskText0,#mermaid-svg-fEKCzUEiQkU2xLpe .taskText1,#mermaid-svg-fEKCzUEiQkU2xLpe .taskText2,#mermaid-svg-fEKCzUEiQkU2xLpe .taskText3{fill:#fff}#mermaid-svg-fEKCzUEiQkU2xLpe .task0,#mermaid-svg-fEKCzUEiQkU2xLpe .task1,#mermaid-svg-fEKCzUEiQkU2xLpe .task2,#mermaid-svg-fEKCzUEiQkU2xLpe .task3{fill:#8a90dd;stroke:#534fbc}#mermaid-svg-fEKCzUEiQkU2xLpe .taskTextOutside0,#mermaid-svg-fEKCzUEiQkU2xLpe .taskTextOutside2{fill:#000}#mermaid-svg-fEKCzUEiQkU2xLpe .taskTextOutside1,#mermaid-svg-fEKCzUEiQkU2xLpe .taskTextOutside3{fill:#000}#mermaid-svg-fEKCzUEiQkU2xLpe .active0,#mermaid-svg-fEKCzUEiQkU2xLpe .active1,#mermaid-svg-fEKCzUEiQkU2xLpe .active2,#mermaid-svg-fEKCzUEiQkU2xLpe .active3{fill:#bfc7ff;stroke:#534fbc}#mermaid-svg-fEKCzUEiQkU2xLpe .activeText0,#mermaid-svg-fEKCzUEiQkU2xLpe .activeText1,#mermaid-svg-fEKCzUEiQkU2xLpe .activeText2,#mermaid-svg-fEKCzUEiQkU2xLpe .activeText3{fill:#000 !important}#mermaid-svg-fEKCzUEiQkU2xLpe .done0,#mermaid-svg-fEKCzUEiQkU2xLpe .done1,#mermaid-svg-fEKCzUEiQkU2xLpe .done2,#mermaid-svg-fEKCzUEiQkU2xLpe .done3{stroke:grey;fill:#d3d3d3;stroke-width:2}#mermaid-svg-fEKCzUEiQkU2xLpe .doneText0,#mermaid-svg-fEKCzUEiQkU2xLpe .doneText1,#mermaid-svg-fEKCzUEiQkU2xLpe .doneText2,#mermaid-svg-fEKCzUEiQkU2xLpe .doneText3{fill:#000 !important}#mermaid-svg-fEKCzUEiQkU2xLpe .crit0,#mermaid-svg-fEKCzUEiQkU2xLpe .crit1,#mermaid-svg-fEKCzUEiQkU2xLpe .crit2,#mermaid-svg-fEKCzUEiQkU2xLpe .crit3{stroke:#f88;fill:red;stroke-width:2}#mermaid-svg-fEKCzUEiQkU2xLpe .activeCrit0,#mermaid-svg-fEKCzUEiQkU2xLpe .activeCrit1,#mermaid-svg-fEKCzUEiQkU2xLpe .activeCrit2,#mermaid-svg-fEKCzUEiQkU2xLpe .activeCrit3{stroke:#f88;fill:#bfc7ff;stroke-width:2}#mermaid-svg-fEKCzUEiQkU2xLpe .doneCrit0,#mermaid-svg-fEKCzUEiQkU2xLpe .doneCrit1,#mermaid-svg-fEKCzUEiQkU2xLpe .doneCrit2,#mermaid-svg-fEKCzUEiQkU2xLpe .doneCrit3{stroke:#f88;fill:#d3d3d3;stroke-width:2;cursor:pointer;shape-rendering:crispEdges}#mermaid-svg-fEKCzUEiQkU2xLpe .milestone{transform:rotate(45deg) scale(0.8, 0.8)}#mermaid-svg-fEKCzUEiQkU2xLpe .milestoneText{font-style:italic}#mermaid-svg-fEKCzUEiQkU2xLpe .doneCritText0,#mermaid-svg-fEKCzUEiQkU2xLpe .doneCritText1,#mermaid-svg-fEKCzUEiQkU2xLpe .doneCritText2,#mermaid-svg-fEKCzUEiQkU2xLpe .doneCritText3{fill:#000 !important}#mermaid-svg-fEKCzUEiQkU2xLpe .activeCritText0,#mermaid-svg-fEKCzUEiQkU2xLpe .activeCritText1,#mermaid-svg-fEKCzUEiQkU2xLpe .activeCritText2,#mermaid-svg-fEKCzUEiQkU2xLpe .activeCritText3{fill:#000 !important}#mermaid-svg-fEKCzUEiQkU2xLpe .titleText{text-anchor:middle;font-size:18px;fill:#000;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-fEKCzUEiQkU2xLpe g.classGroup text{fill:#9370db;stroke:none;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family);font-size:10px}#mermaid-svg-fEKCzUEiQkU2xLpe g.classGroup text .title{font-weight:bolder}#mermaid-svg-fEKCzUEiQkU2xLpe g.clickable{cursor:pointer}#mermaid-svg-fEKCzUEiQkU2xLpe g.classGroup rect{fill:#ECECFF;stroke:#9370db}#mermaid-svg-fEKCzUEiQkU2xLpe g.classGroup line{stroke:#9370db;stroke-width:1}#mermaid-svg-fEKCzUEiQkU2xLpe .classLabel .box{stroke:none;stroke-width:0;fill:#ECECFF;opacity:0.5}#mermaid-svg-fEKCzUEiQkU2xLpe .classLabel .label{fill:#9370db;font-size:10px}#mermaid-svg-fEKCzUEiQkU2xLpe .relation{stroke:#9370db;stroke-width:1;fill:none}#mermaid-svg-fEKCzUEiQkU2xLpe .dashed-line{stroke-dasharray:3}#mermaid-svg-fEKCzUEiQkU2xLpe #compositionStart{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-fEKCzUEiQkU2xLpe #compositionEnd{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-fEKCzUEiQkU2xLpe #aggregationStart{fill:#ECECFF;stroke:#9370db;stroke-width:1}#mermaid-svg-fEKCzUEiQkU2xLpe #aggregationEnd{fill:#ECECFF;stroke:#9370db;stroke-width:1}#mermaid-svg-fEKCzUEiQkU2xLpe #dependencyStart{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-fEKCzUEiQkU2xLpe #dependencyEnd{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-fEKCzUEiQkU2xLpe #extensionStart{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-fEKCzUEiQkU2xLpe #extensionEnd{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-fEKCzUEiQkU2xLpe .commit-id,#mermaid-svg-fEKCzUEiQkU2xLpe .commit-msg,#mermaid-svg-fEKCzUEiQkU2xLpe .branch-label{fill:lightgrey;color:lightgrey;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-fEKCzUEiQkU2xLpe .pieTitleText{text-anchor:middle;font-size:25px;fill:#000;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-fEKCzUEiQkU2xLpe .slice{font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-fEKCzUEiQkU2xLpe g.stateGroup text{fill:#9370db;stroke:none;font-size:10px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-fEKCzUEiQkU2xLpe g.stateGroup text{fill:#9370db;fill:#333;stroke:none;font-size:10px}#mermaid-svg-fEKCzUEiQkU2xLpe g.statediagram-cluster .cluster-label text{fill:#333}#mermaid-svg-fEKCzUEiQkU2xLpe g.stateGroup .state-title{font-weight:bolder;fill:#000}#mermaid-svg-fEKCzUEiQkU2xLpe g.stateGroup rect{fill:#ECECFF;stroke:#9370db}#mermaid-svg-fEKCzUEiQkU2xLpe g.stateGroup line{stroke:#9370db;stroke-width:1}#mermaid-svg-fEKCzUEiQkU2xLpe .transition{stroke:#9370db;stroke-width:1;fill:none}#mermaid-svg-fEKCzUEiQkU2xLpe .stateGroup .composit{fill:white;border-bottom:1px}#mermaid-svg-fEKCzUEiQkU2xLpe .stateGroup .alt-composit{fill:#e0e0e0;border-bottom:1px}#mermaid-svg-fEKCzUEiQkU2xLpe .state-note{stroke:#aa3;fill:#fff5ad}#mermaid-svg-fEKCzUEiQkU2xLpe .state-note text{fill:black;stroke:none;font-size:10px}#mermaid-svg-fEKCzUEiQkU2xLpe .stateLabel .box{stroke:none;stroke-width:0;fill:#ECECFF;opacity:0.7}#mermaid-svg-fEKCzUEiQkU2xLpe .edgeLabel text{fill:#333}#mermaid-svg-fEKCzUEiQkU2xLpe .stateLabel text{fill:#000;font-size:10px;font-weight:bold;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-fEKCzUEiQkU2xLpe .node circle.state-start{fill:black;stroke:black}#mermaid-svg-fEKCzUEiQkU2xLpe .node circle.state-end{fill:black;stroke:white;stroke-width:1.5}#mermaid-svg-fEKCzUEiQkU2xLpe #statediagram-barbEnd{fill:#9370db}#mermaid-svg-fEKCzUEiQkU2xLpe .statediagram-cluster rect{fill:#ECECFF;stroke:#9370db;stroke-width:1px}#mermaid-svg-fEKCzUEiQkU2xLpe .statediagram-cluster rect.outer{rx:5px;ry:5px}#mermaid-svg-fEKCzUEiQkU2xLpe .statediagram-state .divider{stroke:#9370db}#mermaid-svg-fEKCzUEiQkU2xLpe .statediagram-state .title-state{rx:5px;ry:5px}#mermaid-svg-fEKCzUEiQkU2xLpe .statediagram-cluster.statediagram-cluster .inner{fill:white}#mermaid-svg-fEKCzUEiQkU2xLpe .statediagram-cluster.statediagram-cluster-alt .inner{fill:#e0e0e0}#mermaid-svg-fEKCzUEiQkU2xLpe .statediagram-cluster .inner{rx:0;ry:0}#mermaid-svg-fEKCzUEiQkU2xLpe .statediagram-state rect.basic{rx:5px;ry:5px}#mermaid-svg-fEKCzUEiQkU2xLpe .statediagram-state rect.divider{stroke-dasharray:10,10;fill:#efefef}#mermaid-svg-fEKCzUEiQkU2xLpe .note-edge{stroke-dasharray:5}#mermaid-svg-fEKCzUEiQkU2xLpe .statediagram-note rect{fill:#fff5ad;stroke:#aa3;stroke-width:1px;rx:0;ry:0}:root{--mermaid-font-family: '"trebuchet ms", verdana, arial';--mermaid-font-family: "Comic Sans MS", "Comic Sans", cursive}#mermaid-svg-fEKCzUEiQkU2xLpe .error-icon{fill:#522}#mermaid-svg-fEKCzUEiQkU2xLpe .error-text{fill:#522;stroke:#522}#mermaid-svg-fEKCzUEiQkU2xLpe .edge-thickness-normal{stroke-width:2px}#mermaid-svg-fEKCzUEiQkU2xLpe .edge-thickness-thick{stroke-width:3.5px}#mermaid-svg-fEKCzUEiQkU2xLpe .edge-pattern-solid{stroke-dasharray:0}#mermaid-svg-fEKCzUEiQkU2xLpe .edge-pattern-dashed{stroke-dasharray:3}#mermaid-svg-fEKCzUEiQkU2xLpe .edge-pattern-dotted{stroke-dasharray:2}#mermaid-svg-fEKCzUEiQkU2xLpe .marker{fill:#333}#mermaid-svg-fEKCzUEiQkU2xLpe .marker.cross{stroke:#333}:root { --mermaid-font-family: "trebuchet ms", verdana, arial;} #mermaid-svg-fEKCzUEiQkU2xLpe {color: rgba(0, 0, 0, 0.75);font: ;}

文字转语音(支持英语、韩语)相关推荐

  1. 语音支持英语_语音识别英语_英语语音评分 - 云+社区 - 腾讯云

    广告关闭 2017年12月,云+社区对外发布,从最开始的技术博客到现在拥有多个社区产品.未来,我们一起乘风破浪,创造无限可能. 实时语音识别支持词时间戳功能 新功能发布 实时语音识别支持 格式 新功能 ...

  2. java文字转语音支持ubuntu系统_9个(实时)语音转文字APP分享(推荐收藏)

    " 做会议记录.看无字幕网课再也不用担心,解放双手,提高效率." 随着语音转文字技术的发展,我们记录会议.上课内容等有了更好的方式. 实时语音转文字实现边听边看,并且还可回看转译记 ...

  3. java文字转语音支持ubuntu系统_微信内测语音进度条,60秒语音终于有救了?腾讯:并没有...

    盼望着,盼望着,微信终于又要推出新功能了. 今天上午,根据Tech星球报道,在最新内测的版本中,微信终于加入了大家翘首以盼的「语音进度条」功能. 有了这个功能,用户点击语音消息后,会出现进度条和一个类 ...

  4. 零基础学习韩语的五大学习方式助你…

    韩语五大学习方法迅速入门 随着中韩交流的进一步深入,国内的韩国语学习者大增.那么,对于初学者来说,如何迅速入门,并且掌握韩国语呢?在这里,向大家提供几点建议以供参考. 一.掌握语音 扩大词汇韩语是一种 ...

  5. 轻松实现文字转语音:推荐5款免费工具

    随着人工智能技术的不断发展和普及,文字转语音技术也越来越成熟和普及,越来越多的人开始使用文字转语音工具来简化日常工作和生活.本文将为您推荐5款免费的文字转语音工具,让您轻松实现文字转语音. 1.Goo ...

  6. 微软文字转语音,教你几个方法免费使用!

    微软文字转语音指的是通过微软的技术将文字转化为语音.这样可以方便用户将文字内容转化为语音,并进行播放,从而更好地了解文字内容.微软提供了多种文字转语音的技术,包括自然语言处理和人工智能技术,可以实现准 ...

  7. Java文字转语音,实测有效

    Java文字转语音 在此之前有个提示,是使用该代码的前提条件 添加链接描述 如上图的dll文件需要优先放置到你电脑JDK安装目录的bin文件夹下,该jar包和dll文件点击上面链接下载 /*** * ...

  8. 韩语在线翻译图片识别_一键截图识别屏幕文字,支持实时翻译还能朗读

    ☝点击"极客喵荐"关注公众号获取最新实用技巧 口令:126 支持:Windows 图文说明 在平常的学习生活中,我们总会遇到这些情况,浏览一些网页或者图片的时候,没法复制其中的文字 ...

  9. Atian inputmethod 输入法解决方案 方言与多语言多文字支持 英语汉字汉语阿拉伯文的支持 (au...

    Atian inputmethod 输入法解决方案 方言与多语言多文字支持 英语汉字汉语阿拉伯文的支持 (au 1.1. Overview概论 支持母语优先的战略性产品,主要是针对不想以及不愿使用普通 ...

最新文章

  1. sqlite3 解决并发读写冲突的问题
  2. System.Linq捉虫记 | 论变量命名的重要性
  3. HTML如何添加锚点,文末领取面试资料
  4. 《大数据》期刊2015年电子版赠阅调查问卷
  5. 小细节决定大人生 或 对于细节的在意程度决定你人生到达的高度 或 对于细节的把控决定你是否比水平大致相同的人优秀与否 + 做事要带点脑子
  6. 一加9R将推12+256GB新版本:骁龙870+120Hz高刷屏
  7. textarea 在 Chrome Safari FireFox 浏览器中禁用拖动和固定大小
  8. 三星note10 android q,【极光ROM】-【三星NOTE10/NOTE10+/5G N97XX-855】-【V6.0 Android-Q-TE1】...
  9. 压缩图片的三种方式(Java)
  10. Phoenix错误信息: Malformed connection url
  11. SwiftUI Xcode教程之在 iOS 中使用Schemes 和 .xcconfig 文件来组织构建交付
  12. 在Linux系统中的安装cpolar内网穿透
  13. 打印机接无线共享服务器出现乱码,Ricoh理光复印机网络打印机出乱码的解决办法...
  14. 【RuoYi-Vue-Plus】学习笔记 42 - Easy Excel(二)Excel 2007(*.xlsx)导入流程分析(源码)
  15. 关于微信小程序uniapp版的推送消息
  16. 深度学习框架Caffe学习系列(2):Ristretto 量化 cifar_small 实验记录
  17. 极大似然估计量(θ)
  18. C++如何实现猜数游戏
  19. BFS最强—如龙题解
  20. 我不知道如何使用这台计算机用英语怎么说,我不知道英文

热门文章

  1. ARMv8 ARM64 架构 整体介绍
  2. .deb文件的解压与压缩
  3. Protobuf 语法指南简析(proto3)
  4. 微信小程序云数据库+云函数
  5. react + ts 下的开发经验汇总
  6. 班章管家讲解固收理财有危险吗?固收理财有什么危险?
  7. 计算机应用基础(专)【4】
  8. exec族函数(execl, execlp, execle, execv, execvp, execvpe)
  9. 阿里云Aliware首批“铂金合作伙伴”花落谁家?——北京天源迪科当之无愧!!!...
  10. 赛迪顾问《中国政务云市场研究年度报告》发布:群雄逐鹿 华云数据成为政务云市场主力厂商