在我的应用程序中,我使用TTS的synthesizeToFile方法创建一个音频文件,它工作正常。
然后,当生成文件时,我想通过whatsapp分享它,它再次正常工作。但收到文件的人收到“cutted”,而不是TTS生成的文件夹中的完整音频。
这是代码:
@TargetApi(Build.VERSION_CODES.LOLLIPOP)
public void shareAudioText() {
String textToShare = mEditTextMain.getText().toString();
File file = new File (mContext.getExternalFilesDir(null), "AudioFiles");
if (!file.exists()) {
boolean status = file.mkdir();
if (status) {
Toast.makeText(mContext, "Directory created successfully " + file.getAbsolutePath(), Toast.LENGTH_LONG).show();
} else {
Toast.makeText(mContext, "Directory create failed", Toast.LENGTH_SHORT).show();
}
}
File audioFile = new File(file.getAbsolutePath() + "/myau.wav");
textToSpeech.synthesizeToFile(textToShare, null, audioFile, "try");
textToSpeech.setOnUtteranceProgressListener(new UtteranceProgressListener() {
@Override
public void onStart(String utteranceId) {
}
@Override
public void onDone(String utteranceId) {
File file = new File (mContext.getExternalFilesDir(null), "AudioFiles");
File audioFile = new File(file.getAbsolutePath() + "/myau.wav");
final Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.setType("audio/wav");
shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(audioFile.getAbsolutePath()));
if (shareIntent.resolveActivity(getContext().getPackageManager()) != null) {
mContext.startActivity(shareIntent);
}
}
@Override
public void onError(String utteranceId) {
}
});
}
例如,TTS在大约5秒内记录文件.wav,但是whatsapp发送的.aac更短,可能是2或3秒。
修改
好吧,我发现共享一个.opus文件,问题就消失了。我尝试从文件管理器中选择一个.opus文件然后共享它。但是当我创建opus文件时,Whatsapp再次将其转换为.aac!
有人可以帮我解决这个问题吗?
提前致谢。
答案 0 :(得分:2)
解决方案是将(.wav,.opus,.ogg)转换为mp3。我使用这个库将音频从wav转换为mp3: https://github.com/adrielcafe/AndroidAudioConverter
进口:
import cafe.adriel.androidaudioconverter.AndroidAudioConverter;
import cafe.adriel.androidaudioconverter.callback.IConvertCallback;
import cafe.adriel.androidaudioconverter.callback.ILoadCallback;
import cafe.adriel.androidaudioconverter.model.AudioFormat;
在构造函数中使用它:
public AudioConv(Context context1) {
AndroidAudioConverter.load(context1, new ILoadCallback() {
@Override
public void onSuccess() {
// Great!
}
@Override
public void onFailure(Exception error) {
// FFmpeg is not supported by device
}
});
}
public void convertAudio(File file){
/**
* Update with a valid audio file!
* Supported formats: {@link AndroidAudioConverter.AudioFormat}
*/
IConvertCallback callback = new IConvertCallback() {
@Override
public void onSuccess(File convertedFile) {
//Toast.makeText(MainActivity.this, "SUCCESS: " + convertedFile.getPath(), Toast.LENGTH_LONG).show();
audio=convertedFile;
Log.e("paths",convertedFile.getAbsolutePath());
}
@Override
public void onFailure(Exception error) {
// Toast.makeText(MainActivity.this, "ERROR: " + error.getMessage(), Toast.LENGTH_LONG).show();
Log.e("paths",error.getMessage());
}
};
//Toast.makeText(this, "Converting audio file...", Toast.LENGTH_SHORT).show();
AndroidAudioConverter.with(context)
.setFile(file)
.setFormat(AudioFormat.MP3)
.setCallback(callback)
.convert();
}