0

I know how to play a wav file with python_vlc, e.g (here to play an audio stream)

import vlc

instance=vlc.Instance('--input-repeat=-1','--fullscreen')
player=instance.media_player_new()
url="my url"
media=instance.media_new(url)
player.set_media(media)
player.play()

but I didn't find any command to play it in mono mode. Any help appreciated.

I've asked the support of my hardware and searched among stackoverflow questions.

1 Answer 1

1

it seems the solution was in alsamixer: type alsamixer select the 'DAC' tab switch it from stereo to mono.

Sign up to request clarification or add additional context in comments.

2 Comments

As it’s currently written, your answer is unclear. Please edit to add additional details that will help others understand how this addresses the question asked. You can find more information on how to write good answers in the help center.
the solution is very clear, just follow the instruction and it will work

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.