Como juntar arquivos MP3? [duplicado]

5

Motivação

Estou à procura de um programa que me permita juntar muitos arquivos mp3 (um livro de áudio) a um único arquivo mp3 grande. Meu mp3 player é capaz de lembrar a posição dentro de uma faixa, mas leva um tempo para reorganizar o banco de dados se houver muitos arquivos.

Já tentou

Eu tentei alguns programas (Wave Pad Sound Editor, Audacity), mas com isso tudo é feito dentro de uma GUI com muita ação manual.

Pergunta

Alguém conhece um programa que faz essa mesclagem como um processo em lote, ou pelo menos sem muita interação?

EDIT: Estou apenas à procura de freeware.

EDIT: O software deve ser executado no Windows XP.

    
por tangens 07.11.2009 / 18:02

5 respostas

8

Duas marcadoras de MP3 recomendadas:

MakeitOne

MakeitOne MP3 Album Maker outshines other joiners for its ability to join the MP3 files and unpack them back to their original state. In either way, the program is a lightning fast mp3 joiner and unpacker that accepts large files.

The MP3 files packed by the program can be played on any MP3 players. It features drag-and-drop files for ease of use and includes a tagging function allowing for adding tags (artist and album title) and the album art to the joined files.

On the downside, it does not support other audio formats than the MP3.

Joiner de áudio do Shuangs

Shuangs Audio Joiner takes three simple steps to join audio files, Add files in the list, Select Output Format, and Join the files, straight forward, easy to use and effective.

Users are allowed to join MP3, WMA and WAV format files with the program. The MP3 files can be joined using a bitrate ranging from 32 to 320 kbps while WMA files using a bitrate ranging from 48 to 160 kbps.

The user interface shows a small ad panel linking to the developer's homepage but it is not intrusive.

    
por 07.11.2009 / 18:20
4

Mp3Wrap :

Mp3Wrap is a free independent alternative to AlbumWrap. It's a command-line utility that wraps quickly two or more mp3 files in one single large playable mp3, without losing filenames and ID3 informations (and without need of decoding/encoding). Also with the possibility of including other non mp3 files, such as PlayLists, info files, cover images, inside the mp3. This means that you obtain a large mp3 that you can split in any moment just using mp3splt and in few seconds you have all original files again! It's useful because files created with Mp3Wrap are easy to download. Infact who downloads has not to know each single song name and easy to play and even if you don't have mp3splt to split file, you can listen to it anyway.

    
por 07.11.2009 / 18:27
2

Você pode fazer isso de forma programática com ffmpeg 's demuxer de concat .

Primeiro, crie um arquivo chamado inputs.txt com linhas como

file '/path/to/input1.mp3'
file '/path/to/input2.mp3'
file '/path/to/input3.mp3'

... etc. Em seguida, execute o seguinte comando ffmpeg:

ffmpeg -f concat -i inputs.txt -c copy output.mp3

É possível gerar inputs.txt facilmente com um loop bash para (isso provavelmente também pode ser feito com um loop de lote do Windows), supondo que você queira mesclar os arquivos em ordem alfabética

for f in ./*.mp3; do echo "file '$f'" >> inputs.txt; done
    
por 17.04.2013 / 17:17
1

Fiz uma rápida pesquisa no Google e este pode resolver o problema. Eu não tentei, porém, como eu não estou em uma compilação do Windows atualmente.

    
por 07.11.2009 / 18:09
1

bonkencode pode ser o que você está procurando - você seleciona a lista de arquivos que deseja, ordena, escolhe codificar como um arquivo e aperte um botão. Além disso, também faz ripagem e conversão para uma carga de formatos

    
por 08.11.2009 / 03:59