LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 11-05-2013, 05:15 AM   #16
Germany_chris
Senior Member
 
Registered: Jun 2011
Location: NOVA
Distribution: Debian 12
Posts: 1,071

Rep: Reputation: 497Reputation: 497Reputation: 497Reputation: 497Reputation: 497

did you unmute your speakers and PCM?

amixer sset Master unmute
 
Old 11-05-2013, 09:00 PM   #17
kingbeowulf
Senior Member
 
Registered: Oct 2003
Location: WA
Distribution: Slackware
Posts: 1,266
Blog Entries: 11

Rep: Reputation: 744Reputation: 744Reputation: 744Reputation: 744Reputation: 744Reputation: 744Reputation: 744
Lets start at the beginning.
  1. Make sure you have speakers plugged into the correct audio jack.
  2. Check 'lsmod' to make sure all of your sound modules are loading.
  3. Check 'lspci -k' to see what kernel module is loading.
  4. Is this motherboard chip? Check BIOS!
  5. Are you using the stock kernel or did you "roll your own?"
  6. Are you using a kernel/alsa package that supports you chipset?
  7. Did you make '/etc/rc.d/rc.alsa' executable?
  8. Restore everything to default settings, reboot to CLI, and run alsamixer. Make sure NONE of your audio outputs are muted. Crank up the volume of any that are low.
  9. If you installed pulseaudio, I swear I'll beat you with a stick!
At the very least, alsa should have automagically set up /etc/sound.conf with:
Code:
alias snd-card-0 snd-hda-intel
alias sound-slot-0 snd-hda-intel
You need to make sure you don't have audio modules loaded for which their is no hardware installed. AND you need to make sure snd-hda-intel is the correct module.

While still in the CLI (no KDE etc.), run this (example from my Slack14.0 with CL Audigy):
Code:
$ aplay -L
null
    Discard all samples (playback) or generate zero samples (capture)
default:CARD=Audigy
    SB Audigy 1 [SB0090], ADC Capture/Standard PCM Playback
    Default Audio Device
sysdefault:CARD=Audigy
    SB Audigy 1 [SB0090], ADC Capture/Standard PCM Playback
    Default Audio Device
front:CARD=Audigy,DEV=0
    SB Audigy 1 [SB0090], ADC Capture/Standard PCM Playback
    Front speakers
rear:CARD=Audigy,DEV=0
    SB Audigy 1 [SB0090], ADC Capture/Standard PCM Playback
    Rear speakers
center_lfe:CARD=Audigy,DEV=0
    SB Audigy 1 [SB0090], ADC Capture/Standard PCM Playback
    Center and Subwoofer speakers
surround40:CARD=Audigy,DEV=0
    SB Audigy 1 [SB0090], ADC Capture/Standard PCM Playback
    4.0 Surround output to Front and Rear speakers
surround41:CARD=Audigy,DEV=0
    SB Audigy 1 [SB0090], ADC Capture/Standard PCM Playback
    4.1 Surround output to Front, Rear and Subwoofer speakers
surround50:CARD=Audigy,DEV=0
    SB Audigy 1 [SB0090], ADC Capture/Standard PCM Playback
    5.0 Surround output to Front, Center and Rear speakers
surround51:CARD=Audigy,DEV=0
    SB Audigy 1 [SB0090], ADC Capture/Standard PCM Playback
    5.1 Surround output to Front, Center, Rear and Subwoofer speakers
iec958:CARD=Audigy,DEV=0
    SB Audigy 1 [SB0090], ADC Capture/Standard PCM Playback
    IEC958 (S/PDIF) Digital Audio Output
