https://github.com/bill-auger/audio-tag-too
Clip and stitch audio samples
https://github.com/bill-auger/audio-tag-too
Last synced: 3 months ago
JSON representation
Clip and stitch audio samples
- Host: GitHub
- URL: https://github.com/bill-auger/audio-tag-too
- Owner: bill-auger
- License: gpl-3.0
- Created: 2018-10-06T01:20:26.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-20T03:23:36.000Z (over 6 years ago)
- Last Synced: 2025-01-13T22:46:43.687Z (4 months ago)
- Language: C++
- Homepage:
- Size: 4.22 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
do note, this is in the alpha stage - the master branch is not a stable release and will be rebased
### Building from Source
#### Arch, Parabola:
```
### build and install with makepkg ###
$ wget https://raw.githubusercontent.com/bill-auger/audio-tag-too/master/Builds/Packaging/PKGBUILD
# makepkg -sri ./PKGBUILD
```#### Debian, Ubuntu, Trisquel:
```
### build dependencies ###
$ sudo apt-get install build-essential libasound2-dev libcurl4-gnutls-dev \
libfreetype6-dev libgtk-3-dev libwebkit2gtk-4.0-dev libx11-dev \
libxcursor-dev libxinerama-dev libxrandr-dev### runtime dependencies ###
$ sudo apt-get install freeglut3 libcurl3-gnutls libfreetype6 libgl1-mesa-glx libgtk-3-0 \
libwebkit2gtk-4.0-37 libx11-6 libxcomposite1 libxcursor1 libxext6 \
libxinerama1 libxrender1### compile ###
$ cd Builds/Makefile
$ make
$ sudo make install### run ###
$ audio-tag-too
```#### Fedora:
```
### build dependencies ###
$ su -c "dnf install freetype-devel gcc-c++ libX11-devel libXcursor-devel \
libXinerama-devel libXrandr-devel"### runtime dependencies ###
$ su -c "dnf install freetype libX11 libXcursor libXinerama libXrandr"### compile ###
$ cd Builds/Makefile
$ make
$ su -c "make install"### run ###
$ audio-tag-too
```#### OpenSuse Leap >= 42, OpenSuse Tumbleweed, Suse SLE >= 12:
```
### build dependencies ###
$ sudo zypper install freetype2-devel gcc-c++ libX11-devel libXinerama-devel \
libXcursor-devel libXrandr-devel### runtime dependencies ###
$ sudo zypper install freetype2 libX11 libXinerama libXcursor libXrandr### compile ###
$ cd Builds/Makefile
$ make
$ sudo make install### run ###
$ audio-tag-too
```#### Other GNU/Linux:
Install the corresponding libraries as above for your system and compile similarly.