cpc6128-conversion/README.md

34 lines
843 B
Markdown
Raw Permalink Normal View History

2019-07-16 20:17:39 +00:00
# schneider cpc6128 data loading
2019-07-16 20:20:18 +00:00
## set up audio conversion
2019-07-16 20:17:39 +00:00
2019-07-16 20:21:26 +00:00
for audio conversion the `playtzx` software is required
2019-07-16 20:20:18 +00:00
- if on unix compile it yourself like this
- download http://www.worldofspectrum.org/pub/sinclair/tools/unix/playtzx-0.12c.tar.gz
- extract
2019-07-16 20:17:39 +00:00
- run ./configure
- run make
- if on another platform, search here http://www.worldofspectrum.org/utilities.html
2019-07-16 20:20:18 +00:00
## get a game
2019-07-16 20:17:39 +00:00
2019-07-16 20:20:18 +00:00
- search a game on https://www.cpc-power.com/
- click on the cassette icon in the navigation bar
- click on the cassette icon that now appeared below
- download the .cdt file
2019-07-16 20:17:39 +00:00
2019-07-16 20:20:18 +00:00
## convert to audio
2019-07-16 20:17:39 +00:00
```sh
./playtzx -voc -freq 22050 <diskfile>.cdt diskaudio.voc
ffmpeg -i diskaudio.voc diskaudio.ogg
```
if ogg isn't high enough resolution you can convert to wav instead
2019-07-16 20:20:18 +00:00
(optional) trim silence of the audio file
2019-07-16 20:17:39 +00:00
```sh
mp3splt -r diskaudio.ogg
```