GitXplorerGitXplorer
R

pa-visualizer

public
20 stars
1 forks
0 issues

Commits

List of commits on branch master.
Unverified
f2eb72f346c471732db64c402a9843efe8667b6a

noambition2: Fix for newer glutin

RRahix committed 3 years ago
Unverified
94ecdc36ed314ba68c31dc780fce2ca40ead115c

noambition: Fix for newer glutin

RRahix committed 3 years ago
Unverified
0583e87177d348d6e3e8731d00210b30c892dc47

Cleanup Cargo.toml a bit

RRahix committed 3 years ago
Unverified
b1bc3f8dfe7614c4a132d48594b7226356870cae

Upgrade glium & glutin version

RRahix committed 3 years ago
Unverified
48f4d719144ba4412cb0848b18e54775e414ef50

Attempt upgrading nalgebra dependency

RRahix committed 3 years ago
Verified
7b43a2a6861107f329720d86b5aca11985d00f45

ENHANCE Background

RRahix committed 7 years ago

README

The README file for this repository.

pa-visualizer

A collection of pulseaudio visualizers

all

Usage

Live

Set (using pavucontrol or pactl) the default source to the monitor of your speakers and start the visualizer with

cargo run --release --bin pa-visualizer-<visualizer-name>

Rendering

pa-visualizer also supports rendering a visualization. To do so, first convert your audio file to a .wav (Format: 32 bit float, Samplerate: 8000). Then add the following to the config of the visualizer you want to render:

RENDER_MODE = true
RENDER_FPS = 30.0
RENDER_SOUNDFILE = "name-of-your-file.wav"
RENDER_OUTPUT_DIRECTORY = "name-of-the-folder-to-put-the-frames-in"

Start the render by simply starting the visualizer:

cargo run --release --bin pa-visualizer-<visualizer-name>

Finally, convert the images to a video, for example using the following ffmpeg command:

ffmpeg -framerate 30 -i frames/%06d.png -i name-of-your-file.mp3 -c:v libx264 -preset slow -crf 22 -pix_fmt yuv420p -b:a 128k output.mp4

Visualizers

ascii

A simple debug visualizer, printing the left and right spectra to the terminal window

python

A wrapper to write visualizers in python. Does not support rendering atm!

sfml-simple

sfml-simple A basic visualizer made with sfml

sfml-wireline

sfml-wireline A visualizer made using sfml with a wireframe style

sfml-wirecircle

sfml-wirecircle Same as wireline, just "wrapping" it around a circle

noambition

noambition A 3d visualizer, written using glium based on the Demo "No Ambition" by Quite & T-Rex

noambition2

noambition Taking the noambition visualizer to the 'next' level ... Thanks to offdroid, for help with implementing this ...

Space

space An Elite: Dangerous inspired visualizer with spaceships flying in and out of a coriolis station

Stuff used in this project

Shaders

3D Models

License

pa-visualizer licensed under either of

at your option.