I did the steps of the tutorial till here butt when I'm trying to run this command : for i in *.wav; do play $i; done
I get this Errors:
root@dhcppc3:/home/mm/audio# for i in *.wav; do play $i; done____||_____|'_ \| |/ _'|||||__/|_|\____|\__/|_||__/play2.2.6builtwithScala2.10.3(runningJava1.8.0_05),http://www.playframework.comThisisnotaplayapplication!Use`play new`tocreateanewPlayapplicationinthecurrentdirectory,orgotoanexistingapplicationandlaunchthedevelopmentconsoleusing`play`......................
Last edit: Nickolay V. Shmyrev 2016-10-07
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I did the steps of the tutorial till here butt when I'm trying to run this command :
for i in *.wav; do play $i; done
I get this Errors:
Last edit: Nickolay V. Shmyrev 2016-10-07
You have conflict with installed scala application, you can use aplay or paplay instead.
It worked!
Thank you!