⇤ ← Revision 1 as of 2019-09-15 13:50:32
Size: 1119
Comment: merge Ogg page
|
Size: 1567
Comment: merge info from mp3
|
Deletions are marked like this. | Additions are marked like this. |
Line 21: | Line 21: |
== mp3 == . '''[[WikiPedia:MP3|MP3]]''' is an audio coding format for digital audio. MP3 is a widely supported, lossy audio compression format with a lower compression ratio than Ogg. * Convert a mp3 to an audio [[CDDVD|CD]] track with [[DebianPkg:mpg321]]: {{{mpg321 --cdr my_track.cdr my_track.mp3}}} * Convert all mp3 files to CD tracks: {{{=1; for f in *.mp3; do mpg321 --cdr /tmp/$(printf %02d.cdr $i) "$f"; let i++; done}}} |
Translation(s): none
This page describes some audio formats and how to use them in Debian
Ogg
Ogg is a free, open container format maintained by the Xiph.Org Foundation. It is unrestricted by software patents and designed to provide for efficient streaming and manipulation of high-quality digital multimedia. The Ogg container format can multiplex a number of independent streams for audio, video, text (such as subtitles), and metadata.
Many programs in Debian support Ogg playback/recording. Use vorbis-tools for command line manipulation of Ogg files.
Ogg can encapsulate various audio and video formats: ?Vorbis, ?FLAC, ?Speex, ?CELT, ?Theora, ?Dirac...
mp3
MP3 is an audio coding format for digital audio.
MP3 is a widely supported, lossy audio compression format with a lower compression ratio than Ogg.
Convert a mp3 to an audio CD track with mpg321: mpg321 --cdr my_track.cdr my_track.mp3
Convert all mp3 files to CD tracks: =1; for f in *.mp3; do mpg321 --cdr /tmp/$(printf %02d.cdr $i) "$f"; let i++; done