//javaを使用してmp3ファイルのリストを連結しようとしています。しかし、コードを実行していると、次のエラーが発生します。
//javax.sound.sampled.UnsupportedAudioFileException: could not get audio input stream from input file
at javax.sound.sampled.AudioSystem.getAudioInputStream(AudioSystem.java:1170)
at soundConcat.main(soundConcat.java:42)
//これはコードです
String[] strFilename = {"a","b","c","d","e","f"};
for (int i = 0; i < 6; i++)
{
File soundFile = new File("./sounds/"+strFilename[i]+".mp3");
AudioInputStream audioInputStream = null;
try
{
//getting an error on the next line
audioInputStream = AudioSystem.getAudioInputStream(soundFile);
}
catch (Exception e)
{
e.printStackTrace();
}
//some more operations here
}
}