B4J Question how to play sound with B4J Non UI App?

wirog80

Member
Licensed User
hi all,
i have Raspberry Pi board.
i want to make an application which can play the audio file (WAV/MP3) via SSH client command (Putty).
is possible to play sound with B4J Non UI App?
how to make it work?
 

wirog80

Member
Licensed User
thanks Erel,
finally i use shell to play it.
i call omxplayer as player.

B4X:
Dim js As  Shell
    js.Initialize("", "omxplayer", Array As String(File.DirApp & "/Audio/" & "one.wav"))
    js.Run(-1)
 
Upvote 0
Top