Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

arecord, convert: edit pages #12644

Merged
merged 14 commits into from May 20, 2024
Merged
4 changes: 2 additions & 2 deletions pages/common/convert.md
Expand Up @@ -16,9 +16,9 @@

`convert {{path/to/input_image.png}} -resize 640x480 {{path/to/output_image.png}}`

- Horizontally append images:
- Scalte an image to have a certain filesize:
TheFibonacciEffect marked this conversation as resolved.
Show resolved Hide resolved

`convert {{path/to/image1.png path/to/image2.png ...}} +append {{path/to/output_image.png}}`
`convert {{path/to/input_image.png}} -define jpeg:extent=512kb {{path/to/output_image.jpg}}`

- Vertically append images:
kbdharun marked this conversation as resolved.
Show resolved Hide resolved

Expand Down
4 changes: 4 additions & 0 deletions pages/linux/arecord.md
Expand Up @@ -22,3 +22,7 @@
- Allow interactive interface (e.g. use space-bar or enter to play or pause):

`arecord --interactive`

- Test your microphone:

`arecord -d 5 test-mic.wav && aplay test-mic.wav && rm test-mic.wav`
kbdharun marked this conversation as resolved.
Show resolved Hide resolved
kbdharun marked this conversation as resolved.
Show resolved Hide resolved