Hi,
I'm trying to stream fromp a single file.
My command is:
vlc -vvv --sout '#standard{access=http,mux=asf,dst=:8080}' fake: --fake-file=./test.jpg
I got an error:
VLC media player 0.9.0-svn Grishenko
[00000001] main libvlc debug: checking builtin modules
[00000001] main libvlc debug: checking plugin modules
[00000001] main libvlc debug: loading plugins cache file /home/maintc3/.vlc/cache/plugins-04041e.dat
[00000001] main libvlc debug: recursively browsing `modules'
[00000001] main libvlc debug: recursively browsing `/usr/local/lib/vlc'
[00000001] main libvlc debug: recursively browsing `plugins'
[00000001] main libvlc debug: module bank initialized, found 211 modules
[00000001] main libvlc debug: opening config file (/home/maintc3/.vlc/vlcrc)
[00000001] main libvlc debug: CPU has capabilities 486 586 MMX MMXEXT SSE SSE2 FPU
[00000001] main libvlc debug: looking for memcpy module: 3 candidates
[00000001] main libvlc debug: using memcpy module "memcpymmxext"
[00000278] main playlist error: Reloading playlist not implemented.
[00000279] main private debug: waiting for thread completion
[00000279] main private debug: thread 135878144 (preparser) created at priority 0 (playlist/thread.c:81)
[00000280] main private debug: waiting for thread completion
[00000280] main private debug: thread 135878656 (fetcher) created at priority 0 (playlist/thread.c:107)
[00000278] main playlist debug: waiting for thread completion
[00000278] main playlist debug: rebuilding array of current - root Playlist
[00000278] main playlist debug: rebuild done - 0 items, index -1
[00000278] main playlist debug: thread 135879168 (playlist) created at priority 0 (playlist/thread.c:117)
[00000281] main interface debug: looking for interface module: 1 candidate
[00000281] main interface debug: using interface module "hotkeys"
[00000281] main interface debug: thread 135879680 (interface) created at priority 0 (interface/interface.c:218)
[00000283] main interface debug: looking for interface module: 1 candidate
[00000283] main interface debug: using interface module "screensaver"
[00000283] main interface debug: thread 135880192 (interface) created at priority 0 (interface/interface.c:218)
[00000278] main playlist debug: adding item `fake:' ( fake: )
[00000285] main interface debug: looking for interface module: 1 candidate
Remote control interface initialized. Type `help' for help.
[00000285] main interface debug: using interface module "rc"
[00000278] main playlist debug: starting new item
[00000278] main playlist debug: processing request item null node Playlist skip 0
[00000278] main playlist debug: rebuilding array of current - root Playlist
[00000278] main playlist debug: rebuild done - 1 items, index -1
[00000278] main playlist debug: creating new input thread
[00000287] main input debug: waiting for thread completion
[00000288] main stream output debug: stream=`standard'
[00000289] main private debug: looking for sout stream module: 1 candidate
[00000289] main private debug: set config option: sout-standard-access to http
[00000289] main private debug: set config option: sout-standard-mux to asf
[00000289] main private debug: set config option: sout-standard-dst to :8080
[00000289] stream_out_standard private debug: creating `http/asf://:8080'
[00000289] stream_out_standard private debug: using `http/asf://:8080'
[00000291] main private debug: looking for sout access module: 1 candidate
[00000291] main private: creating httpd
[00000291] main private debug: net: listening to port 8080
[00000294] main http server debug: thread 135991808 (httpd host thread) created at priority 0 (network/httpd.c:1099)
[00000291] main private debug: using sout access module "access_output_http"
[00000289] stream_out_standard private debug: access opened
[00000295] main private debug: looking for sout mux module: 1 candidate
[00000295] mux_asf private debug: asf muxer opened
[00000295] mux_asf private debug: Packet size 4096
[00000295] mux_asf private debug: meta data: title='', author='', copyright='', comment='', rating=''
[00000295] main private debug: using sout mux module "mux_asf"
[00000289] stream_out_standard private debug: mux opened
[00000289] main private debug: using sout stream module "stream_out_standard"
[00000287] main input debug: `fake:' gives access `fake' demux `' path `'
[00000287] main input debug: creating demux: access='fake' demux='' path=''
[00000297] main demuxer debug: looking for access_demux module: 1 candidate
[00000287] main input debug: selecting program id=0
[00000287] main input debug: thread 135991296 (input) created at priority 0 (input/input.c:332)
[00000297] main demuxer debug: using access_demux module "access_fake"
[00000278] main playlist debug: requesting art for fake:
[00000287] main input debug: looking for a subtitle file in /usr/home/maintc3/
[00000299] main packetizer debug: looking for packetizer module: 15 candidates
[00000299] main packetizer debug: using packetizer module "packetizer_copy"
[00000287] main input debug: stream out mode -> no decoder thread
[00000287] main input debug: starting in sync mode
[00000287] main input debug: `fake:' successfully opened
[00000278] main playlist debug: art not found for fake:
[00000288] main stream output debug: adding a new input
[00000295] main private debug: adding a new input
[00000295] mux_asf private debug: adding input
[00000295] mux_asf private debug: Asf muxer creating header
[00000295] mux_asf private debug: pixel aspect-ratio: 0/1
and I got nothing on a client vlc.
What's wrong with my command??
It works if i change the input:
vlc --noaudio -vvv http://192.168.2.101/axis-cgi/mjpg/video.cgi --sout '#standard{access=http,mux=asf,dst=:8080}'
cheers