Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/einenlum/timetraveler
Bash script to make sox batch processing
https://github.com/einenlum/timetraveler
Last synced: 23 days ago
JSON representation
Bash script to make sox batch processing
- Host: GitHub
- URL: https://github.com/einenlum/timetraveler
- Owner: Einenlum
- License: mit
- Created: 2014-02-28T11:57:31.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-07-02T09:02:22.000Z (over 10 years ago)
- Last Synced: 2024-12-24T00:15:35.595Z (about 1 month ago)
- Language: Shell
- Size: 180 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Time Traveler
=============Time Traveler is a bash script designed to change the tempo of mp3 files (changing the speed without changeng the pitch) in batch mode.
When processing a directory it looks for mp3 files in it. If it finds some, it creates a *TempoFiles* subdirectory and puts in it the copy of the mp3 files with changed tempo.
Needed Configuration
--------------------The script was tested on Ubuntu but should work on pretty much every GNU/Linux distribution.
On Ubuntu it has two dependencies:
* sox
* libsox-fmt-mp3Usage
-----
The script must be set executable withchmod +x timeTraveler.sh
Then it can be used in the current directory or it can process another directory given as parameter.### Syntax
./timeTraveler.sh tempoFactor [directory]
The tempoFactor must be a real positive number.####Examples
This line will reduce by 10% the tempo of all mp3 files in the current directory:
./timeTraveler.sh 0.9
This line will increase by 40% the tempo of all mp3 files in *~/Podcasts*:./timeTraveler.sh 1.40 ~/Podcasts