* [gentoo-user] Joiniong of mp3-files without decoding them (comletely) ???
@ 2009-08-07 2:53 meino.cramer
2009-08-07 3:02 ` [gentoo-user] " Nikos Chantziaras
2009-08-07 4:46 ` [gentoo-user] " Paul Hartman
0 siblings, 2 replies; 5+ messages in thread
From: meino.cramer @ 2009-08-07 2:53 UTC (permalink / raw
To: Gentoo
Hi,
is there a tool available via Gentoo portage/emerge, whith which
I can concatenate/join mp3-files without decoding them completely
before or by only decoding the miliseconds before and after the
joining point ?
Thank you very much for any help in advance!
Kind regards,
Meino Cramer
--
Please don't send me any Word- or Powerpoint-Attachments
unless it's absolutely neccessary. - Send simply Text.
See http://www.gnu.org/philosophy/no-word-attachments.html
In a world without fences and walls nobody needs gates and windows.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-user] Re: Joiniong of mp3-files without decoding them (comletely) ???
2009-08-07 2:53 [gentoo-user] Joiniong of mp3-files without decoding them (comletely) ??? meino.cramer
@ 2009-08-07 3:02 ` Nikos Chantziaras
2009-08-07 3:10 ` Nikos Chantziaras
2009-08-07 3:15 ` meino.cramer
2009-08-07 4:46 ` [gentoo-user] " Paul Hartman
1 sibling, 2 replies; 5+ messages in thread
From: Nikos Chantziaras @ 2009-08-07 3:02 UTC (permalink / raw
To: gentoo-user
On 08/07/2009 05:53 AM, meino.cramer@gmx.de wrote:
>
> Hi,
>
> is there a tool available via Gentoo portage/emerge, whith which
> I can concatenate/join mp3-files without decoding them completely
> before or by only decoding the miliseconds before and after the
> joining point ?
You can simply cat them together:
cat 1.mp3 2.mp3 > joined.mp3
This will result in joined.mp3 being a bit-perfect concatenation of
1.mp3 and 2.mp3.
You can also do this with *.ogg (Ogg Vorbis audio) files. The file
format of mp3 and ogg and designed to make this possible.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-user] Re: Joiniong of mp3-files without decoding them (comletely) ???
2009-08-07 3:02 ` [gentoo-user] " Nikos Chantziaras
@ 2009-08-07 3:10 ` Nikos Chantziaras
2009-08-07 3:15 ` meino.cramer
1 sibling, 0 replies; 5+ messages in thread
From: Nikos Chantziaras @ 2009-08-07 3:10 UTC (permalink / raw
To: gentoo-user
On 08/07/2009 06:02 AM, Nikos Chantziaras wrote:
>[...]
> cat 1.mp3 2.mp3 > joined.mp3
>
> This will result in joined.mp3 being a bit-perfect concatenation of
> 1.mp3 and 2.mp3.
I forgot to mention that you should strip the id3 tags from the files
first (or else there might be some noise at the spot where the id3 tag
of the previous file resides in players that can not handle tags in the
middle of the stream; iPods for example.)
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-user] Re: Joiniong of mp3-files without decoding them (comletely) ???
2009-08-07 3:02 ` [gentoo-user] " Nikos Chantziaras
2009-08-07 3:10 ` Nikos Chantziaras
@ 2009-08-07 3:15 ` meino.cramer
1 sibling, 0 replies; 5+ messages in thread
From: meino.cramer @ 2009-08-07 3:15 UTC (permalink / raw
To: gentoo-user
Hi Nikos !
...thanks a lot for you help ! :)
This was my first attempt also...but what happens to the
ID3tags? Doesn't the resulting file looks like this afterwards
<id3tag><mp3data><id3tag><mp3data>
?
Nikos Chantziaras <realnc@arcor.de> [09-08-07 05:05]:
> On 08/07/2009 05:53 AM, meino.cramer@gmx.de wrote:
> >
> >Hi,
> >
> > is there a tool available via Gentoo portage/emerge, whith which
> > I can concatenate/join mp3-files without decoding them completely
> > before or by only decoding the miliseconds before and after the
> > joining point ?
>
> You can simply cat them together:
>
> cat 1.mp3 2.mp3 > joined.mp3
>
> This will result in joined.mp3 being a bit-perfect concatenation of
> 1.mp3 and 2.mp3.
>
> You can also do this with *.ogg (Ogg Vorbis audio) files. The file
> format of mp3 and ogg and designed to make this possible.
>
--
Please don't send me any Word- or Powerpoint-Attachments
unless it's absolutely neccessary. - Send simply Text.
See http://www.gnu.org/philosophy/no-word-attachments.html
In a world without fences and walls nobody needs gates and windows.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-user] Joiniong of mp3-files without decoding them (comletely) ???
2009-08-07 2:53 [gentoo-user] Joiniong of mp3-files without decoding them (comletely) ??? meino.cramer
2009-08-07 3:02 ` [gentoo-user] " Nikos Chantziaras
@ 2009-08-07 4:46 ` Paul Hartman
1 sibling, 0 replies; 5+ messages in thread
From: Paul Hartman @ 2009-08-07 4:46 UTC (permalink / raw
To: gentoo-user
On Thu, Aug 6, 2009 at 9:53 PM, <meino.cramer@gmx.de> wrote:
>
> Hi,
>
> is there a tool available via Gentoo portage/emerge, whith which
> I can concatenate/join mp3-files without decoding them completely
> before or by only decoding the miliseconds before and after the
> joining point ?
check out media-sound/mp3wrap
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2009-08-07 4:46 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-07 2:53 [gentoo-user] Joiniong of mp3-files without decoding them (comletely) ??? meino.cramer
2009-08-07 3:02 ` [gentoo-user] " Nikos Chantziaras
2009-08-07 3:10 ` Nikos Chantziaras
2009-08-07 3:15 ` meino.cramer
2009-08-07 4:46 ` [gentoo-user] " Paul Hartman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox