php.de

Zurück   php.de > php.de Intern > Off-Topic Diskussionen

Off-Topic Diskussionen Mach mal Pause vom Programmieren!

Antwort
 
LinkBack Themen-Optionen Bewertung: Bewertung: 1 Stimmen, 5,00 durchschnittlich.
Alt 30.05.2011, 11:44  
Erfahrener Benutzer
 
Benutzerbild von dreamcatcher
 
Registriert seit: 28.12.2010
Beiträge: 602
PHP-Kenntnisse:
Anfänger
dreamcatcher wird schon bald berühmt werden
Standard Sound per HDMI ausgeben [Debian Squeeze + onBoard ATI]

Habe mich extra woanders angemeldet und es vor ein paar Tagen hier versucht:
http://debianforum.de/forum/viewtopi...829050#p829050
Leider nicht eine Antwort... vielleicht habe ich hier mehr Glück auf jemanden zu stoßen, der sich damit auskennt:

__________________________

Guten Morgen,

ich bin dabei vollständig auf Debian Squeeze 64bit von Windows 7 umzusteigen.
Auf meinem Netbook hat alles mit den Tutorials geklappt, auf meinem Desktop PC bekomme ich jedoch die Soundausgabe nicht gebacken.
Desktop PC hat das
Code:
Mainboard Asus M4A88TD-M EVO/USB3
mit der (onBoard) ATI Radeon SB850 (HD4250) über welche auch das HDMI Kabel verläuft.

Mein Werdegang dafür:

Code:
apt-get install gnome-media-common alsa-base alsa-utils
Danach hatte es auf dem Netbook geklappt, auf dem Desktop nicht.
Dann habe ich gegoogelt und stieß u.a. auf folgendes http://www.mediaboxblog.co.uk/blog1....nning-radeonhd.

Da der Post sehr alt ist, habe ich mich zuerst auf die Suche nach der xorg.conf gemacht.
Dazu fand ich das http://debianforum.de/forum/viewtopic.php?f=2&t=116039, worin beschrieben wurde dass diese in Squeeze nicht mehr vorhanden ist aber manuell wie folgt erstellt werden kann:

Code:
X -configure > xorg.conf
Das hat auch geklappt, nachdem ich aber folgendes noch mit hineineditiert habe hat sich nichts verändert:

Code:
Section "Device"
 [...]
  Option  "Audio"  "on"
  Option  "HDMI"  "all"
EndSection
Nun ging der gefundene Thread jedoch auch von dem radeonHD Treiber aus, wie ich in meiner xorg.conf sah stand darin jedoch nur der normale "radeon" Treiber.

also habe ich diesen installiert und die Datei wie folgt geändert:

Code:
apt-get install xserver-xorg-video-radeonhd
Code:
Section "Device"
 [...]
  Driver  "radeonhd"
  Option  "Audio"  "on"
  Option  "HDMI"  "all"
EndSection
Nach einem Neustart ging dann gar nichts mehr mit dem Fehler "No screen found".
Also xorg.conf wieder gelöscht und neu erstellt.

Wie kann ich die Soundausgabe per HDMI aktivieren ?
(Unter Win7 ging es "out of the box")

Hier weitere Informationen:

Code:
user@debian:~$ lspci -v | grep VGA
01:05.0 VGA compatible controller: ATI Technologies Inc RS880 [Radeon HD 4250] (prog-if 00 [VGA controller])
user@debian:~$ grep DRM_RADEON /boot/config-$(uname -r) 
CONFIG_DRM_RADEON=m
# CONFIG_DRM_RADEON_KMS is not set
user@debian:~$ aplay -l
**** List of PLAYBACK Hardware Devices ****
card 0: HDMI [HDA ATI HDMI], device 3: ATI HDMI [ATI HDMI]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
Meine "Standard" xorg.conf:

Code:
Section "ServerLayout"
	Identifier     "X.org Configured"
	Screen      0  "Screen0" 0 0
	InputDevice    "Mouse0" "CorePointer"
	InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
	ModulePath   "/usr/lib/xorg/modules"
	FontPath     "/usr/share/fonts/X11/misc"
	FontPath     "/usr/share/fonts/X11/cyrillic"
	FontPath     "/usr/share/fonts/X11/100dpi/:unscaled"
	FontPath     "/usr/share/fonts/X11/75dpi/:unscaled"
	FontPath     "/usr/share/fonts/X11/Type1"
	FontPath     "/usr/share/fonts/X11/100dpi"
	FontPath     "/usr/share/fonts/X11/75dpi"
	FontPath     "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
	FontPath     "built-ins"
EndSection

Section "Module"
	Load  "dri"
	Load  "extmod"
	Load  "record"
	Load  "glx"
	Load  "dbe"
	Load  "dri2"
