LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   MP3 Cutter (https://www.linuxquestions.org/questions/linux-software-2/mp3-cutter-723261/)

frenchn00b 05-03-2009 12:30 AM

MP3 Cutter
 
Hello,

I am looking for linux an MP3 cutter. I found this but it is for windows :( http://home.hccnet.nl/p.luijer/

best regards

jdkaye 05-03-2009 12:45 AM

Quote:

Originally Posted by frenchn00b (Post 3528202)
Hello,

I am looking for linux an MP3 cutter. I found this but it is for windows :( http://home.hccnet.nl/p.luijer/

best regards

Is this what you're looking for? mp3splt
Quote:

Description: Splits MP3 and Ogg Vorbis files without reencoding
Mp3Splt is a command line utility to split MP3 (VBR supported) and Ogg Vorbis
files into smaller files without decoding. Useful for splitting albums, either
manually, using freedb.org data, or .cue files and for splitting based on
length or on periods of silence in the file.
cheers,
jdk

esoukenka 05-28-2009 12:40 PM

Here is bash script I use it does some extra stuff I like but you can cut out what you want pretty easy. I can run this in any directory to convert all to mp3 then it splits up the file for me which is what you want the syntax and program name are at the bottom. Good luck :)

#! /bin/bash
echo " thanks: http://geekyquotes.blogspot.com/2008/01/linux-convert-real-media-files-to.html"
# if no parameters are passed stay in current directory
if [ "$1" != "" ] ; then
cd "$1"
fi
ls > /tmp/convert_file_list

cat /tmp/convert_file_list |while read line2; do
extension="${line2##*.}"
ORIGINAL_NAME=${line2}
STRIPPED_FILE_NAME=${line2/.$extension/}
shift
MOVED_NAME=$@.${extension}
#echo "strippedfilename:${STRIPPED_FILE_NAME} EXTENSION:${extension} orig_name:${ORIGINAL_NAME}"
#mplayer -quiet -vo null -vc dummy -ao pcm:file="$1.wav" "$1.$2"
if [ "$extension" != "wav" ] ; then
mplayer -vo null -vc dummy -ao pcm:file="${STRIPPED_FILE_NAME}.wav" "${ORIGINAL_NAME}" < /dev/null > /dev/null 2>&1 &
sleep 1
fi
lame "${STRIPPED_FILE_NAME}.wav" "${STRIPPED_FILE_NAME}.mp3"
sleep 1
mkdir -p mp3_output
mv *.mp3 mp3_output
cd mp3_output
mpgtx -5 "${STRIPPED_FILE_NAME}.mp3" -b "${STRIPPED_FILE_NAME}"
#rm "${STRIPPED_FILE_NAME}.wav"
done

++nick++ 10-18-2009 01:41 AM

Hi,
Will try out mp3splt
Thanks.

frenchn00b 11-06-2009 03:19 PM

One with GTK:

screenshots:http://mp3splt.sourceforge.net/mp3sp...creenshots.php

thsi program is terrificlly good and great !! give a try, it is in the DEbian repositories !

here a screenshot:
http://img258.imageshack.us/i/mp3splitlinux.jpg/


All times are GMT -5. The time now is 04:26 AM.