(Note that I have blacklisted HDMI and USB webcam so those won't show.). Hopefully you see a similar list, if errors, then you may have the wrong or bad module installed (or rc.alsa did not run on boot). Now for all regular outputs try each with, for example,
Code:
$ speaker-test -Dplug:default -c4 -twav
This outputs to "default" 4 channel (front and rear speakers). This will tell you too if you are plugged into front vs rear speaker jacks. I can't tell you how many times THAT caught me off guard! See (hear) which channel works, if any. If you get NO sound an any channel, any errors, you've got something borked in hardware or software. You can try reinstalling the alsa packages, find out what module you need to load, etc.

Good luck!
 
1 members found this post helpful.
Old 11-05-2013, 11:48 PM   #18
Drakeo
Senior Member
 
Registered: Jan 2008
Location: Urbana IL
Distribution: Slackware, Slacko,
Posts: 3,716
Blog Entries: 3

Rep: Reputation: 483Reputation: 483Reputation: 483Reputation: 483Reputation: 483
King that is a wonderful answer truth is that should play right out of the box on a full install. un-mute the auto-mute and in kde go to settings and keep testing till you get them speakers in the right plugins.
 
1 members found this post helpful.
Old 11-06-2013, 08:12 PM   #19
asero12
LQ Newbie
 
Registered: Nov 2013
Posts: 20

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by kingbeowulf View Post
Lets start at the beginning.
  1. Make sure you have speakers plugged into the correct audio jack.
  2. Check 'lsmod' to make sure all of your sound modules are loading.
  3. Check 'lspci -k' to see what kernel module is loading.
  4. Is this motherboard chip? Check BIOS!
  5. Are you using the stock kernel or did you "roll your own?"
  6. Are you using a kernel/alsa package that supports you chipset?
  7. Did you make '/etc/rc.d/rc.alsa' executable?
  8. Restore everything to default settings, reboot to CLI, and run alsamixer. Make sure NONE of your audio outputs are muted. Crank up the volume of any that are low.
  9. If you installed pulseaudio, I swear I'll beat you with a stick!
At the very least, alsa should have automagically set up /etc/sound.conf with:
Code:
alias snd-card-0 snd-hda-intel
alias sound-slot-0 snd-hda-intel
You need to make sure you don't have audio modules loaded for which their is no hardware installed. AND you need to make sure snd-hda-intel is the correct module.

While still in the CLI (no KDE etc.), run this (example from my Slack14.0 with CL Audigy):
Code:
$ aplay -L
null
    Discard all samples (playback) or generate zero samples (capture)
default:CARD=Audigy
    SB Audigy 1 [SB0090], ADC Capture/Standard PCM Playback
    Default Audio Device
sysdefault:CARD=Audigy
    SB Audigy 1 [SB0090], ADC Capture/Standard PCM Playback
    Default Audio Device
front:CARD=Audigy,DEV=0
    SB Audigy 1 [SB0090], ADC Capture/Standard PCM Playback
    Front speakers
rear:CARD=Audigy,DEV=0
    SB Audigy 1 [SB0090], ADC Capture/Standard PCM Playback
    Rear speakers
center_lfe:CARD=Audigy,DEV=0
    SB Audigy 1 [SB0090], ADC Capture/Standard PCM Playback
    Center and Subwoofer speakers
surround40:CARD=Audigy,DEV=0
    SB Audigy 1 [SB0090], ADC Capture/Standard PCM Playback
    4.0 Surround output to Front and Rear speakers
surround41:CARD=Audigy,DEV=0
    SB Audigy 1 [SB0090], ADC Capture/Standard PCM Playback
    4.1 Surround output to Front, Rear and Subwoofer speakers
surround50:CARD=Audigy,DEV=0
    SB Audigy 1 [SB0090], ADC Capture/Standard PCM Playback
    5.0 Surround output to Front, Center and Rear speakers
surround51:CARD=Audigy,DEV=0
    SB Audigy 1 [SB0090], ADC Capture/Standard PCM Playback
    5.1 Surround output to Front, Center, Rear and Subwoofer speakers
iec958:CARD=Audigy,DEV=0
    SB Audigy 1 [SB0090], ADC Capture/Standard PCM Playback
    IEC958 (S/PDIF) Digital Audio Output
(Note that I have blacklisted HDMI and USB webcam so those won't show.). Hopefully you see a similar list, if errors, then you may have the wrong or bad module installed (or rc.alsa did not run on boot). Now for all regular outputs try each with, for example,
Code:
$ speaker-test -Dplug:default -c4 -twav
This outputs to "default" 4 channel (front and rear speakers). This will tell you too if you are plugged into front vs rear speaker jacks. I can't tell you how many times THAT caught me off guard! See (hear) which channel works, if any. If you get NO sound an any channel, any errors, you've got something borked in hardware or software. You can try reinstalling the alsa packages, find out what module you need to load, etc.

Good luck!
Thanks for the answer, but I tried and checked eveything you said and the audio just ain't working, it isn't a hardware problem, I just booted OpenSuse from a live CD and videos sounded pretty well. I'll keep investigating.
 
Old 11-06-2013, 09:14 PM   #20
asero12
LQ Newbie
 
Registered: Nov 2013
Posts: 20

Original Poster
Rep: Reputation: Disabled
I just came with this hypothesis:

First look at this image: http://imageshack.us/a/img692/2626/wy5t.png

That image was taken from Phonon, as you know it's the Mutimedia framework of KDE, so only native application (QT) are managed by it (I don't know if this is 100% true, maybe I'm saying a nonsense). The fact is that Amarok "follows" what phonon says when setting sound devices, and if one doesn't work, it tries with the next one, and as you can see, DEFAULT shows error when tested... but since it's at the bottom of the list, it has shown no problems, that's why Amarok is ale to play. BUT NEITHER OF THE VIDEO PLAYERS I HAVE ARE QT NATIVE, THEY ALL ARE GTK, SO PHONON DOESN'T MANAGE THEM, BUT ALSA DOES, AND ALSO THE CONFIGURATON SETTING OF EACH PROGRAM, AND ALL THIS TIME I'VE TRYING TO SET THE "DEFAULT" DEVICE AS THE DEFAULT DEVICE (sorry for the repetition), THE SAME ONE THAT PHONON PROOVES DOESN'T WORK, SO I'LL TRY THESE SOLUTIONS:

-Download a native KDE video player that supports PHONON and see if sound works.
-Replace in alsa the "default" card for one of the " HDE Intel PCH" ones.

For the last one I need some help, since I don't know how to do it, could somone explain me please?

Last edited by asero12; 11-06-2013 at 09:17 PM. Reason: ortography
 
Old 11-07-2013, 02:32 AM   #21
kingbeowulf
Senior Member
 
Registered: Oct 2003
Location: WA
Distribution: Slackware
Posts: 1,266
Blog Entries: 11

Rep: Reputation: 744Reputation: 744Reputation: 744Reputation: 744Reputation: 744Reputation: 744Reputation: 744
asero12,
If you go to the top of the audio list "reproduccion de audio" and make sure the working sound devices/channels are at the top of the list, then ALL KDE apps will use those sound outputs. Kplayer "should" pick it up if "output driver" set to "Auto". Otherwise, set to alsa, and pick a matching output device that works. Or, on mplayer, go to its configuration and from the "audio' tab and do the same thing.

Again, if "speaker-test" did not give sound on some or all channels, clear out all custom settings, reinstall the ALSA package, chmod +x /etc/rc.d/rc.alsa and reboot to try again. Speaker-test MUST work on valid analog output channels found with 'aplay -L" This shouldn't be difficult. I haven't had issues with Alsa on intel chipsets and Creative Labs cards in many years.

On you Slackware DVD/USB nstall media (example for Slackware64 14.0) reinstall, as root,
slackware64/ap/alsa-utils-1.0.26-x86_64-1.txz
slackware64/l/alsa-lib-1.0.26-x86_64-1.txz
slackware64/l/alsa-oss-1.0.25-x86_64-1.txz

with "upgradepkg --reinstall <package-name>"
 
Old 11-07-2013, 04:45 PM   #22
asero12
LQ Newbie
 
Registered: Nov 2013
Posts: 20

Original Poster
Rep: Reputation: Disabled
Problem got fixed fellas.

I tried with speaker-test -Dplug:default -c4 -twav as kingbeowulf said,
but it didn't sound... so looked up for the name's of the other devices (default, front, hdmi, etc)
and tried with front. it sounded, so I opened /etc/asound.conf with nano and replaced all the defaults for fronts like this:


Quote:
pcm.!front {
type hw
card 0
}
ctl.!front {
type hw
card 0
}
pcm.!front {
type plug
slave.pcm “softvol”
}
pcm.front {
type softvol
slave {
pcm “dmix”
}
control {
name “Pre-Amp”
card 0
}
min_dB -5.0
max_dB 20.0
resolution 6
and videos are sounding now.


Thank you very much for the ones who helped me with this problem.
 
Old 11-08-2013, 07:23 AM   #23
Germany_chris
Senior Member
 
Registered: Jun 2011
Location: NOVA
Distribution: Debian 12
Posts: 1,071

Rep: Reputation: 497Reputation: 497Reputation: 497Reputation: 497Reputation: 497
Someone read the arch wiki on ALSA
 
  


Reply

Tags
problems, slackware, sound, videos



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Asus Eeepc 900 Xandros - Youtube videos don't run! ruistracke Linux - Newbie 5 09-13-2011 01:06 PM
youtube videos have no sound baronobeefdip Linux - Software 8 05-16-2011 02:34 AM
[SOLVED] No sound, Videos play extremely fast with no sound boydw Linux - Newbie 1 01-19-2011 08:59 PM
SUSE Linux videos don't work pcg Linux - Software 3 01-24-2007 03:50 AM
Playing videos without sound? Brian Knoblauch SUSE / openSUSE 1 09-03-2005 03:51 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 04:56 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration