Sponsored Content
Operating Systems Linux Slackware Can't play sound files with aplay or cat to /dev/dsp Post 302479354 by Corona688 on Friday 10th of December 2010 11:25:39 AM
Old 12-10-2010
Code:
snd_pcm_oss
...
snd_mixer_oss

Using the kernel's built-in OSS emulation for ALSA will let anything that uses OSS devices hog the raw sound device in the old-fashioned OSS way. You might want to disable that in the kernel and use ALSA's alsa-oss compatibility library instead.
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

is there kind of good utility that convert make files to dsp?

Hello all im looking for some kind of utility that convert make files to dsp files is there any kind of tool/script that does this job? thanks (1 Reply)
Discussion started by: umen
1 Replies

2. Linux

fedora: problem to play mp3 files.

hi friends. i have tried all above option to play mp3 files but i am not able to listen mp3 files. i have tried above option using yum like $ su - # yum install gstreamer-plugins-bad gstreamer-plugins-ugly gstreamer-ffmpeg i got a error like Loaded plugins: refresh-packagekit Could... (5 Replies)
Discussion started by: praneshmishra08
5 Replies

3. UNIX for Dummies Questions & Answers

cat /dev/null

Hi, Excuse my ignorance here - I'm a networks man and my knowledge of all things unix is somewhat limited. We have a very large file (/var/tmp/mond.log) that we need to zero - does the "cat /dev/null > /var/tmp/mond.log" command achieve this? (4 Replies)
Discussion started by: freakydancer
4 Replies

4. Linux

Can not play sound in Linux RHEL5.

Hi All, Recently I installed Linux RHEL5 on my machine. It seems that I can not play sound on RHEL5. I have real player installed along with RHEL5 but, when I try to play any song, the error message comes up saying "Can not open the audio device.Another application may be using it." Does any... (2 Replies)
Discussion started by: gydave
2 Replies

5. Shell Programming and Scripting

Error output of cat to /dev/null

Hello, I'm trying to send the error output of a 'cat' operation to /dev/null like this: cat /dirA/dirB/temp*.log > /dirA/dirB/final.log 2>/dev/null This works perfectly in a terminal, but not when placed in a script. If there are no files matching temp*.log the script outputs an error... (7 Replies)
Discussion started by: Nils88
7 Replies

6. Shell Programming and Scripting

Play sound

hi i want to produce digit sounds.for ex: if my input text is four five six then code should able to produce sounds corresponding to digits which are stored in some directory as four.wav,five.wav etc.Please help me (8 Replies)
Discussion started by: sreejithalokkan
8 Replies

7. Debian

How to play avi files Raspberry Pi?

Raspberry Pi B 2014-01-07 Raspbian fully up to date. Installed and configured motion for surveillance. It works just fine and creates .avi files and .jpeg. Installed Mplayer trying to run it from desktop was not successful. I did try to do a command line by executing sudo mplayer... (6 Replies)
Discussion started by: oldcity
6 Replies

8. Windows & DOS: Issues & Discussions

How to play video files one after the other continously?

Hi, There are many MP4 files in a folder say 50 files . All these files are video clipping files.Instead of playing the video one by one , is it possible to play all video clipping files into single shot ? Say for example when i play one video file it gets over after sometime and to view... (5 Replies)
Discussion started by: Maddy123
5 Replies

9. UNIX for Advanced & Expert Users

Cmd 'cat /dev/urandom' not closing cleanly

Hi I'm running the following command to generate a random password in a KSH script on a RHEL Linux VM but for some reason the cmd is not being closed and it's causing problems on the host. PASSWORD="$(cat /dev/urandom | tr -dc "a-zA-Z0-9" | fold -w 16 | head -1)Aa0!" The code worked as... (2 Replies)
Discussion started by: user052009
2 Replies
ADPLAY(1)							   User Commands							 ADPLAY(1)

