Page 1 of 1

No Audio Over Stream

Posted: 15 Nov 2008 01:37
by AMT
I'm having an odd problem with VLC 0.9.6. I'm able to Stream using mmsh. People are able to open my Stream but there is no audio (VLC isn't capturing/converting/broadcasting it like it should). Settings below:

Code: Select all

dshow:// :dshow-vdev="none" :dshow-adev="Stereo Mix (Realtek High Defini"

Code: Select all

:sout=#transcode{acodec=mp3,ab=128,channels=2}:duplicate{dst=std{access=mmsh,mux=asf,dst=:8080}}
It's not my drivers because I can record using Stereo Mix in Audacity. 0.8.x always worked for me. Maybe I'm just missing a new setting or something in v0.9.x!

If you want to test the Stream yourself visit http://www.amtstudios.com/?page_id=28.

Re: No Audio Over Stream

Posted: 15 Nov 2008 07:51
by AMT
I found out it works fine if I open a file with VLC and Stream that, but opening a capture device doesn't work for some reason.

Re: No Audio Over Stream

Posted: 15 Nov 2008 15:36
by VLC_help
Does it work any better if you start that from command-line?

Re: No Audio Over Stream

Posted: 16 Nov 2008 03:23
by AMT
I wouldn't have the first clue how to do that.

For some reason VLC isn't using the capture device properly ...

Re: No Audio Over Stream

Posted: 16 Nov 2008 14:13
by VLC_help
Device names which have whitespaces in their name cause issues to QT4 interface parsing. So press Windowskey+r, type in cmd and when the command prompt opens do

Code: Select all

cd c:\program files\vlc vlc dshow:// :dshow-vdev="none" :dshow-adev="Stereo Mix (Realtek High Defini" :sout=#transcode{acodec=mp3,ab=128,channels=2}:duplicate{dst=std{access=mmsh,mux=asf,dst=:8080}}
and see if it works any better. (change c:\program files\vlc if your VLC installdir is different location)

Re: No Audio Over Stream

Posted: 16 Nov 2008 22:51
by AMT
That worked! Thanks!