Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mvexel/osm-audio-tools
A tiny collection of tools that are useful for audio mapping
https://github.com/mvexel/osm-audio-tools
Last synced: 24 days ago
JSON representation
A tiny collection of tools that are useful for audio mapping
- Host: GitHub
- URL: https://github.com/mvexel/osm-audio-tools
- Owner: mvexel
- License: other
- Created: 2015-10-20T23:37:58.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-21T00:06:20.000Z (about 9 years ago)
- Last Synced: 2024-10-21T23:08:34.056Z (2 months ago)
- Language: Python
- Size: 137 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# osm-audio-tools
A tiny collection of tools that are useful for audio mapping. So tiny that there is just one tool right now.
## mp3towav
Many cheaper digital audio recorders can only write MP3 files. JOSM's audio mapping funcion only takes WAV files. This little tool bridges that gap.
```
mp3towav converts a directory of MP3 files to WAV preserving the
timestamp. Uses (and thus requires) mpg123.
Give it a source directory and a destination directory and it will
convert all .mp3 files in the source directory to .wav files in the
destination directory. The original modification date/time will be
preserved. Optionally give it an offset (in seconds, can be negative,
say -10) and it will offset the timestamp of the output files by that
amount. (Useful for audio recorders and GPS trackers that are slightly
out of sync, a common challenge.)Usage:
mp3towav.py source_path destination_path [offset]
```