• Stars
    star
    2,208
  • Rank 20,043 (Top 0.5 %)
  • Language
    Java
  • Created about 8 years ago
  • Updated about 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Horizon - Simple visual equaliser for Android

Horizon - Simple visual equaliser for Android

This project aims to provide pretty cool equaliser for any Android audio project. Made in [Yalantis] (https://yalantis.com/?utm_source=github)

Check this [project on dribbble] (https://dribbble.com/shots/2452050-Record-Audio-Sample)

example

Implementation

We decided to create our audio visualizer as the base for our audio projects. We wanted a solution that will work as the Android music visualizer. The result was this awesome equalizer concept that we called Horizon.

We implemented most of our sound analysis in C++. This language reduces the time required to fetch the spectrum of sounds. While most of our analysis code was written in C++, we still did minor calculations in Java to make our component easy to customize.

How we draw a Bezier curve with Android Canvas

The equalizer consists of five waves. If you open the original .svg file in a vector image editor, you’ll see that the second wave, which corresponds to bass frequencies, is made of four cubic Bezier curves. A Bezier curve describes smooth curves mathematically. It’s possible to draw Bezier curves with Android Canvas. First, initialize paint and path. Then, add the Bezier curve to the path by calling the quadTo or cubitTo method:

path.reset();
path.moveTo(p0x, p0y);
path.quadTo(p1x, p1y, p2x, p2y);
path.moveTo(p0x, p0y);
path.close();

And finally, draw the path on the canvas:

canvas.drawPath(path, paint);

As you can see, drawing Bezier curves with Android Canvas is very easy, but performance is generally very poor.

How to draw a cubic Bezier with OpenGL ES

OpenGL ES is very fast at drawing triangles, which means we need to come up with a way to split the shape we want into triangles. Since our wave is convex, we can approximate it by drawing many triangles, all of which have one vertex located at the center of the screen (0, 0).

Here’s the idea:

  1. Split every Bezier curve into an even number of points nn.
  2. Generate n−1n−1 triangles with vertices at (N1,N2,O), (N2,N3,O), …, (Nn−1,Nn,O).
  3. Fill these triangles with color.

Splitting the Bezier curve

For each point on the Bezier curve, we are going to generate three attributes for three vertices. This is done with a simple method:

private float[] genTData() {
    //  1---2
    //  | /
    //  3
    float[] tData = new float[Const.POINTS_PER_TRIANGLE * Const.T_DATA_SIZE * mBezierRenderer.numberOfPoints];

    for (int i = 0; i < tData.length; i += Const.POINTS_PER_TRIANGLE) {
        float t = (float) i / (float)tData.length;
        float t1 = (float) (i + 3) / (float)tData.length;

        tData[i] = t;
        tData[i+1] = t1;
        tData[i+2] = -1;
    }

    return tData;
}

Attributes of the first two vertices specify points on the curve. The attribute for the third vertex is always -1, which by our convention means that this vertex is located at (0,0)(0,0).

Next, we need to pass this data to a shader.

Shader pipeline

We’ll use the following variables of the OpenGL Shading Language:

Uniforms (common for the entire wave):

  • vec4 u_Color – Color of the wave
  • float u_Amp – Sound level of the wave
  • vec4 u_BzData – Start and end points of the Bezier curve
  • vec4 u_BzDataCtrl – Two control points of the Bezier curve

Attribute (per individual vertex):

  • float a_Tdata – interpolation coefficient tt (specifies point on the curve)

Now, given the start, end, and control points of a curve, as well as tt, we need to find the location of the point on the curve.

Let’s look at the formula for a cubic Bezier:

Formula for a cubic Bezier

It’s easy to translate this directly into GLSL:

vec2 b3_translation( in vec2 p0, in vec2 p1, in vec2 p2, in vec2 p3, in float t )
{
    float tt = (1.0 - t) * (1.0 - t);

    return tt * (1.0 - t) * p0 +
        3.0 * t * tt * p1 +
        3.0 * t * t * (1.0 - t) * p2 +
        t * t * t * p3;
}

But we can do better. Let’s look at the geometric explanation of a cubic Bezier curve:

Cubic_Bezier_curve

With the help of GLSL’s mix function, we interpolate between points and almost program declaratively:

vec2 b3_mix( in vec2 p0, in vec2 p1,
        in vec2 p2, in vec2 p3,
        in float t )
{
    vec2 q0 = mix(p0, p1, t);
    vec2 q1 = mix(p1, p2, t);
    vec2 q2 = mix(p2, p3, t);

    vec2 r0 = mix(q0, q1, t);
    vec2 r1 = mix(q1, q2, t);

    return mix(r0, r1, t);
}

This alternative is much easier to read and, we think, is equivalent in terms of speed.

Color blending

To tell OpenGL that we want screen-like blending, we need to enable GL_BLEND and specify the blend function in our onDrawFrame method before actually drawing the waves:

GLES20.glEnable(GLES20.GL_BLEND);
GLES20.glBlendFuncSeparate(
    GLES20.GL_ONE, GLES20.GL_ONE_MINUS_SRC_COLOR,
    GLES20.GL_ONE, GLES20.GL_ONE_MINUS_SRC_ALPHA
); // Screen blend mode

Usage

For a working implementation, please have a look at the Sample Project - sample

Get it on Google Play

  1. Include the library as local library project.

    compile 'com.yalantis:eqwaves:1.0.1'

  2. Initialize Horizon object with params regarding to your sound

    mHorizon = new Horizon(glSurfaceView, getResources().getColor(R.color.background),
                    RECORDER_SAMPLE_RATE, RECORDER_CHANNELS, RECORDER_ENCODING_BIT);
  3. To update Horizon call updateView method with chunk of sound data to proceed

    byte[] buffer = new byte[bufferSize];
    //here we put some sound data to the buffer
    mHorizon.updateView(buffer);

Compatibility

  • Library - Android ICS 4.0+
  • Sample - Android ICS 4.0+

Changelog

Version: 1.0.1

  • Version update

Version: 1.0

  • Initial Build

Let us know!

We’d be really happy if you sent us links to your projects where you use our component. Just send an email to [email protected] And do let us know if you have any questions or suggestion regarding the library.

License

Copyright 2017, Yalantis

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

More Repositories

1

uCrop

Image Cropping Library for Android
Java
11,656
star
2

Koloda

KolodaView is a class designed to simplify the implementation of Tinder like cards on iOS.
Swift
5,268
star
3

Side-Menu.Android

Side menu with some categories to choose.
Java
5,218
star
4

Phoenix

Phoenix Pull-to-Refresh
Java
4,024
star
5

Context-Menu.Android

You can easily add awesome animated context menu to your app.
Kotlin
3,841
star
6

StarWars.iOS

This component implements transition animation to crumble view-controller into tiny pieces.
Swift
3,761
star
7

FoldingTabBar.iOS

Folding Tab Bar and Tab Bar Controller
Objective-C
3,672
star
8

Persei

Animated top menu for UITableView / UICollectionView / UIScrollView written in Swift
Swift
3,451
star
9

GuillotineMenu

Our Guillotine Menu Transitioning Animation implemented in Swift reminds a bit of a notorious killing machine.
Swift
2,919
star
10

GuillotineMenu-Android

Neat library, that provides a simple way to implement guillotine-styled animation
Java
2,735
star
11

Side-Menu.iOS

Animated side menu with customizable UI
Swift
2,714
star
12

Segmentio

Animated top/bottom segmented control written in Swift.
Swift
2,504
star
13

DisplaySwitcher

Custom transition between two collection view layouts
Swift
2,326
star
14

Euclid

User Profile Interface Animation
Java
2,237
star
15

Pull-to-Refresh.Rentals-iOS

This project aims to provide a simple and customizable pull to refresh implementation. Made in Yalantis
Objective-C
2,143
star
16

StarWars.Android

This component implements transition animation to crumble view into tiny pieces.
Java
1,941
star
17

PullToMakeSoup

Custom animated pull-to-refresh that can be easily added to UIScrollView
Objective-C
1,924
star
18

Context-Menu.iOS

You can easily add awesome animated context menu to your app.
Objective-C
1,843
star
19

FlipViewPager.Draco

This project aims to provide a working page flip implementation for usage in ListView.
Java
1,839
star
20

Taurus

A little more fun for the pull-to-refresh interaction.
Java
1,671
star
21

SearchFilter

Implementing Search Filter Animation in Kotlin for Quora Meets LinkedIn, Our App Design Concept
Kotlin
1,657
star
22

ToDoList

Micro-Transitions for Smooth Android To-Do List Animations
Java
1,621
star
23

JellyToolbar

Kotlin
1,491
star
24

pull-to-make-soup

Custom animated pull-to-refresh that can be easily added to RecyclerView
Java
1,446
star
25

ColorMatchTabs

This is a Review posting app that let user find interesting places near them
Swift
1,382
star
26

Multi-Selection

Multiselection Solution for Android in Kotlin
Kotlin
1,373
star
27

PixPic

PixPic, a Photo Editing App
Swift
1,337
star
28

PullToRefresh

This component implements pure pull-to-refresh logic and you can use it for developing your own pull-to-refresh animations
Swift
1,250
star
29

Preloader.Ophiuchus

Custom Label to apply animations on whole text or letters.
Objective-C
882
star
30

CameraModule

Simple camera module for android applications
Java
684
star
31

ForceBlur

ForceBlur Animation for iOS Messaging Apps
Swift
670
star
32

EatFit

Eat fit is a component for attractive data representation inspired by Google Fit
Swift
655
star
33

FastEasyMapping

A tool for fast serializing & deserializing of JSON
Objective-C
553
star
34

PullToMakeFlight

Custom animated pull-to-refresh that can be easily added to UIScrollView
Swift
499
star
35

OfficialFoldingTabBar.Android

Kotlin
451
star
36

Watchface-Constructor

This is simple watchface constructor demo
Java
279
star
37

CloudKit-Demo.Swift

Swift
253
star
38

Koloda-Android

Kotlin
248
star
39

e-contact-android

Java
223
star
40

FitTrack

Concept of a fitness app.
Swift
168
star
41

ColorMatchTabsAndroid

Kotlin
152
star
42

iOS-Guidelines

iOS Guidelines used in Yalantis ;)
145
star
43

CloudKit-Demo.Objective-C

Objective-C
135
star
44

AppearanceNavigationController

Example with advanced configuration of the navigation controller's appearance
Swift
98
star
45

GLata

Android library for creating OpenGL animations
Kotlin
84
star
46

VishnuCalendar

Kotlin
75
star
47

YACalendar

Yalantis Calendar
Swift
72
star
48

e-contact-ios

Swift
49
star
49

APIClient

Swift
40
star
50

YALConsole

Objective-C
40
star
51

DBClient

Swift
28
star
52

go-config

Go
8
star
53

android-styler

Java
5
star
54

go-pool

Go
4
star
55

go-monitoring

Go
2
star
56

go-influx

Go
2
star
57

Result

Swift
2
star
58

go-graphql

Go
1
star