A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/orhun/linuxwave below:

orhun/linuxwave: Generate music from the entropy of Linux 🐧🎵

Click here to watch the demo!
Listen to "linuxwave" on Spotify!

Table of Contents
  1. Clone the repository.
git clone https://github.com/orhun/linuxwave && cd linuxwave/
  1. Build.

Binary will be located at zig-out/bin/linuxwave. You can also run the binary directly via zig build run.

If you want to use linuxwave in your Zig project as a package, the API documentation is available here.

See the available binaries for different targets from the releases page. They are automated via Continuous Deployment workflow.

Release tarballs are signed with the following PGP key: 0xC0701E98290D90B8

linuxwave can be installed from the community repository using pacman:

linuxwave can be installed from official Void Linux package repository:

Docker builds are automated and images are available in the following registries:

The following command can be used to generate output.wav in the current working directory:

docker run --rm -v "$(pwd)":/app "orhunp/linuxwave:${TAG:-latest}"

Custom Docker images can be built from the Dockerfile:

docker build -t linuxwave .

Default: Read random data from /dev/urandom to generate a 20-second music composition in the A4 scale and save it to output.wav:

Or play it directly with mpv without saving:

To use the A minor blues scale:

linuxwave -s 0,3,5,6,7,10 -n 220 -o blues.wav

Read from an arbitrary file and turn it into a 10-second music composition in the C major scale:

linuxwave -i build.zig -n 261.63 -d 10 -o music.wav

Read from stdin via giving - as input:

cat README.md | linuxwave -i -

Write to stdout via giving - as output:

linuxwave -o - > output.wav

Generate a calming music with a sample rate of 2000 Hz and a 32-bit little-endian signed integer format:

linuxwave -r 2000 -f S32_LE -o calm.wav

Generate a chiptune music with a sample rate of 44100 Hz, stereo (2-channel) output and 8-bit unsigned integer format:

linuxwave -r 44100 -f U8 -c 2 -o chiptune.wav

Generate a boss stage music with the volume of 65:

linuxwave -s 0,7,1 -n 60 -v 65 -o boss.wav

Generate a spooky low-fidelity music with a sample rate of 1000 Hz, 4-channel output:

linuxwave -s 0,1,5,3 -n 100 -r 1000 -v 55 -c 4 -o spooky_manor.wav

Feel free to submit a pull request to show off your preset here!

Also, see this discussion for browsing the music generated by our community.

Options:
  -s, --scale <SCALE>            Sets the musical scale [default: 0,2,3,5,7,8,10,12]
  -n, --note <HZ>                Sets the frequency of the note [default: 440 (A4)]
  -r, --rate <HZ>                Sets the sample rate [default: 24000]
  -c, --channels <NUM>           Sets the number of channels [default: 1]
  -f, --format <FORMAT>          Sets the sample format [default: S16_LE]
  -v, --volume <VOL>             Sets the volume (0-100) [default: 50]
  -d, --duration <SECS>          Sets the duration [default: 20]
  -i, --input <FILE>             Sets the input file [default: /dev/urandom]
  -o, --output <FILE>            Sets the output file [default: output.wav]
  -V, --version                  Display version information.
  -h, --help                     Display this help and exit.

Sets the musical scale for the output. It takes a list of semitones separated by commas as its argument.

The default value is 0,2,3,5,7,8,10,12, which represents a major scale starting from C.

Here are other examples:

The note option sets the frequency of the note played. It takes a frequency in Hz as its argument.

The default value is 440, which represents A4. You can see the frequencies of musical notes here.

Other examples would be:

Sets the sample rate for the output in Hertz (Hz).

The default value is 24000.

Sets the number of audio channels in the output file. It takes an integer as its argument, representing the number of audio channels to generate. The default value is 1, indicating mono audio.

For stereo audio, set the value to 2. For multi-channel audio, specify the desired number of channels.

Note that the more audio channels you use, the larger the resulting file size will be.

Sets the sample format for the output file. It takes a string representation of the format as its argument.

The default value is S16_LE, which represents 16-bit little-endian signed integer.

Possible values are:

Sets the volume of the output file as a percentage from 0 to 100.

The default value is 50.

Sets the duration of the output file in seconds. It takes a float as its argument.

The default value is 20 seconds.

Sets the input file for the music generation. It takes a filename as its argument.

The default value is /dev/urandom, which generates random data.

You can provide any type of file for this argument and it will generate music based on the contents of that file.

Sets the output file. It takes a filename as its argument.

The default value is output.wav.

If you find linuxwave and/or other projects on my GitHub profile useful, consider supporting me on GitHub Sponsors or becoming a patron!

See our Contribution Guide and please follow the Code of Conduct in all your interactions with the project.

Licensed under The MIT License.

Copyright © 2023-2024, Orhun Parmaksız


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4