Size: 38
Comment:
|
Size: 595
Comment: use interwiki for wikipedia
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
See http://en.wikipedia.org/wiki/mp3 | #language en ~-[[DebianWiki/EditorGuide#translation|Translation(s)]]: none-~ ---- . '''[[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]]. == Useful commands == * 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}}} ---- CategorySound | CategoryFileFormat |
Translation(s): none
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.
Useful commands
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