Page 1 of 1

Really need help setting up stream from Batch File

Posted: 05 Feb 2015 09:18
by stm_tech
Hi

I need to stream an audio feed to an icecast server.

If I do it manually through the GUI it works fine. Clients can connect and listen in.

My Batch file is not. It seems to be working on the "Server", but the clients can not connect.

Contents of Batch File
@Echo Off
Echo - Starting VLC Stream -
cd c:\program files\Videolan\VLC\
start /b vlc.exe dshow:// :dshow-vdev= :dshow-adev="Multichannel (M-Audio Delta 101" :live-caching=0:sout="#transcode{vcodec=none,acodec=mp3,ab=128,channels=2,samplerate=44100}:std{access=shout,mux=ogg,dst=<username>:<password>@<address of icecast server>:8000/radio}" :sout-all :sout-keep
pause


I have obviously redacted the username and password and address of server.

Please what am I doing wrong?