Audio format that will occupy the least space? [closed]2019 Community Moderator ElectionCrop MP3 to first 30 secondsencoding mp3 from a audio stream of PyTTSIs there HTML embeddable audio player which prevents downloading of the audio it plays?Converting audio (mp3->ogg) on an Ubuntu servercan not add audio onto processingHow to merge two or more mp3 audio file in android?Arduino program simply stops when looping through file listingSimulating bitflips on arduino unoDetect Matching Sounds in Audio StreamNodeJS - Stream MP3 Audio Playlist from fixed HTTP endpoint
Rejected in 4th interview round citing insufficient years of experience
Why do Australian milk farmers need to protest supermarkets' milk price?
What is the definition of "Natural Selection"?
Are there situations where a child is permitted to refer to their parent by their first name?
Humans have energy, but not water. What happens?
How to deal with a cynical class?
Making a sword in the stone, in a medieval world without magic
Is going from continuous data to categorical always wrong?
What happens with multiple copies of Humility and Glorious Anthem on the battlefield?
Sword in the Stone story where the sword was held in place by electromagnets
How is the Swiss post e-voting system supposed to work, and how was it wrong?
Life insurance that covers only simultaneous/dual deaths
Single word request: Harming the benefactor
What does it mean when multiple 々 marks follow a 、?
Examples of odd-dimensional manifolds that do not admit contact structure
Decoding assembly instructions in a Game Boy disassembler
Question about partial fractions with irreducible quadratic factors
Word for a person who has no opinion about whether god exists
The meaning of the "at the of"
My story is written in English, but is set in my home country. What language should I use for the dialogue?
Time dilation for a moving electronic clock
Why doesn't the EU now just force the UK to choose between referendum and no-deal?
Playing ONE triplet (not three)
Time travel short story where dinosaur doesn't taste like chicken
Audio format that will occupy the least space? [closed]
2019 Community Moderator ElectionCrop MP3 to first 30 secondsencoding mp3 from a audio stream of PyTTSIs there HTML embeddable audio player which prevents downloading of the audio it plays?Converting audio (mp3->ogg) on an Ubuntu servercan not add audio onto processingHow to merge two or more mp3 audio file in android?Arduino program simply stops when looping through file listingSimulating bitflips on arduino unoDetect Matching Sounds in Audio StreamNodeJS - Stream MP3 Audio Playlist from fixed HTTP endpoint
I am working on a Arduino project which requires me to store the audio/sound of numbers from 1 to 10.Since Arduino UNO has only 32Kb memory out of which 12Kb is available rest is occupied by the sketch.I tried to generate the mp3 files for each number almost every mp3 file generated is 5Kb in size and I could only manage to store 2 files. Is there any more efficient way I could store all the sound of numbers from one to ten.
arduino processing mp3 arduino-uno audioformat
closed as too broad by ryanyuyu, DanielBarbarian, Tiw, Pac0, Amit K. Saha Mar 7 at 17:52
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
I am working on a Arduino project which requires me to store the audio/sound of numbers from 1 to 10.Since Arduino UNO has only 32Kb memory out of which 12Kb is available rest is occupied by the sketch.I tried to generate the mp3 files for each number almost every mp3 file generated is 5Kb in size and I could only manage to store 2 files. Is there any more efficient way I could store all the sound of numbers from one to ten.
arduino processing mp3 arduino-uno audioformat
closed as too broad by ryanyuyu, DanielBarbarian, Tiw, Pac0, Amit K. Saha Mar 7 at 17:52
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
We don't know what your sounds are. Maybe you can fiddle with the parameters of the mp3 compression. Maybe you could use another Arduino model that has more memory.
– Pac0
Mar 7 at 17:21
Maybe you'll get more compression if you put all "sounds" into one mp3 (where mp3 algorithm can re-use similar frequencies. Eg: the "F..." sound in Four and Five)? Can Arduino decode some type of ADPCM compression? Maybe look into that.
– VC.One
2 days ago
add a comment |
I am working on a Arduino project which requires me to store the audio/sound of numbers from 1 to 10.Since Arduino UNO has only 32Kb memory out of which 12Kb is available rest is occupied by the sketch.I tried to generate the mp3 files for each number almost every mp3 file generated is 5Kb in size and I could only manage to store 2 files. Is there any more efficient way I could store all the sound of numbers from one to ten.
arduino processing mp3 arduino-uno audioformat
I am working on a Arduino project which requires me to store the audio/sound of numbers from 1 to 10.Since Arduino UNO has only 32Kb memory out of which 12Kb is available rest is occupied by the sketch.I tried to generate the mp3 files for each number almost every mp3 file generated is 5Kb in size and I could only manage to store 2 files. Is there any more efficient way I could store all the sound of numbers from one to ten.
arduino processing mp3 arduino-uno audioformat
arduino processing mp3 arduino-uno audioformat
asked Mar 7 at 10:59
Jayant PahujaJayant Pahuja
1
1
closed as too broad by ryanyuyu, DanielBarbarian, Tiw, Pac0, Amit K. Saha Mar 7 at 17:52
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
closed as too broad by ryanyuyu, DanielBarbarian, Tiw, Pac0, Amit K. Saha Mar 7 at 17:52
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
We don't know what your sounds are. Maybe you can fiddle with the parameters of the mp3 compression. Maybe you could use another Arduino model that has more memory.
– Pac0
Mar 7 at 17:21
Maybe you'll get more compression if you put all "sounds" into one mp3 (where mp3 algorithm can re-use similar frequencies. Eg: the "F..." sound in Four and Five)? Can Arduino decode some type of ADPCM compression? Maybe look into that.
– VC.One
2 days ago
add a comment |
We don't know what your sounds are. Maybe you can fiddle with the parameters of the mp3 compression. Maybe you could use another Arduino model that has more memory.
– Pac0
Mar 7 at 17:21
Maybe you'll get more compression if you put all "sounds" into one mp3 (where mp3 algorithm can re-use similar frequencies. Eg: the "F..." sound in Four and Five)? Can Arduino decode some type of ADPCM compression? Maybe look into that.
– VC.One
2 days ago
We don't know what your sounds are. Maybe you can fiddle with the parameters of the mp3 compression. Maybe you could use another Arduino model that has more memory.
– Pac0
Mar 7 at 17:21
We don't know what your sounds are. Maybe you can fiddle with the parameters of the mp3 compression. Maybe you could use another Arduino model that has more memory.
– Pac0
Mar 7 at 17:21
Maybe you'll get more compression if you put all "sounds" into one mp3 (where mp3 algorithm can re-use similar frequencies. Eg: the "F..." sound in Four and Five)? Can Arduino decode some type of ADPCM compression? Maybe look into that.
– VC.One
2 days ago
Maybe you'll get more compression if you put all "sounds" into one mp3 (where mp3 algorithm can re-use similar frequencies. Eg: the "F..." sound in Four and Five)? Can Arduino decode some type of ADPCM compression? Maybe look into that.
– VC.One
2 days ago
add a comment |
0
active
oldest
votes
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
We don't know what your sounds are. Maybe you can fiddle with the parameters of the mp3 compression. Maybe you could use another Arduino model that has more memory.
– Pac0
Mar 7 at 17:21
Maybe you'll get more compression if you put all "sounds" into one mp3 (where mp3 algorithm can re-use similar frequencies. Eg: the "F..." sound in Four and Five)? Can Arduino decode some type of ADPCM compression? Maybe look into that.
– VC.One
2 days ago