私はサンプルのテキスト/スピーチアプリケーションを行っていますが、これは私のの要件では、EditTextを使用してユーザーからテキストを取得し、 .wav/.mp3形式でテキストを入力し、外部ストレージに保存します。私はこのプロセスのために次のコードを使用しましたが、私は成功しません。外部記憶装置にテキスト/スピーチファイルを.wav/.mp3形式で保存するには
main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<EditText
android:id="@+id/editText1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="textMultiLine" >
<requestFocus />
</EditText>
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Save in Sdcard" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Play the text file" />
</LinearLayout>
TTS_AudioActivity.javaこの中
public class TTS_AudioActivity extends Activity {
/** Called when the activity is first created. */
Button store, play;
EditText input;
String speakTextTxt;
private TextToSpeech mTts;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
store = (Button) findViewById(R.id.button1);
play = (Button) findViewById(R.id.button2);
input = (EditText) findViewById(R.id.editText1);
store.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
speakTextTxt = input.getText().toString();
HashMap<String, String> myHashRender = new HashMap<String, String>();
myHashRender.put(TextToSpeech.Engine.KEY_PARAM_UTTERANCE_ID,
speakTextTxt);
String exStoragePath = Environment
.getExternalStorageDirectory().getAbsolutePath();
File appTmpPath = new File(exStoragePath + "/sounds/");
appTmpPath.mkdirs();
String tempFilename = "tmpaudio.wav";
String tempDestFile = appTmpPath.getAbsolutePath() + "/"
+ tempFilename;
mTts.synthesizeToFile(speakTextTxt, myHashRender, tempDestFile);
}
});
play.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
final MediaPlayer mMediaPlayer = new MediaPlayer();
try {
mMediaPlayer.setDataSource("/sdcard/sounds/tmpaudio.wav");
} catch (IllegalArgumentException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IllegalStateException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
mMediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC);
mMediaPlayer.start();
mMediaPlayer
.setOnCompletionListener(new OnCompletionListener() {
@Override
public void onCompletion(MediaPlayer mp) {
mMediaPlayer.stop();
}
});
}
});
}
}
、私は店のボタンをクリックすると、入力されたテキストは、このために、.wav形式として保存する必要があります私はコードスニペットフォーム開発者ガイドを使用しました。正常に保存されたら、[再生]ボタンをクリックすると、保存ファイルが再生されます。どのように私はこれを達成することができます。前もって感謝します。
+1。私も同じ要件を持っていますあなたがそれを知っているか、答えを更新させていただきました..ありがとう.. –
あなたはこれに答えましたか? –