voctool/README.md

38 lines
1.1 KiB
Markdown

[![Build Status](https://drone.home.deadbsd.org/api/badges/falso/voctool/status.svg)](https://drone.home.deadbsd.org/falso/voctool)
# Original Lost Eden VOC file
```
Voc { type: ASCII, size: 536 }
Voc { type: SoundData, size: 234941, sample_rate: 11111, audio_format: Pcm8BitUnsigned }
Voc { type: Terminator, size: 0 }
```
# VOC file created with sox
`sox pestaninhas.mp3 -r 11111 -b 8 pest.voc`
```
Voc { type: SoundData, size: 153252, sample_rate: 11111, audio_format: Pcm8BitUnsigned }
Voc { type: Terminator, size: 0 }
```
# VOC file created with ffmpeg
`ffmpeg -i untitled.wav -ar 11111 -f s8 aids.voc`
```
Voc { type: SoundData, size: 487, sample_rate: 11111, audio_format: Pcm8BitUnsigned }
Voc { type: SoundContinue, size: 500 }
Voc { type: SoundContinue, size: 501 }
Voc { type: SoundContinue, size: 500 }
Voc { type: SoundContinue, size: 501 }
Voc { type: SoundContinue, size: 501 }
...
...
Voc { type: SoundContinue, size: 500 }
Voc { type: SoundContinue, size: 160 }
Voc { type: SoundContinue, size: 17 }
Voc { type: Terminator, size: 0 }
Found block type 0. Exiting
```