Questions tagged [music]
In programming, music refers to sound that follows properties distinct from speech or noise, or the symbolic representation, manipulation, and representation (display or audio) of musical objects, or for the metadata of these objects.
44 questions
2 votes
1 answer
86 views
JavaFx Music Player
I built a small program that searches and plays wav files on your PC. This Java Music Player application is my first comprehensive project. It features a straightforward graphical user interface (GUI) ...
2 votes
1 answer
234 views
Python MP3 player with pygame.mixer and tkinter for MacOS
I made a Tkinter MP3 Player with Pygame and am looking for tips to improve. Explanation offered in comments in code, but it generally works by getting all the files in a folder. (Have censored ...
2 votes
1 answer
255 views
Converting musical notes to WAV
So, here is my code for converting musical notes stored in a text file to WAV. You can see an example of its output here. ...
0 votes
1 answer
4k views
simple python music quiz [closed]
I'm currently learning python and created a simple music quiz. the rules of the game are as follows: The user has two chances to guess the name of the song If the user guesses the answer correctly ...
1 vote
1 answer
609 views
Script to transpose chords in a song sheet
I'd like to write a script that receives text input from the clipboard that will be from a song lyric sheet with chords. The goal is for the function to return the text to the clipboard after ...
4 votes
2 answers
277 views
Music Theory: The Basics - a Ring
I've recently started building an API that allows a consumer to create and manipulate musical entities such as notes, intervals, scales and chords. The first step is to create a a foundation of base ...
7 votes
1 answer
214 views
Warped Audio Sample
I was asked this question and got no feedback, so I'd like to ask you for any feedback on my solution, Thanks! Think of an audio sample as a rubber-band that you want to pin to a musical time ruler. ...
7 votes
7 answers
403 views
Calculating frequency of a note from a string
I've been working on a solution to Pset3 of CS50 Harvard course for last couple of hours and managed to finish it. Although it works as intended I'm unhappy with how clean this code is, mostly because ...