audio-checker 1.7 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News audio-checker 1.7 (Default branch)
# 1  
Old 02-02-2009
audio-checker 1.7 (Default branch)

Image The aim of auch (audio-checker) is to visualize harmonics in musical recordings. Many tools show the spectrum, but this tool focuses on one or two specific octaves, with an indication of the tonica, sub-dominant(IV), and dominant(V). This way, notes, chords, and harmonics in a musical piece become clearer. It also supports other types of transformation (like wavelets, surface waves, strings, resampling, etc). Another feature is that this tool can compare incoming and outgoing audio to test external filters. License: GNU General Public License (GPL) Changes:
Origami was used as an inspiration to create a moving 3D object that 'dances' to music. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
get_sound_input_cap_bits(3alleg4)				  Allegro manual				 get_sound_input_cap_bits(3alleg4)

NAME
get_sound_input_cap_bits - Checks which audio input sample formats are supported. Allegro game programming library. SYNOPSIS
#include <allegro.h> int get_sound_input_cap_bits(); DESCRIPTION
Checks which sample formats are supported by the current audio input driver, returning one of the bitfield values: 0 = audio input not supported 8 = eight bit audio input is supported 16 = sixteen bit audio input is supported 24 = both eight and sixteen bit audio input are supported Example: cap = get_sound_input_cap_bits(); if (cap == 0) { /* Ugh, no audio input supported? */ } else { if (cap & 8) { /* We have eight bit audio input. */ } if (cap & 16) { /* We have sixteen bit audio input. */ } } SEE ALSO
start_sound_input(3alleg4), get_sound_input_cap_parm(3alleg4), get_sound_input_cap_rate(3alleg4), get_sound_input_cap_stereo(3alleg4) Allegro version 4.4.2 get_sound_input_cap_bits(3alleg4)