0

我需要知道下一个例子是否可行:

我在我的 android 应用程序中以 m4a 和 wav 格式保存了声音文件。然后我选择说四个文件,其中三个是 m4a 和一个 wav。我的输出应该是一个混合了所有四个 m4a 格式文件的文件。所以当我播放这个单个文件时,听起来应该是四个文件同时播放。

如果您能提供一些代码,我们将不胜感激。

4

1 回答 1

0

here is a code that I'm using to play a video from raw folder

Uri uri = Uri.parse("android.resource://" + getPackageName() + "/"+ R.raw.vidfull);

mVideoView.setVideoURI(uri);

Of course you will use audioPlayer class or equivalent .

Note that you don't have to input the extension of the file .

For the audio edition software I use Audacity

于 2012-05-09T15:33:54.383 回答