Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/raydac/zxtap-to-wav
Converter of .TAP files (a ZX-Spectrum emulator data format) into .WAV sound files
https://github.com/raydac/zxtap-to-wav
converter golang python tape utility wav zx-spectrum
Last synced: 3 months ago
JSON representation
Converter of .TAP files (a ZX-Spectrum emulator data format) into .WAV sound files
- Host: GitHub
- URL: https://github.com/raydac/zxtap-to-wav
- Owner: raydac
- License: apache-2.0
- Created: 2016-08-29T17:06:32.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-04-18T21:34:47.000Z (10 months ago)
- Last Synced: 2024-10-24T18:35:30.084Z (4 months ago)
- Topics: converter, golang, python, tape, utility, wav, zx-spectrum
- Language: Go
- Size: 29.3 KB
- Stars: 50
- Watchers: 6
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![License Apache 2.0](https://img.shields.io/badge/license-Apache%20License%202.0-green.svg)](http://www.apache.org/licenses/LICENSE-2.0)
[![PayPal donation](https://img.shields.io/badge/donation-PayPal-cyan.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=AHWJHJFBAWGL2)
[![YooMoney donation](https://img.shields.io/badge/donation-Yoo.money-blue.svg)](https://yoomoney.ru/to/41001158080699)Easy command line utility to convert [.TAP files (a data format for ZX-Spectrum emulator)](http://fileformats.archiveteam.org/wiki/TAP_(ZX_Spectrum)) into [sound WAV file](https://en.wikipedia.org/wiki/WAV).
(Also there is [similar utility to convert binary files into WAV files for personal computer BK-0010](https://github.com/raydac/bkbin2wav))# How to build?
Just clone the project and use [maven](https://maven.apache.org/) `mvn package -Ppublish` command or [load needed prebuit version from the latest release](https://github.com/raydac/zxtap-to-wav/releases/tag/1.0.2).# Arguments
```
-a amplify sound signal
-f int
frequency of result wav, in Hz (default 22050)
-g int
time gap between sound blocks, in seconds (default 1)
-i string
source TAP file
-o string
target WAV file
-s add silence before the first file
```
# Example
```
zxtap2wav -i RENEGADE.tap
zxtap2wav -a -i RENEGADE.tap -o RENEGADE.wav -f 44100 -s
```
# How to?## Make longer silence interval between files in WAV
Just add `-g 2` or `-g 3` to make delay in 2 or 3 seconds.## Add silence in start of generated WAV file
Use `-s` and silence will be generated in start of WAV file.## I want 44100 Hz quantized WAV
Use parameter `-f 44100`## Sound is too silent
Use flag `-a` and generated sound in WAV will be amplified to maximum.