author | Oleksandr Gavenko <gavenkoa@gmail.com> |
Sun, 15 Jul 2012 14:50:25 +0300 | |
changeset 1345 | a1dffeaaf6e4 |
parent 1334 | 9bf0d5a1f0cf |
child 1350 | 69dff9ee90aa |
permissions | -rw-r--r-- |
1192 | 1 |
.. -*- coding: utf-8; -*- |
1334
9bf0d5a1f0cf
Include common header with quick links.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1192
diff
changeset
|
2 |
.. include:: HEADER.rst |
1192 | 3 |
|
4 |
======== |
|
5 |
Audio. |
|
6 |
======== |
|
7 |
.. contents:: |
|
8 |
||
9 |
Sound in Debian. |
|
10 |
================ |
|
11 |
||
12 |
* http://wiki.debian.org/ALSA |
|
13 |
* http://wiki.debian.org/SoundFAQ |
|
14 |
||
15 |
Suitable convertors? |
|
16 |
==================== |
|
17 |
:: |
|
18 |
||
19 |
$ sudo apt-get install ffmpeg |
|
20 |
||
21 |
or:: |
|
22 |
||
23 |
$ sudo apt-get install sox |
|
24 |
||
25 |
List of sox supported format. |
|
26 |
============================= |
|
27 |
||
28 |
See sox(1). |
|
29 |
||
30 |
List of ffmpeg supported format. |
|
31 |
================================ |
|
32 |
:: |
|
33 |
||
34 |
$ ffmpeg -formats |
|
35 |
||
36 |
How convert amr to ogg/mp3? |
|
37 |
=========================== |
|
38 |
||
39 |
TODO |
|
40 |
||
41 |
How easy convert between mp3/wav/ogg? |
|
42 |
===================================== |
|
43 |
:: |
|
44 |
||
45 |
$ sox in.mp3 out.ogg |
|
46 |
$ sox in.ogg out.wav |
|
47 |
... etc |
|
48 |
||
49 |
How convert flac to mp3? |
|
50 |
======================== |
|
51 |
:: |
|
52 |
||
53 |
$ flac -c -d $file.flac | lame -m j -q 0 -V 0 -s 44.1 - $file.mp3 |
|
54 |
||
55 |
How convert wma to mp3? |
|
56 |
======================= |
|
57 |
:: |
|
58 |
||
59 |
$ mplayer -vo null -vc dummy -af resample=44100 -ao pcm:waveheader $file.wma |
|
60 |
$ lame -m s audiodump.wav -o "$file.mp3 |
|
61 |
$ rm audiodump.wav |
|
62 |
||
63 |
How convert m4a to mp3? |
|
64 |
======================= |
|
65 |
:: |
|
66 |
||
67 |
$ faad -o - $file.m4a | lame -V 0 - $file.mp3 |
|
68 |
||
69 |
How split mp3/ogg files? |
|
70 |
======================== |
|
71 |
||
72 |
Split mp3 and ogg files:: |
|
73 |
||
74 |
$ mp3splt |
|
75 |
||
76 |
See:: |
|
77 |
||
78 |
http://mp3splt.sourceforge.net/mp3splt_page/home.php |
|
79 |
home page |