-1

To change the jack from input to output for any computer or laptop I followed this question:

How do I change which audio jacks are used for input and output?

But the Python script does not work. This is the message I get:

$ sudo python run.py
Using temporary directory: /dev/shm/hda-analyzer
You may remove this directory when finished or if you like to
download the most recent copy of hda-analyzer tool.
Downloading file hda_analyzer.py
Downloading file hda_guilib.py
Downloading file hda_codec.py
Downloading file hda_proc.py
Downloading file hda_graph.py
Downloading file hda_mixer.py
Downloaded all files, executing hda_analyzer.py
Traceback (most recent call last):
  File "/dev/shm/hda-analyzer/hda_analyzer.py", line 36, in <module>
    from hda_codec import HDACodec, HDA_card_list, HDA_Exporter_pyscript, \
  File "/run/shm/hda-analyzer/hda_codec.py", line 330
    self.reread()
       ^
IndentationError: expected an indented block
  • This is clearly a bug in the script from the ALSA project and should be reported there. As such this question is off topic here (see[FAQ]). – Takkat May 01 '13 at 12:29

1 Answers1

1

Fixed all the basic problems and manged to open the GUI.

sudo wget -O /run/shm/hda-analyzer/hda_codec.py http://ideone.com/plain/I0Tje0

And then do

sudo python run.py

thefourtheye
  • 4,924