NAME
adplay - AdPlay/UNIX console-based OPL2 audio player SYNOPSIS
adplay [OPTION]... FILE... DESCRIPTION
AdPlay/UNIX is AdPlug's UNIX console-based frontend. It tries to play back all given FILEs, using one of many available output mechanisms. AdPlay/UNIX plays endlessly, if only one file is given. With multiple files, it plays them in a sequence and exits after the last file. The same can also be accomplished with only one file, by using the -o option. When using the disk writer, -o is implied. EXIT STATUS
adplay returns 0 on successful operation. 1 is returned otherwise. OUTPUT MECHANISMS
AdPlay/UNIX can play back using many different output mechanisms, which can be selected with the -O argument. The availability of a method depends on compile-time settings. Available methods are printed out after the help text, displayed with --help. Next is a brief description of all output mechanisms, following their abbreviations: oss -- Open Sound System (OSS) driver This output method is available on most Linux and other UNIX systems. null -- Total silence Discards anything sent to it. It can be useful for testing purposes. disk -- Disk writer Writes its output to a file in Microsoft RIFF WAVE format. esound -- EsounD output Creates a socket connection to an EsounD server and streams the audio to it. qsa -- QNX Sound Architecture (QSA) driver Uses the QNX system's standard output method. sdl -- Simple Directmedia Layer (SDL) driver Uses the SDL library for sound output. The library has a broader platform support than any of the other output methods. Thus, it could be useful on some exotic systems. alsa -- Advanced Linux Sound Architecture (ALSA) driver Uses the standard output method on newer Linux systems. ao -- libao driver Libao is a cross-platform audio library with very broad platform support. Might be useful on systems, where SDL is not available, and gen- erally to do tricky things. OPTIONS
The order of the option commandline parameters is not important, except for the -d option, which always has to be specified after an -O option. Output selection: -O, --output=OUTPUT Specify output mechanism. Available mechanisms depend on compilation settings and are printed on --help output. A reasonable default is automatically selected, based on the availability of the output mechanisms. OSS driver (oss) specific: -d --device=FILE Set sound output device file to FILE. This is /dev/dsp by default. Disk writer (disk) specific: -d --device=FILE Write sound data to FILE. The data is written in Microsoft RIFF WAVE format (little-endian). You can specify a single '-' to write to stdout instead. This option has no default and must be specified when the disk writer is to be used! EsounD output (esound) specific: -d --device=URL Connect to "hostname:port" combination in URL. Example: "myhost.sound.net:1234". The default is "localhost:16001". ALSA driver (alsa) specific: -d --device=DEVICE Set sound output device to DEVICE. This is plughw:0,0 by default. Playback quality: -8, --8bit Use only 8-bit samples for playback. --16bit Use only 16-bit samples for playback (default). -f, --freq=FREQ Set playback frequency to FREQ, in Hz. This is 44100Hz by default. --stereo Use only stereo samples for playback. The sound stream is just doubled, no further audio processing is done. This option is pretty useless unless you have very obscure audio hardware that only accepts stereo streams. AdPlug only generates mono streams because the OPL2 only generates mono sound. --mono Use only mono samples for playback (default). -b --buffer=SIZE Set sound buffer size to SIZE samples. If you notice sound skipping with the default setting, try a greater buffer size. Note that this is measured in samples, not bytes! This is 2048 samples by default. Only the OSS, SDL, ALSA and libao output drivers support this option. Informative output: -i --instruments Display instrument names (if available). -r --realtime Display realtime playback information, while playing. This will display a one-line status bar, containing essential playback infor- mation. -m --message Display the song message (if available). Playback: -s --subsong=N Play subsong number N, instead of the first subsong. Only useful for file formats that support multiple subsongs. -o --once Play just once, don't loop. This will exit adplay after the song ended. This is the default when multiple FILEs are given. Miscellaneous: -D, --database=FILE Additionally use database file FILE. This option may be specified multiple times. Each database file is additionally merged with the others, creating one large database on the fly. -q, --quiet Be more quiet. -v, --verbose Be more verbose. -h, --help Show summary of options. -V, --version Show version of program. AUTHOR
Simon Peter <dn.tlp@gmx.net> AdPlay/UNIX 1.6 April 29, 2006 ADPLAY(1)
All times are GMT -4. The time now is 12:05 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy