Timeline for What are the command line options for afconvert?
Current License: CC BY-SA 4.0
14 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| S Aug 19, 2024 at 20:42 | history | suggested | enharmonic | CC BY-SA 4.0 | Added link to extended manual page |
| Aug 19, 2024 at 19:36 | review | Suggested edits | |||
| S Aug 19, 2024 at 20:42 | |||||
| S Jun 27, 2024 at 1:02 | history | suggested | Dan Pritts | CC BY-SA 4.0 | add explanation of raw character opts; add link to question describing codecs in more detail |
| Jun 26, 2024 at 22:33 | review | Suggested edits | |||
| S Jun 27, 2024 at 1:02 | |||||
| Feb 2, 2024 at 17:07 | comment | added | porg | @esaruoho Put the whole alias value in quotes and escape the dollar symbols with a backslash: alias 2wav="afconvert -f WAVE -d LEI32 \$1 \$1.wav". | |
| Dec 11, 2022 at 5:44 | comment | added | Jadent | To convert a whole folder of files at once you can use something like the following: for f in *.aif ; do afconvert -f WAVE -d LEI32 "$f" -o "${f%.aif}.wav"; done | |
| Nov 21, 2020 at 22:07 | comment | added | esaruoho | Thanks @Nic much appreciated, seemed to work!! | |
| Nov 21, 2020 at 20:11 | comment | added | Nic | @esaruoho Try a shell function instead. 2wav() { afconvert -f WAVE -d LEI32 ${1} ${1}.wav ; } | |
| Nov 21, 2020 at 19:48 | comment | added | esaruoho | Thank you! I tried making this into an alias, (the .m4a to .wav conversion), but wasn't able to. I keep getting "unknown error occurred" :O alias 2wav='afconvert -f WAVE -d LEI32 $1 $1.wav' | |
| Aug 1, 2019 at 3:44 | vote | accept | Nic | ||
| Jul 30, 2019 at 15:27 | history | edited | Nic | CC BY-SA 4.0 | Fix typo |
| Jul 30, 2019 at 4:25 | history | edited | Nic | CC BY-SA 4.0 | fix FLAC example |
| Jul 30, 2019 at 4:11 | history | edited | Nic | CC BY-SA 4.0 | add links to highlight high profile/modern compression codecs |
| Jul 30, 2019 at 3:43 | history | answered | Nic | CC BY-SA 4.0 |