Hello, I had made a B4J program on Windows 7 that started a series of MP3 files to send audio messages related to some of the program's procedures. Now with windows 10 (both 32 and 64 bit) it no longer works, that is, MP3 files are no longer heard.
Who can help me ? What can it depend on?
The Numero.MP3 file in windows 10 is heard quietly.
Thank you
Marco
Who can help me ? What can it depend on?
B4X:
Sub StarPlay
FilePlay("Numero.mp3") ' Numero
End Sub
Sub FilePlay(FileMP As String)
Try
Main.Mp.Initialize("mp",File.geturi(File.DirApp & "/Voice/",FileMP))
Main.Mp.Position = 0
Main.Mp.Play
Catch
Main.Messaggio("Errore", " Peocedura FilePlay ")
Log(LastException.Message)
End Try
End Sub
The Numero.MP3 file in windows 10 is heard quietly.
Thank you
Marco