Giter Club home page Giter Club logo

siner's Introduction

Siner

Finds the sine or cosine of a wave file.

How it works

First, the program takes each audio byte, and converts it to a value between 0 and 2pi. In the case of an 8-bit file, the byte is converted to a signed value first:

(((byte+128) & 255)/255)*2*pi

In the case of a 16-bit file, each pair of bytes is ORed together first to create a 16-bit value, which is then converted to an unsigned value:

((((byte_low | (byte_high<<8))+32768) & 65535)/65535)*2*pi

Then, the sine/cosine of the value is found, and the result will be a floating-point value from -1 to 1. This value is multiplied according to the wave file's bit depth. For instance, an 8-bit file will use this formula:

floor(byte*128) & 255

After multiplying the value by 128, the result is a signed value (-128 to 127), so it's ANDed with 255 which converts it to an unsigned byte between 0 and 255.

siner's People

Contributors

prezzodaman avatar

Stargazers

Leo avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.