sox-users@lists.sourceforge.net unofficial mirror
 help / color / mirror / code / Atom feed
From: fmiser <fmiser@gmail.com>
To: sox-users@lists.sourceforge.net
Subject: Re: Using sox as an alternative to mp3wrap to losslessly concat a dir full of mp3s?
Date: Wed, 19 Jul 2017 16:54:17 -0500	[thread overview]
Message-ID: <20170719165417.7edbccee@Daniel> (raw)
In-Reply-To: <CAEebyNUM=DUqL4WfAFnY07FT=MYivnW8mvbPrv=UhdL419DbUg@mail.gmail.com>

> Jonathan wrote:

> I wanted to combine all mp3 files into one in each directory
> using Ubuntu command line.
> 
> I started using a thing called MP3Wrap
> (https://sourceforge.net/projects/mp3wrap/)

> except it turns out to horribly break id3 tags, doesn't
> recognise vbr properly etc.
> 
> Is there are way of losslessly concatenating mp3 files with sox,
> or is it a job for another tool?

SoX decodes as the first step - so it will not losslessly
concatenate MP3 files.

ffmeg can do it, though.  Something like:
ffmpeg -i "concat:file1.mp3|file2.mp3" -c copy output.mp3

or create a text file with one source file per line like this:
file '/path/to/file1'
file '/path/to/file2'
file '/path/to/file3'

 and this command:
ffmpeg -i list-of-files.text -c copy output.mp3

> (The ability to unwrap the combined mp3 into individual files
> isn't a requirement, but it would be a nice thing if possible!)

If you document the timing (length) of the source files, mp3split
should be able to be used to separate them again.  But it is not a
built-in feature like it is with mp3wrap.

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Sox-users mailing list
Sox-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sox-users

      parent reply	other threads:[~2017-07-19 21:54 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-07-18 20:52 Using sox as an alternative to mp3wrap to losslessly concat a dir full of mp3s? Jonathan H
2017-07-19 11:48 ` Jeremy Nicoll - ml sox users
2017-07-19 12:27   ` Måns Rullgård
2017-07-19 21:54 ` fmiser [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://lists.sourceforge.net/lists/listinfo/sox-users

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170719165417.7edbccee@Daniel \
    --to=sox-users@lists.sourceforge.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/sox.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).