First I confess to being relatively new to Linux so please accept my apoligies if the answer to this question is trivial.
VLC version: 0.9.8a
System: Centos 5 on x86
I'm trying to invoke a VLC stream from a bash script. I've figured out the command I want to use and have proved that the following command (typed in at the "$" prompt) does exactly what I want:
Code: Select all
cvlc "source.mp3" --sout '#duplicate{dst=std{access=udp,dst=192.168.0.2:1235}}'
Code: Select all
#!/bin/bash
cvlc "source.mp3" --sout '#duplicate{dst=std{access=udp,dst=192.168.0.2:1235}}'
Code: Select all
#!/bin/bash
VLCCMD="cvlc \"source.mp3\" --sout '#duplicate{dst=std{access=udp,dst=192.168.0.2:1235}}'"
echo VLC Command:$VLCCMD
$VLCCMD
Code: Select all
VLC Command:cvlc "source.mp3" --sout '#duplicate{dst=std{access=udp,dst=192.168.0.2:1235}}'
VLC media player 0.9.8a Grishenko
[00000001] main libvlc debug: VLC media player - version 0.9.8a Grishenko - (c)
1996-2008 the VideoLAN team
[00000001] main libvlc debug: libvlc was configured with ./configure '--build=i686-redhat-linux-gnu' '--host=i686-redhat-linux-gnu' '--target=i386-redhat-linux-gnu' '--program-prefix=' '--prefix=/usr' '--exec-prefix=/usr' '--bindir=/usr/bin' '--sbindir=/usr/sbin' '--sysconfdir=/etc' '--datadir=/usr/share' '--includedir=/usr/include' '--libdir=/usr/lib' '--libexecdir=/usr/libexec' '--localstatedir=/var' '--sharedstatedir=/usr/com' '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--disable-dependency-tracking' '--disable-rpath' '--disable-static' '--with-PIC' '--enable-release' '--enable-aa' '--enable-alsa' '--enable-arts' '--enable-caca' '--enable-cddax' '--enable-dirac' '--enable-dvbpsi' '--enable-dvdread' '--enable-esd' '--enable-faad' '--enable-fbosd' '--enable-ffmpeg' '--with-ffmpeg-tree=ffmpeg-20080225' '--with-ffmpeg-a52' '--with-ffmpeg-faac' '--with-ffmpeg-mp3lame' '--enable-libamr-nb' '--enable-libamr-wb' '--with-ffmpeg-ogg' '--with-ffmpeg-theora' '--with-ffmpeg-vorbis' '--with--ffmpeg-zlib' '--enable-flac' '--enable-galaktos' '--enable-gnomevfs' '--enable-lirc' '--enable-live555' '--with-live555-tree=/dar/build/vlc-0.9.8a/live' '--enable-loader' '--enable-musicbrainz' '--enable-ncurses' '--enable-opencv' '--enable-pulse' '--enable-pvr' '--enable-real' '--enable-realrtsp' '--enable-shout' '--enable-snapshot' '--enable-svg' '--enable-svgalib' '--enable-switcher' '--enable-twolame' '--enable-upnp' '--enable-v4l' '--enable-xosd' '--enable-xvmc' 'build_alias=i686-redhat-linux-gnu' 'host_alias=i686-redhat-linux-gnu' 'target_alias=i386-redhat-linux-gnu' 'CFLAGS=-O2
-g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i386 -mtune=generic -fasynchronous-unwind-tables' 'LDFLAGS=-L/usr/X11R6/lib' 'CXXFLAGS=-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i386 -mtune=generic -fasynchronous-unwind-tables' 'PKG_CONFIG_PATH=/usr/lib/pkgconfig:/usr/share/pkgconfig'
[00000001] main libvlc debug: translation test: code is "C"
[00000413] inhibit interface error: Failed to connect to the D-Bus session daemon: Failed to execute dbus-launch to autolaunch D-Bus session
[00000413] main interface error: no suitable interface module
[00000001] main libvlc error: interface "inhibit,none" initialization failed
[00000419] dummy interface: using the dummy interface module...
[00000430] stream_out_standard stream out error: no access _and_ no muxer (fatal error)
[00000429] main stream output error: stream chain failed for `standard{mux="",access="",dst="'#duplicate{dst=std{access=udp,dst=192.168.0.2:1235}}'"}'
[00000428] main input error: cannot start stream output instance, aborting
Code: Select all
VLC Command:cvlc "source.mp3" --sout '#duplicate{dst=std{access=udp,dst=192.168.0.2:1235}}'
(...identical output removed here...)
[00000430] stream_out_standard stream out error: no access _and_ no muxer (fatal error)
[00000429] main stream output error: stream chain failed for `standard{mux="",access="",dst="'#duplicate{dst=std{access=udp,dst=192.168.0.2:1235}}'"}'
[00000428] main input error: cannot start stream output instance, aborting
Thanks!