How to Cut MP3 files under Ubuntu
Posted by admin on April 24th, 2008
Email This Post
Install poc streamer package using the following command
sudo apt-get install poc-streamer
This will complete the installation.
Using mp3cut
It contains a utility mp3cut
mp3cut Syntax
mp3cut [ -o outputfile ] [ -T title ] [ -A artist ] [ -N album-name ] [ -t [hh:]mm:ss[+ms]-[hh:]mm:ss[+ms] ] mp3file [[ -t … ] mp3file1 …]
mp3cut examples
The following examples cuts a 120 minute MP3 in 2 parts where the first file will be 70 min long
$ mp3cut -o output1.mp3 -t 00:00+000-01:10:00+000 input.mp3
Writing to output1.mp3
Extracting 00:00:00+000-01:10:00+000 from input.mp3
output1.mp3 written
.
$ mp3cut -o output2.mp3 -t 01:10:00+000 input.mp3
Writing to output2.mp3
Extracting 01:10:00+000-00:00:00+000 from input.mp3
output2.mp3 written
If you want to be notified the next time we write something please subscribe to our RSS feed.Thanks for Visiting!

