If you want to cut MP3 files under Ubuntu,follow this instructions first you need to install poc-streamer package.poc is a suite of MP3 tools and MP3 streaming programs. It can stream MP3s over HTTP, RTP multicast (RFC 2250 and RFC 3119) and a special multicast protocol to enable the use of Forward Error Correction to protect the MP3 stream against packet loss. It can also stream OGGs over HTTP. In addition to the streaming programs, poc contains two MP3 tools: mp3cue and mp3cut. mp3cue can cut a big MP3 file according to a tracklisting contained in a .cue file. mp3cut can split and concatenate MP3 files according to time slices given on the command line. mp3cut cuts MP3 files on ADU (autonomous data units) frames to ensure best quality.
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
How to Cut MP3 files under Ubuntu
Related Posts:
Block websites using Squid Proxy in Ubuntu LinuxYou can block websites using squid proxy with 3 easy steps. First you have to create a text file with blocked domain name list such as orkut.com, gmai… Read More
How toconnect to wireless lan in ubuntuIf your wireless card is properly installed use the following command for connect to a wireless access point sudo ifconfig eth0 down sudo ifconfig wl… Read More
How to Create CDs and DVDs with Menu in Ubuntu 10.10 : DeVeDe DeVeDe is a program to create video DVDs and CDs (VCD, SVCD or CVD), suitable for home players, from any video files in any of the formats supported … Read More
How to install Tomcat 6 on UbuntuIf you are running Ubuntu and want to use the Tomcat servlet runner, Some times the apt will not work correctly. You can try the following method it w… Read More
Install Mozilla Firefox 4 in Ubuntu LinuxIf possible remove the older version first. Now You can start Firefox 4 Installation 1. Open Synaptic Package Manager and add the Firefox PPA to the … Read More
0 comments:
Post a Comment