All Questions
Tagged with audio python-3.x
8 questions
9
votes
1
answer
4k
views
3
votes
0
answers
2k
views
Converts audio files to fixed size chunks and the chunks to spectrogram images
This code takes in input as audio files (.wav or .WAV) and divides them into fixed-size (chunkSize in seconds) samples. Then these chunks are converted to spectrogram images after applying PCEN (Per-...
18
votes
2
answers
2k
views
Split mp3 of album into individual tracks
Recently, I've been transferring some of my old vinyl records to MP3 files. One of the things I did to make some progress was to automate things, so I initially set things up so that it would record ...
5
votes
2
answers
485
views
Optimizing a Text-To-Speech program with a lot of repetition
I have a Text-To-Speech program that will ask the user to input text, convert it to speech and then output that speech from within Pygame by loading the file into memory, getting Pygame to play the ...
3
votes
2
answers
3k
views
Python Text-To-Speech program
I have some code that asks for a user input, and then uses TTS to convert that into speech and play the file. It then asks the user whether they want to repeat it and convert another input into speech,...
6
votes
1
answer
3k
views
Python .WAV generator
The following is a .wav file generator that I wrote briefly while (re)learning about audio sampling:
...
4
votes
1
answer
258
views
Downloading and transcoding music from YouTube
This is a music downloader and transcoder based on Youtube-Dl and VLC. It is written in Python 3. The PAFY Python module is required in addition to VLC. Currently, the "cancel" button is not ...
2
votes
1
answer
2k
views
Encoding a list of frequencies as WAV audio
This code gets a list of signals with predefined frequency from struc.num
I need to encode it to wave format, so i use this code. This works, but i dont sure it is a correct decision to encode like ...