linux/a*, cp: add German translation (#6777)

This commit is contained in:
MeerBiene
2021-10-12 14:01:48 +02:00
committed by GitHub
parent 92558e2eb0
commit fb5e4b8305
24 changed files with 500 additions and 0 deletions

24
pages.de/linux/arecord.md Normal file
View File

@@ -0,0 +1,24 @@
# arecord
> Sound Recorder für den ALSA Soundkarten Treiber.
> Mehr Informationen: <https://manned.org/arecord>.
- Nehme einen Schnipsel in "CD" Qualität auf (beende die Aufnahme mit CTRL-C):
`arecord -vv --format=cd {{pfad/zur/datei.wav}}`
- Nehme einen Schnipsel in "CD" Qualität auf mit einer festen Länge von 10 Sekunden:
`arecord -vv --format=cd --duration={{10}} {{pfad/zur/datei.wav}}`
- Nehme einen Schnipsel auf und speichere es als MP3 (beende die Aufnahme mit CTRL-C):
`arecord -vv --format=cd --file-type raw | lame -r - {{path/to/file.mp3}}`
- Liste alle Soundkarten und digitalen Ausgabe Geräte:
`arecord --list-devices`
- Benutze das interaktive Interface (z.B. Space oder Enter für Play oder Pause):
`arecord --interactive`