Tagged Questions

Tempo is a tiny JSON rendering engine that enables you to craft data templates in pure HTML.

learn more… | top users | synonyms

9
votes
4answers
3k views

C# Audio - How to time stretch (different tempo, same pitch)

I'm trying to make a winform app in C# (VS2008) that can load an mp3 (other formats would be nice, but mp3 at a minimum) and be able to adjust the playback speed (tempo) without affecting pitch. I ...
3
votes
1answer
451 views

Need Android equivalent of AudioInputStream

I'm trying to write an Android app that analyzes content from the user's music library. Let's assume that these are mp3 files on the SD drive, for starters. I'm able to find Java algorithms to ...
2
votes
1answer
174 views

music beat detection in iphone

please anyone know is there any sample code for beat detection iPhone?.How to implement fft algorithm in iphone to detect music beats?.I see in one forum that apple's sample code auriotouch doing the ...
2
votes
2answers
215 views

How can i make a metronome with jQuery

This doesn't have to be with a clicking sound. I need something to visualize a certain tempo/ metronome how can i make a sound or image appear on a certain tempo? So maybe with fade or toggle() but ...
1
vote
1answer
22 views

Transforming tree structure using Tempo

I have started on using JSON data structures instead of XML in a little Web project. I need to do some transformation of the data, like you normally do with XSLT on XML, and then I stumpled upon the ...
1
vote
2answers
45 views

Using Sound files C# - modifying tempo

Does anyone have any idea how to modify the sound speed and play a sound file faster/slower than the original in C#? At the moment I am using .wav files, I have searched a lot and found that ...
1
vote
1answer
83 views

Does it make sense that these high numbers are midi tempo?

I am using midi library for as3 and receive these values as tempo (to the left the timeline and to the right the tempo) 1712 11424264 3632 11424264 3670 2325000 3708 1417992 Assuming that at ...
0
votes
1answer
82 views

How to get BPM, tempo audio features in Python

iJust like said in the title. Currently, i involved in a project which need me to extract the songs' features like bpm, tempo, etc. However, i did not find a suitable one which can detect the ...
0
votes
1answer
57 views

Changing the tempo of a MIDI or WAV/MP3 file in FMOD

Is it possible to change the tempo of a MIDI or WAV/MP3 file using FMOD? I am using C++ alongside FMOD and cannot seem to find a function which will let me control the tempo of an audio file from ...
0
votes
2answers
96 views

CoreAudio tempo change (iOS)

I'm very new to audio programming, but I know this must be possible. (This is an iOS/iPhone related question). How would I go about changing the tempo of a loaded audio file without changing the ...
0
votes
1answer
84 views

Using {{field}} as a parameter in Tempo (JavaScript/JSON)

Is it possible to use {{field}} as a parameter of a javascript function using Tempo? Something like, <ol id="marx-brothers"> <li data-template>{% getAge({{born}}) %}</li> ...
0
votes
1answer
132 views

Finch make robot sound

Can Finch change the user's recorded voice into a robot's voice? By changing the pitch, rate, tempo etc?
0
votes
1answer
57 views

Emacs tempo mode does not work on the first line

I'm loading tempo for Emacs: (require 'tempo) I can expand templates just fine, however not when the cursor is position on the beginning of the first line in the buffer. I'm running Ubuntu with ...
0
votes
3answers
252 views

For consistent tempo on iPhone, is there a better solution than system sounds?

I've been working on a metronome app for quite some time now. Following Apple'e sample Metronome application, I've been using a timer on a (high priority) background thread to play system sounds. My ...
0
votes
3answers
575 views

MP3 playback with dynamic tempo adjustment

I need to whip up a quickie app, something quick and dirty, on windows that lets a user control the tempo of a playing mp3 file with a slider. Any recommendations on libraries/programming ...