EndSection

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "kbd"
EndSection

Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "auto"
	Option	    "Device" "/dev/input/mice"
	Option	    "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
	#DisplaySize	  530   300	# mm
	Identifier   "Monitor0"
	VendorName   "SAM"
	ModelName    "SMBX2450"
	HorizSync    30.0 - 81.0
	VertRefresh  56.0 - 75.0
	Option	    "DPMS"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
        ### [arg]: arg optional
        #Option     "NoAccel"            	# [<bool>]
        #Option     "SWcursor"           	# [<bool>]
        #Option     "Dac6Bit"            	# [<bool>]
        #Option     "Dac8Bit"            	# [<bool>]
        #Option     "BusType"            	# [<str>]
        #Option     "CPPIOMode"          	# [<bool>]
        #Option     "CPusecTimeout"      	# <i>
        #Option     "AGPMode"            	# <i>
        #Option     "AGPFastWrite"       	# [<bool>]
        #Option     "AGPSize"            	# <i>
        #Option     "GARTSize"           	# <i>
        #Option     "RingSize"           	# <i>
        #Option     "BufferSize"         	# <i>
        #Option     "EnableDepthMoves"   	# [<bool>]
        #Option     "EnablePageFlip"     	# [<bool>]
        #Option     "NoBackBuffer"       	# [<bool>]
        #Option     "DMAForXv"           	# [<bool>]
        #Option     "FBTexPercent"       	# <i>
        #Option     "DepthBits"          	# <i>
        #Option     "PCIAPERSize"        	# <i>
        #Option     "AccelDFS"           	# [<bool>]
        #Option     "IgnoreEDID"         	# [<bool>]
        #Option     "CustomEDID"         	# [<str>]
        #Option     "DisplayPriority"    	# [<str>]
        #Option     "PanelSize"          	# [<str>]
        #Option     "ForceMinDotClock"   	# <freq>
        #Option     "ColorTiling"        	# [<bool>]
        #Option     "VideoKey"           	# <i>
        #Option     "RageTheatreCrystal" 	# <i>
        #Option     "RageTheatreTunerPort" 	# <i>
        #Option     "RageTheatreCompositePort" 	# <i>
        #Option     "RageTheatreSVideoPort" 	# <i>
        #Option     "TunerType"          	# <i>
        #Option     "RageTheatreMicrocPath" 	# <str>
        #Option     "RageTheatreMicrocType" 	# <str>
        #Option     "ScalerWidth"        	# <i>
        #Option     "RenderAccel"        	# [<bool>]
        #Option     "SubPixelOrder"      	# [<str>]
        #Option     "ClockGating"        	# [<bool>]
        #Option     "VGAAccess"          	# [<bool>]
        #Option     "ReverseDDC"         	# [<bool>]
        #Option     "LVDSProbePLL"       	# [<bool>]
        #Option     "AccelMethod"        	# <str>
        #Option     "DRI"                	# [<bool>]
        #Option     "ConnectorTable"     	# <str>
        #Option     "DefaultConnectorTable" 	# [<bool>]
        #Option     "DefaultTMDSPLL"     	# [<bool>]
        #Option     "TVDACLoadDetect"    	# [<bool>]
        #Option     "ForceTVOut"         	# [<bool>]
        #Option     "TVStandard"         	# <str>
        #Option     "IgnoreLidStatus"    	# [<bool>]
        #Option     "DefaultTVDACAdj"    	# [<bool>]
        #Option     "Int10"              	# [<bool>]
        #Option     "EXAVSync"           	# [<bool>]
        #Option     "ATOMTVOut"          	# [<bool>]
        #Option     "R4xxATOM"           	# [<bool>]
        #Option     "ForceLowPowerMode"  	# [<bool>]
        #Option     "DynamicPM"          	# [<bool>]
        #Option     "NewPLL"             	# [<bool>]
        #Option     "ZaphodHeads"        	# <str>
	Identifier  "Card0"
	Driver      "radeon"
	VendorName  "ATI Technologies Inc"
	BoardName   "RS880 [Radeon HD 4250]"
	BusID       "PCI:1:5:0"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "Monitor0"
	SubSection "Display"
		Viewport   0 0
		Depth     1
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     4
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     8
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     15
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     16
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection
Und unter System > Preference > Sound ist auch der "HDA ATI HDMI (ALSA Mixer)" ausgewählt, alles andere ist jedoch grau unterlegt.
Sound geht sowohl im Browser als auch z.B. unter VLC nicht.
Wobei im VLC folgender Fehler erscheint:

Code:
Potential ALSA version problem:
VLC failed to initialize your sound output device (if any).
Please update alsa-lib to version 1.0.23-2-g8d80d5f or higher to try to fix this issue.
Danke im voraus für die Hilfe.

Geändert von dreamcatcher (30.05.2011 um 11:49 Uhr).
dreamcatcher ist gerade online   Mit Zitat antworten
Sponsor Mitteilung
PHP Code Flüsterer

Registriert seit: 21.08.2005
Beiträge: 4682
PHP-Kenntnisse:
Fortgeschritten

Antwort


Themen-Optionen
Thema bewerten
Thema bewerten:

Forumregeln
Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are an
Gehe zu

Besucher kamen über folgende Suchanfragen bei Google auf diese Seite
debian hdmi sound, alsa hdmi sound xorg, debian sound hdmi, debian sound über hdmi, debian alsa hdmi, debian hdmi, debian hdmi audio, \debian hdmi audio\, debian squeeze radeon, xorg.conf hdmi sound, alsa hdmi ati, debian radeon hd hdmi, adding hdmi support debian, \debian squeeze alsa\, xorg.conf alsa, debian sqeeze alsa update, alsa squeeze, debian squeeze alsa, debian ati hdmi xorg.conf audio, squeeze \hd 4250\ grafiktreiber auswählen

Alle Zeitangaben in WEZ +2. Es ist jetzt 15:26 Uhr.




Powered by vBulletin® Version 3.7.2 (Deutsch)
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
Aprilia-Forum, Aquaristik-Forum, Liebeskummer-Forum, Zierfisch-Forum, Geizkragen-Forum