HomeForumsWhat's newResources 
 
 
Converting to ADX for poneSound
Sixthview - Feb 1, 2024
 Sixthview Feb 1, 2024
I have been trying a number of different resources to covert some files (mp3 and wav) to ADX for use with poneSound, but I have had no luck. Resources I have found won't let me adjust the bitrate.
Can someone recommend a tool that they use or point me in the right direction?

 Ponut Feb 1, 2024
Install ffmpeg and use these arguments (or this batch file):


  
	
	
SET /P this=FILE:
ffmpeg -i %this%.mp3 -c adpcm_adx -ac 1 -ar 15360 %this%.ADX
ECHO this %this%
PAUSE


ffmpeg -i filename.mp3 -c adpcm_adx -ac 1 -ar 15360 filename.ADX

you can adjust the batch file as needed

 Sixthview Feb 2, 2024
You are an amazing user Ponut. Thank you.
At first it didn't work, but I tried it with a few other files and eventually I hit on one that worked perfectly.