aplay command in Linux with examples Last Updated : 05 Mar, 2019 Comments Improve Suggest changes Like Article Like Report aplay is a command-line audio player for ALSA(Advanced Linux Sound Architecture) sound card drivers. It supports several file formats and multiple soundcards with multiple devices. It is basically used to play audio on command-line interface. aplay is much the same as arecord only it plays instead of recording. For supported soundfile formats, the sampling rate, bit depth, and so forth can be automatically determined from the soundfile header. Syntax: aplay [flags] [filename [filename]] ... If filename not specified uses Standard output. Options: -h, --help : Show the help information. --version : Print current version. -l, --list-devices : List all soundcards and digital audio devices. -L, --list-pcms : List all PCMs(Pulse Code Modulation) defined. -D, --device=NAME : Select PCM by name. -q --quiet : Quiet mode. Suppress messages (not sound :)). -t, --file-type TYPE : File type (voc, wav, raw or au). If this parameter is omitted the WAVE format is used. -c, --channels=# : The number of channels. The default is one channel. Valid values are 1 through 32. -f --format=FORMAT : If no format is given U8 is used. -r, --rate=# : Sampling rate in Hertz. The default rate is 8000 Hertz. -d, --duration=# : Interrupt after # seconds. -s, --sleep-min=# : Min ticks to sleep. The default is not to sleep. -M, --mmap : Use memory-mapped (mmap) I/O mode for the audio stream. If this option is not set, the read/write I/O mode will be used. -N, --nonblock : Open the audio device in non-blocking mode.If the device is busy the program will exit immediately. Note: This command contain various other options that we normally don't need. If you want to know more about you can simply run following command on your terminal. aplay --help Recognized sample formats are: S8 U8 S16_LE S16_BE U16_LE U16_BE S24_LE S24_BE U24_LE U24_BE S32_LE S32_BE U32_LE U32_BE FLOAT_LE FLOAT_BE FLOAT64_LE FLOAT64_BE IEC958_SUBFRAME_LE IEC958_SUBFRAME_BE MU_LAW A_LAW IMA_ADPCM MPEG GSM SPECIAL S24_3LE S24_3BE U24_3LE U24_3BE S20_3LE S20_3BE U20_3LE U20_3BE S18_3LE S18_3BE U18_3LE U18_3BE G723_24 G723_24_1B G723_40 G723_40_1B DSD_U8 DSD_U16_LE DSD_U32_LE DSD_U16_BE DSD_U32_BE Note: Some of these may not be available on selected hardware. Examples: Plays audio for only 10 secs at 2500hz frequency. Plays full audio clip at 2500hz frezuency. Display version information. Comment More infoAdvertise with us V VivekAgrawal3 Follow Improve Article Tags : Linux-Unix Similar Reads Linux Commands Linux commands are essential for controlling and managing the system through the terminal. This terminal is similar to the command prompt in Windows. Itâs important to note that Linux/Unix commands are case-sensitive. These commands are used for tasks like file handling, process management, user adm 15+ min read access command in linux with examples The 'access' command in Linux is a system call used to determine whether the calling process has access to a specified file or directory. This function is useful for checking file permissions, including whether a file exists, and if it can be read, written, or executed by the process. The check is p 5 min read accton command in Linux with Examples 'accton' is one of important Linux/Unix command which is used by the administrator to monitor user activities. It is used to turn on or turn off the process for accounting or change the info process accounting file. When the command is run in the terminal without any argument, it stops the process a 2 min read aclocal command in Linux with Examples aclocal command in Linux is used to automatically generate 'aclocal.m4' files from configure.in file. automake in Linux contain a lot of autoconf macros that can be used in the different packages. These macros must be defined in the aclocal.m4. If not, then it canât be accessed by the autoconf.The a 3 min read ACPI command in Linux with examples ACPI is the command in Linux that helps the users in managing power settings. It also helps in monitoring the hardware status efficiently. It facilitates with providing essential information such as battery health, CPU temperatures, and fan speeds, providing support in system maintenance and perform 4 min read acpi_available command in Linux with examples acpi_available is a command in Linux that tests whether the ACPI (Advanced Configuration and Power Interface) subsystem is available or not. Syntax$ acpi_availableReturn Statuses of acpi_availableThe command returns one of three possible statuses:Status 0: Indicates that the ACPI subsystem is availa 2 min read acpid command in Linux with Examples The acpid daemon provides intelligent power management on a system and allows to query battery and configuration status by supporting the Advanced Configuration and Power Interface (ACPI). The ACPI events are notified to the user-space programs by acpid. The ACPI (Advanced Configuration and Power In 3 min read addr2line command in Linux with Examples 'addr2line' command in Linux is used to convert addresses into file names and line numbers. When the executable files/object files are run with the 'objdump' command, the file is de-assembled and the machine code is displayed. These machine instructions for the executable are displayed along with th 4 min read agetty command in Linux with Examples agetty is a Linux version of getty. getty short for "get tty" is a Unix program running on a host computer that manages physical or virtual terminals to allow multi-user access. Linux provides a virtual terminal(tty) which is similar to the regular Linux terminal. agetty command opens a virtual term 4 min read How to Create and Use Alias Command in Linux Imagine you're lost in a maze of complicated Linux commands. You stumble upon a secret doorway marked "Alias," and inside you find shortcuts to all your favorite commands! That's what creating aliases is like. You get to make your own mini-commands for the long ones you use all the time, making thin 6 min read Like