I have downloaded/compiled VLC version 0.9.9a, with the following options (I have first installed libmad 0.15.1b):
Code: Select all
./configure --prefix=/usr/local \
--disable-x11 \
--disable-xvideo \
--disable-glx \
--disable-xinerama \
--disable-opengl \
--disable-sdl \
--disable-sdl-image \
--disable-freetype \
--disable-fribidi \
--disable-fontconfig \
--disable-fb \
--disable-oss \
--disable-pulse \
--disable-alsa \
--disable-upnp \
--disable-skins2 \
--disable-qt4 \
--disable-visual \
--disable-atmo \
--disable-bonjour \
--disable-dbus \
--disable-live555 \
--disable-taglib \
--enable-vlm \
--disable-avcodec \
--disable-avformat \
--disable-postproc \
--disable-a52 \
--disable-libxml2 \
--enable-run-as-root \
--disable-remoteosd
Code: Select all
make && make install
I want to read a file endlessly and stream it via HTTP :
Code: Select all
[vlc@localhost ~]$ vlc --extraintf http
VLC media player 0.9.9a Grishenko
[00000001] main libvlc debug: VLC media player - version 0.9.9a Grishenko - (c) 1996-2009 the VideoLAN team
[00000001] main libvlc debug: libvlc was configured with ./configure '--prefix=/usr/local' '--disable-x11' '--disable-xvideo' '--disable-glx' '--disable-xinerama' '--disable-opengl' '--disable-sdl' '--disable-sdl-image' '--disable-freetype' '--disable-fribidi' '--disable-fontconfig' '--disable-fb' '--disable-oss' '--disable-pulse' '--disable-alsa' '--disable-upnp' '--disable-skins2' '--disable-qt4' '--disable-visual' '--disable-atmo' '--disable-bonjour' '--disable-dbus' '--disable-live555' '--disable-taglib' '--enable-vlm' '--disable-avcodec' '--disable-avformat' '--disable-postproc' '--disable-a52' '--disable-libxml2' '--enable-run-as-root' '--disable-remoteosd'
[00000001] main libvlc debug: translation test: code is "FR"
[00000307] main interface: creating httpd
[00000001] main libvlc: Lancement de vlc avec l'interface par défaut. Utilisez « cvlc » pour démarrer VLC sans interface.
Interface de commande à distance initialisée, « h » pour obtenir de l’aide.
add /home/vlc/videoproj.mpg :sout=#std{access=http,mux=mpeg1,dst=10.40.0.154:8081}
Trying to add /home/vlc/videoproj.mpg :sout=#std{access=http,mux=mpeg1,dst=10.40.0.154:8081} to playlist.
add: returned 0 (no error)
[00000324] mux_ps mux: Open
repeat on
status change: ( new input: /home/vlc/videoproj.mpg )
status change: ( audio volume: 256 )
status change: ( play state: 3 )
Setting repeat to 1
repeat: returned 0 (no error)
Code: Select all
[vlc@localhost ~]$ vlc -vvv --extraintf http
VLC media player 0.9.9a Grishenko
[00000001] main libvlc debug: VLC media player - version 0.9.9a Grishenko - (c) 1996-2009 the VideoLAN team
[00000001] main libvlc debug: libvlc was configured with ./configure '--prefix=/usr/local' '--disable-x11' '--disable-xvideo' '--disable-glx' '--disable-xinerama' '--disable-opengl' '--disable-sdl' '--disable-sdl-image' '--disable-freetype' '--disable-fribidi' '--disable-fontconfig' '--disable-fb' '--disable-oss' '--disable-pulse' '--disable-alsa' '--disable-upnp' '--disable-skins2' '--disable-qt4' '--disable-visual' '--disable-atmo' '--disable-bonjour' '--disable-dbus' '--disable-live555' '--disable-taglib' '--enable-vlm' '--disable-avcodec' '--disable-avformat' '--disable-postproc' '--disable-a52' '--disable-libxml2' '--enable-run-as-root' '--disable-remoteosd'
[00000001] main libvlc debug: translation test: code is "FR"
[00000001] main libvlc debug: checking builtin modules
[00000001] main libvlc debug: checking plugin modules
[00000001] main libvlc debug: loading plugins cache file /home/vlc/.cache/vlc/plugins-04041e.dat
[00000001] main libvlc debug: recursively browsing `/usr/local/lib/vlc'
[00000001] main libvlc debug: module bank initialized, found 207 modules
[00000001] main libvlc debug: opening config file (/home/vlc/.config/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"
[00000279] main interaction debug: thread 3084356528 (Interaction control) created at priority 0 (interface/interaction.c:382)
[00000279] main interaction debug: thread started
[00000281] main input debug: Creating an input for 'Bibliothèque'
[00000281] main input debug: Input is a meta file: disabling unneeded options
[00000281] main input debug: `file/xspf-open:///home/vlc/.local/share/vlc/ml.xspf' gives access `file' demux `xspf-open' path `/home/vlc/.local/share/vlc/ml.xspf'
[00000281] main input debug: creating access 'file' path='/home/vlc/.local/share/vlc/ml.xspf'
[00000282] main access debug: looking for access module: 3 candidates
[00000282] access_file access debug: opening file `/home/vlc/.local/share/vlc/ml.xspf'
[00000282] main access debug: using access module "access_file"
[00000282] main access debug: TIMER module_Need() : 3,984 ms - Total 3,984 ms / 1 intvls (Avg 3,984 ms)
[00000287] main stream debug: Using AStream*Stream
[00000287] main stream debug: pre-buffering...
[00000287] main stream debug: received first data for our buffer
[00000281] main input debug: creating demux: access='file' demux='xspf-open' path='/home/vlc/.local/share/vlc/ml.xspf'
[00000288] main demux debug: looking for demux module: 1 candidate
[00000288] playlist demux debug: using XSPF playlist reader
[00000288] main demux debug: using demux module "playlist"
[00000288] main demux debug: TIMER module_Need() : 2,881 ms - Total 2,881 ms / 1 intvls (Avg 2,881 ms)
[00000281] main input debug: `file/xspf-open:///home/vlc/.local/share/vlc/ml.xspf' successfully opened
[00000303] main xml debug: looking for xml module: 1 candidate
[00000303] main xml debug: using xml module "xtag"
[00000303] main xml debug: TIMER module_Need() : 1,212 ms - Total 1,212 ms / 1 intvls (Avg 1,212 ms)
[00000288] playlist demux debug: parsed 0 tracks successfully
[00000303] main xml debug: removing module "xtag"
[00000281] main input debug: EOF reached
[00000281] main input debug: control type=1
[00000288] main demux debug: removing module "playlist"
[00000282] main access debug: removing module "access_file"
[00000281] main input debug: TIMER input launching for 'Bibliothèque' : 17,891 ms - Total 17,891 ms / 1 intvls (Avg 17,891 ms)
[00000305] main preparser debug: waiting for thread initialization
[00000305] main preparser debug: thread started
[00000305] main preparser debug: thread 3073866672 (preparser) created at priority 0 (playlist/thread.c:79)
[00000306] main fetcher debug: waiting for thread initialization
[00000306] main fetcher debug: thread started
[00000306] main fetcher debug: thread 3063376816 (fetcher) created at priority 0 (playlist/thread.c:108)
[00000280] main playlist debug: waiting for thread initialization
[00000280] main playlist debug: thread started
[00000280] main playlist debug: thread 3052886960 (playlist) created at priority 0 (playlist/thread.c:117)
[00000307] main interface debug: looking for interface module: 1 candidate
[00000307] http interface debug: base :8080
[00000307] main interface: creating httpd
[00000307] main interface debug: net: listening to port 8080
[00000310] main http server debug: thread 3042397104 (httpd host thread) created at priority 0 (network/httpd.c:1107)
[00000307] http interface debug: dir=/usr/local/share/vlc/http
[00000307] main interface debug: find .hosts in dir=/usr/local/share/vlc/http/.hosts
[00000307] main interface debug: restricted to ::1
[00000307] main interface debug: restricted to 127.0.0.1
[00000307] main interface debug: restricted to ::/0
[00000307] main interface debug: restricted to 0.0.0.0/0
[00000307] http interface debug: file=/usr/local/share/vlc/http/iehacks.css (url=/iehacks.css)
[00000307] http interface debug: file=/usr/local/share/vlc/http/vlm_export.html (url=/vlm_export.html)
[00000307] http interface debug: dir=/usr/local/share/vlc/http/old
[00000307] main interface debug: find .hosts in dir=/usr/local/share/vlc/http/old/.hosts
[00000307] main interface debug: restricted to ::1
[00000307] main interface debug: restricted to 127.0.0.1
[00000307] main interface debug: restricted to ::/0
[00000307] main interface debug: restricted to 0.0.0.0/0
[00000307] http interface debug: dir=/usr/local/share/vlc/http/old/admin
[00000280] main playlist debug: rebuilding array of current - root Liste de lecture
[00000280] main playlist debug: rebuild done - 0 items, index -1
[00000307] http interface debug: find .access in dir=/usr/local/share/vlc/http/old/admin
[00000307] http interface debug: using user=admin password=admin (read=11)
[00000307] http interface debug: file=/usr/local/share/vlc/http/old/admin/index.html (url=/old/admin/)
[00000307] http interface debug: redir=/old/admin -> /old/admin/
[00000307] http interface debug: redir=/old/admin/index.html -> /old/admin/
[00000307] http interface debug: file=/usr/local/share/vlc/http/old/admin/browse.html (url=/old/admin/browse.html)
[00000307] http interface debug: file=/usr/local/share/vlc/http/old/admin/dboxfiles.html (url=/old/admin/dboxfiles.html)
[00000307] http interface debug: file=/usr/local/share/vlc/http/old/index.html (url=/old/)
[00000307] http interface debug: redir=/old -> /old/
[00000307] http interface debug: redir=/old/index.html -> /old/
[00000307] http interface debug: file=/usr/local/share/vlc/http/old/webcam.html (url=/old/webcam.html)
[00000307] http interface debug: file=/usr/local/share/vlc/http/old/style.css (url=/old/style.css)
[00000307] http interface debug: file=/usr/local/share/vlc/http/old/cone_minus.png (url=/old/cone_minus.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/old/cone_plus.png (url=/old/cone_plus.png)
[00000307] http interface debug: dir=/usr/local/share/vlc/http/old/vlm
[00000307] http interface debug: file=/usr/local/share/vlc/http/old/vlm/new.html (url=/old/vlm/new.html)
[00000307] http interface debug: file=/usr/local/share/vlc/http/old/vlm/index.html (url=/old/vlm/)
[00000307] http interface debug: redir=/old/vlm -> /old/vlm/
[00000307] http interface debug: redir=/old/vlm/index.html -> /old/vlm/
[00000307] http interface debug: file=/usr/local/share/vlc/http/old/vlm/show.html (url=/old/vlm/show.html)
[00000307] http interface debug: file=/usr/local/share/vlc/http/old/vlm/edit.html (url=/old/vlm/edit.html)
[00000307] http interface debug: file=/usr/local/share/vlc/http/old/info.html (url=/old/info.html)
[00000307] http interface debug: file=/usr/local/share/vlc/http/vlm.html (url=/vlm.html)
[00000307] http interface debug: file=/usr/local/share/vlc/http/index.html (url=/)
[00000307] http interface debug: redir= -> /
[00000307] http interface debug: redir=/index.html -> /
[00000307] http interface debug: file=/usr/local/share/vlc/http/flash.html (url=/flash.html)
[00000307] http interface debug: file=/usr/local/share/vlc/http/style.css (url=/style.css)
[00000307] http interface debug: dir=/usr/local/share/vlc/http/images
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/delete_small.png (url=/images/delete_small.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/play.png (url=/images/play.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/pause.png (url=/images/pause.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/snapshot.png (url=/images/snapshot.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/playlist.png (url=/images/playlist.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/slider_right.png (url=/images/slider_right.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/speaker.png (url=/images/speaker.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/empty.png (url=/images/empty.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/loop.png (url=/images/loop.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/repeat.png (url=/images/repeat.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/slider_left.png (url=/images/slider_left.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/volume_down.png (url=/images/volume_down.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/sd.png (url=/images/sd.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/vlc16x16.png (url=/images/vlc16x16.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/delete.png (url=/images/delete.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/help.png (url=/images/help.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/white.png (url=/images/white.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/eject.png (url=/images/eject.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/fullscreen.png (url=/images/fullscreen.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/next.png (url=/images/next.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/speaker_mute.png (url=/images/speaker_mute.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/playlist_small.png (url=/images/playlist_small.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/refresh.png (url=/images/refresh.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/volume_up.png (url=/images/volume_up.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/shuffle.png (url=/images/shuffle.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/prev.png (url=/images/prev.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/slider_bar.png (url=/images/slider_bar.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/info.png (url=/images/info.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/minus.png (url=/images/minus.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/plus.png (url=/images/plus.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/slider_point.png (url=/images/slider_point.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/white_cross_small.png (url=/images/white_cross_small.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/sort.png (url=/images/sort.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/slow.png (url=/images/slow.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/stop.png (url=/images/stop.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/images/sout.png (url=/images/sout.png)
[00000307] http interface debug: file=/usr/local/share/vlc/http/favicon.ico (url=/favicon.ico)
[00000307] http interface debug: dir=/usr/local/share/vlc/http/js
[00000307] http interface debug: file=/usr/local/share/vlc/http/js/mosaic.js (url=/js/mosaic.js)
[00000307] http interface debug: file=/usr/local/share/vlc/http/js/vlm.js (url=/js/vlm.js)
[00000307] http interface debug: file=/usr/local/share/vlc/http/js/functions.js (url=/js/functions.js)
[00000307] http interface debug: file=/usr/local/share/vlc/http/mosaic.html (url=/mosaic.html)
[00000307] http interface debug: dir=/usr/local/share/vlc/http/requests
[00000307] http interface debug: file=/usr/local/share/vlc/http/requests/status.xml (url=/requests/status.xml)
[00000307] http interface debug: file=/usr/local/share/vlc/http/requests/vlm.xml (url=/requests/vlm.xml)
[00000307] http interface debug: file=/usr/local/share/vlc/http/requests/readme (url=/requests/readme)
[00000307] http interface debug: file=/usr/local/share/vlc/http/requests/playlist.xml (url=/requests/playlist.xml)
[00000307] http interface debug: file=/usr/local/share/vlc/http/requests/browse.xml (url=/requests/browse.xml)
[00000307] http interface debug: file=/usr/local/share/vlc/http/requests/vlm_cmd.xml (url=/requests/vlm_cmd.xml)
[00000307] http interface debug: dir=/usr/local/share/vlc/http/dialogs
[00000307] main interface debug: find .hosts in dir=/usr/local/share/vlc/http/dialogs/.hosts
[00000307] http interface debug: file=/usr/local/share/vlc/http/dialogs/playlist (url=/dialogs/playlist)
[00000307] http interface debug: file=/usr/local/share/vlc/http/dialogs/mosaic (url=/dialogs/mosaic)
[00000307] http interface debug: file=/usr/local/share/vlc/http/dialogs/input (url=/dialogs/input)
[00000307] http interface debug: file=/usr/local/share/vlc/http/dialogs/main (url=/dialogs/main)
[00000307] http interface debug: file=/usr/local/share/vlc/http/dialogs/footer (url=/dialogs/footer)
[00000307] http interface debug: file=/usr/local/share/vlc/http/dialogs/browse (url=/dialogs/browse)
[00000307] http interface debug: file=/usr/local/share/vlc/http/dialogs/vlm (url=/dialogs/vlm)
[00000307] http interface debug: file=/usr/local/share/vlc/http/dialogs/sout (url=/dialogs/sout)
[00000307] main interface debug: using interface module "http"
[00000307] main interface debug: TIMER module_Need() : 67,838 ms - Total 67,838 ms / 1 intvls (Avg 67,838 ms)
[00000307] main interface debug: thread 3031907248 (interface) created at priority 0 (interface/interface.c:168)
[00000311] main interface debug: looking for interface module: 1 candidate
[00000311] main interface debug: using interface module "hotkeys"
[00000311] main interface debug: TIMER module_Need() : 1,899 ms - Total 1,899 ms / 1 intvls (Avg 1,899 ms)
[00000311] main interface debug: thread 3021417392 (interface) created at priority 0 (interface/interface.c:168)
[00000313] main interface debug: looking for interface module: 13 candidates
[00000313] main interface debug: using interface module "signals"
[00000313] main interface debug: TIMER module_Need() : 1,115 ms - Total 1,115 ms / 1 intvls (Avg 1,115 ms)
[00000313] main interface debug: thread 3000437680 (interface) created at priority 0 (interface/interface.c:168)
[00000001] main libvlc: Lancement de vlc avec l'interface par défaut. Utilisez « cvlc » pour démarrer VLC sans interface.
[00000315] main interface debug: looking for interface module: 1 candidate
Interface de commande à distance initialisée, « h » pour obtenir de l’aide.
[00000315] main interface debug: using interface module "rc"
[00000315] main interface debug: TIMER module_Need() : 3,706 ms - Total 3,706 ms / 1 intvls (Avg 3,706 ms)
[00000310] main http server debug: thread started
[00000307] main interface debug: thread started
[00000311] main interface debug: thread started
[00000313] main interface debug: thread started
[00000315] main interface debug: thread started
[00000315] main interface debug: thread 2989943728 (interface) created at priority 0 (interface/interface.c:168)
[00000280] main playlist debug: adding item `/home/vlc/videoproj.mpg :sout=#std{access=http,mux=mpeg1,dst=10.40.0.154:8081}' ( /home/vlc/videoproj.mpg )
[00000307] http interface debug: requested mrl add: /home/vlc/videoproj.mpg :sout=#std{access=http,mux=mpeg1,dst=10.40.0.154:8081}
[00000307] http interface debug: requested playlist item: 0
[00000280] main playlist debug: rebuilding array of current - root Liste de lecture
[00000280] main playlist debug: rebuild done - 1 items, index -1
[00000280] main playlist debug: starting new item
[00000280] main playlist debug: processing request item null node Liste de lecture skip 0
[00000280] main playlist debug: creating new input thread
[00000317] main input debug: Creating an input for '/home/vlc/videoproj.mpg :sout=#std{access=http,mux=mpeg1,dst=10.40.0.154:8081}'
[00000317] main input debug: waiting for thread initialization
[00000317] main input debug: thread started
[00000318] main stream output debug: stream=`std'
[00000319] main stream out debug: looking for sout stream module: 1 candidate
[00000319] main stream out debug: set config option: sout-standard-access to http
[00000317] main input debug: thread 2979453872 (input) created at priority 10 (input/input.c:370)
[00000319] main stream out debug: set config option: sout-standard-mux to mpeg1
[00000319] main stream out debug: set config option: sout-standard-dst to 10.40.0.154:8081
[00000319] stream_out_standard stream out debug: creating `http/mpeg1://10.40.0.154:8081'
[00000319] stream_out_standard stream out debug: extension is 154:8081
[00000319] stream_out_standard stream out debug: extension -> mux=(null)
[00000319] stream_out_standard stream out debug: using `http/mpeg1://10.40.0.154:8081'
[00000321] main access out debug: looking for sout access module: 1 candidate
[00000321] main access out debug: net: listening to 10.40.0.154 port 8081
[00000323] main http server debug: thread 2968964016 (httpd host thread) created at priority 0 (network/httpd.c:1107)
[00000321] main access out debug: using sout access module "access_output_http"
[00000321] main access out debug: TIMER module_Need() : 6,054 ms - Total 6,054 ms / 1 intvls (Avg 6,054 ms)
[00000319] stream_out_standard stream out debug: access opened
[00000324] main mux debug: looking for sout mux module: 1 candidate
[00000324] mux_ps mux: Open
[00000324] main mux debug: using sout mux module "mux_ps"
[00000324] main mux debug: TIMER module_Need() : 2,127 ms - Total 2,127 ms / 1 intvls (Avg 2,127 ms)
[00000318] main stream output debug: muxer support adding stream at any time
[00000319] stream_out_standard stream out debug: mux opened
[00000319] main stream out debug: using sout stream module "stream_out_standard"
[00000319] main stream out debug: TIMER module_Need() : 23,078 ms - Total 23,078 ms / 1 intvls (Avg 23,078 ms)
[00000317] main input debug: `/home/vlc/videoproj.mpg' gives access `' demux `' path `/home/vlc/videoproj.mpg'
[00000317] main input debug: creating demux: access='' demux='' path='/home/vlc/videoproj.mpg'
[00000326] main demux debug: looking for access_demux module: 0 candidates
[00000326] main demux warning: no access_demux module matched "any"
[00000326] main demux debug: TIMER module_Need() : 1,817 ms - Total 1,817 ms / 1 intvls (Avg 1,817 ms)
[00000317] main input debug: creating access '' path='/home/vlc/videoproj.mpg'
[00000327] main access debug: looking for access module: 5 candidates
[00000327] vcd access debug: trying .cue file: /home/vlc/videoproj.cue
[00000327] vcd access debug: could not find .cue file
[00000327] access_file access debug: opening file `/home/vlc/videoproj.mpg'
[00000327] main access debug: using access module "access_file"
[00000327] main access debug: TIMER module_Need() : 4,031 ms - Total 4,031 ms / 1 intvls (Avg 4,031 ms)
[00000329] main stream debug: Using AStream*Stream
[00000329] main stream debug: pre-buffering...
[00000329] main stream debug: received first data for our buffer
[00000329] main stream debug: pre-buffering done 1408981 bytes in 0s - 97703 kbytes/s
[00000317] main input debug: creating demux: access='' demux='' path='/home/vlc/videoproj.mpg'
[00000330] main demux debug: looking for demux module: 44 candidates
[00000330] main demux debug: using demux module "ps"
[00000330] main demux debug: TIMER module_Need() : 8,327 ms - Total 8,327 ms / 1 intvls (Avg 8,327 ms)
[00000317] main input debug: looking for a subtitle file in /home/vlc/
[00000317] main input debug: starting in async mode
[00000317] main input debug: `/home/vlc/videoproj.mpg' successfully opened
[00000330] ps demux warning: garbage at input, trying to resync...
[00000330] ps demux warning: found sync code
[00000330] ps demux debug: we found a length of: 145397555
[00000330] ps demux debug: we found a length of: 145541666
[00000317] main input debug: control type=1
[00000317] main input debug: selecting program id=0
[00000357] main packetizer debug: looking for packetizer module: 16 candidates
[00000357] main packetizer debug: using packetizer module "mpeg_audio"
[00000357] main packetizer debug: TIMER module_Need() : 5,161 ms - Total 5,161 ms / 1 intvls (Avg 5,161 ms)
[00000317] main input debug: stream out mode -> no decoder thread
[00000381] main packetizer debug: looking for packetizer module: 16 candidates
[00000381] main packetizer debug: using packetizer module "packetizer_mpegvideo"
[00000381] main packetizer debug: TIMER module_Need() : 1,866 ms - Total 1,866 ms / 1 intvls (Avg 1,866 ms)
[00000317] main input debug: stream out mode -> no decoder thread
[00000381] packetizer_mpegvideo packetizer debug: size 384x288 fps=24,000
[00000357] mpeg_audio packetizer debug: waiting for PTS
[00000318] main stream output debug: adding a new sout input (sout_input:0x8803140)
[00000324] main mux debug: adding a new input
[00000324] mux_ps mux debug: adding input codec=mpgv
[00000318] main stream output warning: trying to send non-dated packet to stream output!
[00000381] main packetizer debug: switching to sync mode
[00000324] main mux warning: late buffer for mux input (1245672926256957)
[00000324] main mux warning: late buffer for mux input (1245672926216299)
[00000324] main mux warning: late buffer for mux input (1245672926175677)
[00000324] main mux warning: late buffer for mux input (1245672926134937)
[00000324] main mux warning: late buffer for mux input (1245672926094320)
[00000323] main http server debug: thread started
[00000324] main mux warning: late buffer for mux input (1245672926053747)
[00000357] mpeg_audio packetizer debug: MPGA channels:2 samplerate:22050 bitrate:64
[00000318] main stream output debug: adding a new sout input (sout_input:0x87f4d10)
[00000324] main mux debug: adding a new input
[00000324] mux_ps mux debug: adding input codec=mpga
[00000307] http interface debug: requested VLC_OBJECT_PLAYLIST var change: repeat->1
[00000317] main input debug: EOF reached
[00000280] main playlist debug: finished input
[00000280] main playlist debug: dying input
[00000280] main playlist debug: dying input
[00000357] main packetizer debug: removing module "mpeg_audio"
[00000357] main packetizer debug: killing decoder fourcc `mpga', 0 PES in FIFO
[00000318] main stream output debug: removing a sout input (sout_input:0x87f4d10)
[00000324] mux_ps mux debug: removing input
[00000381] main packetizer debug: removing module "packetizer_mpegvideo"
[00000381] main packetizer debug: killing decoder fourcc `mpgv', 0 PES in FIFO
[00000318] main stream output debug: removing a sout input (sout_input:0x8803140)
[00000324] mux_ps mux debug: removing input
[00000324] main mux warning: no more input streams for this mux
[00000317] main input debug: Program doesn't contain anymore ES
[00000330] main demux debug: removing module "ps"
[00000327] main access debug: removing module "access_file"
[00000317] main input debug: thread ended
[00000280] main playlist debug: dead input
[00000317] main input debug: thread 2979453872 joined (playlist/engine.c:244)
[00000317] main input debug: TIMER input launching for '/home/vlc/videoproj.mpg :sout=#std{access=http,mux=mpeg1,dst=10.40.0.154:8081}' : 67,953 ms - Total 67,953 ms / 1 intvls (Avg 67,953 ms)
[00000319] main stream out debug: destroying chain... (name=std)
[00000324] mux_ps mux: Close
[00000324] main mux debug: removing module "mux_ps"
[00000323] main http server debug: waitpipe: object killed
[00000323] main http server debug: thread ended
[00000323] main http server debug: thread 2968964016 joined (network/httpd.c:1164)
[00000323] main http server debug: HTTP host removed
[00000321] access_output_http access out debug: Close
[00000321] main access out debug: removing module "access_output_http"
[00000319] main stream out debug: removing module "stream_out_standard"
[00000319] main stream out debug: destroying chain done
[00000280] main playlist debug: starting new item
[00000280] main playlist debug: repeating item
[00000280] main playlist debug: creating new input thread
[00000382] main input debug: Creating an input for '/home/vlc/videoproj.mpg :sout=#std{access=http,mux=mpeg1,dst=10.40.0.154:8081}'
[00000382] main input debug: waiting for thread initialization
[00000382] main input debug: thread started
[00000383] main stream output debug: stream=`std'
[00000384] main stream out debug: looking for sout stream module: 1 candidate
[00000384] main stream out debug: set config option: sout-standard-access to http
[00000384] main stream out debug: set config option: sout-standard-mux to mpeg1
[00000384] main stream out debug: set config option: sout-standard-dst to 10.40.0.154:8081
[00000384] stream_out_standard stream out debug: creating `http/mpeg1://10.40.0.154:8081'
[00000384] stream_out_standard stream out debug: extension is 154:8081
[00000384] stream_out_standard stream out debug: extension -> mux=(null)
[00000384] stream_out_standard stream out debug: using `http/mpeg1://10.40.0.154:8081'
[00000385] main access out debug: looking for sout access module: 1 candidate
[00000385] main access out debug: net: listening to 10.40.0.154 port 8081
[00000386] main http server debug: thread 2979453872 (httpd host thread) created at priority 0 (network/httpd.c:1107)
[00000385] main access out debug: using sout access module "access_output_http"
[00000385] main access out debug: TIMER module_Need() : 5,992 ms - Total 5,992 ms / 1 intvls (Avg 5,992 ms)
[00000384] stream_out_standard stream out debug: access opened
[00000387] main mux debug: looking for sout mux module: 1 candidate
[00000387] mux_ps mux: Open
[00000387] main mux debug: using sout mux module "mux_ps"
[00000387] main mux debug: TIMER module_Need() : 2,732 ms - Total 2,732 ms / 1 intvls (Avg 2,732 ms)
[00000383] main stream output debug: muxer support adding stream at any time
[00000384] stream_out_standard stream out debug: mux opened
[00000384] main stream out debug: using sout stream module "stream_out_standard"
[00000384] main stream out debug: TIMER module_Need() : 20,143 ms - Total 20,143 ms / 1 intvls (Avg 20,143 ms)
[00000382] main input debug: `/home/vlc/videoproj.mpg' gives access `' demux `' path `/home/vlc/videoproj.mpg'
[00000382] main input debug: creating demux: access='' demux='' path='/home/vlc/videoproj.mpg'
[00000388] main demux debug: looking for access_demux module: 0 candidates
[00000388] main demux warning: no access_demux module matched "any"
[00000388] main demux debug: TIMER module_Need() : 1,811 ms - Total 1,811 ms / 1 intvls (Avg 1,811 ms)
[00000382] main input debug: creating access '' path='/home/vlc/videoproj.mpg'
[00000389] main access debug: looking for access module: 5 candidates
[00000389] vcd access debug: trying .cue file: /home/vlc/videoproj.cue
[00000389] vcd access debug: could not find .cue file
[00000389] access_file access debug: opening file `/home/vlc/videoproj.mpg'
[00000389] main access debug: using access module "access_file"
[00000389] main access debug: TIMER module_Need() : 3,886 ms - Total 3,886 ms / 1 intvls (Avg 3,886 ms)
[00000390] main stream debug: Using AStream*Stream
[00000390] main stream debug: pre-buffering...
[00000390] main stream debug: received first data for our buffer
[00000390] main stream debug: pre-buffering done 1408981 bytes in 0s - 108104 kbytes/s
[00000382] main input debug: creating demux: access='' demux='' path='/home/vlc/videoproj.mpg'
[00000391] main demux debug: looking for demux module: 44 candidates
[00000391] main demux debug: using demux module "ps"
[00000391] main demux debug: TIMER module_Need() : 2,955 ms - Total 2,955 ms / 1 intvls (Avg 2,955 ms)
[00000382] main input debug: looking for a subtitle file in /home/vlc/
[00000382] main input error: couldn't set priority of non-existent thread
[00000382] main input debug: starting in async mode
[00000382] main input debug: `/home/vlc/videoproj.mpg' successfully opened
[00000382] main input debug: thread 2968964016 (input) created at priority 10 (input/input.c:370)
[00000386] main http server debug: thread started
[00000391] ps demux warning: garbage at input, trying to resync...
[00000391] ps demux warning: found sync code
[00000391] ps demux debug: we found a length of: 145397555
[00000391] ps demux debug: we found a length of: 145541666
[00000382] main input debug: control type=1
[00000382] main input debug: selecting program id=0
[00000392] main packetizer debug: looking for packetizer module: 16 candidates
[00000392] main packetizer debug: using packetizer module "mpeg_audio"
[00000392] main packetizer debug: TIMER module_Need() : 1,214 ms - Total 1,214 ms / 1 intvls (Avg 1,214 ms)
[00000382] main input debug: stream out mode -> no decoder thread
[00000393] main packetizer debug: looking for packetizer module: 16 candidates
[00000393] main packetizer debug: using packetizer module "packetizer_mpegvideo"
[00000393] main packetizer debug: TIMER module_Need() : 1,889 ms - Total 1,889 ms / 1 intvls (Avg 1,889 ms)
[00000382] main input debug: stream out mode -> no decoder thread
[00000393] packetizer_mpegvideo packetizer debug: size 384x288 fps=24,000
[00000392] mpeg_audio packetizer debug: waiting for PTS
[00000383] main stream output debug: adding a new sout input (sout_input:0x87f1740)
[00000387] main mux debug: adding a new input
[00000387] mux_ps mux debug: adding input codec=mpgv
[00000383] main stream output warning: trying to send non-dated packet to stream output!
[00000393] main packetizer debug: switching to sync mode
[00000387] main mux warning: late buffer for mux input (1245673071583087)
[00000387] main mux warning: late buffer for mux input (1245673071542432)
[00000387] main mux warning: late buffer for mux input (1245673071501814)
[00000387] main mux warning: late buffer for mux input (1245673071461056)
[00000387] main mux warning: late buffer for mux input (1245673071420367)
[00000387] main mux warning: late buffer for mux input (1245673071381050)
[00000392] mpeg_audio packetizer debug: MPGA channels:2 samplerate:22050 bitrate:64
[00000383] main stream output debug: adding a new sout input (sout_input:0x87f0ba0)
[00000387] main mux debug: adding a new input
[00000387] mux_ps mux debug: adding input codec=mpga
[00000382] main input debug: EOF reached
[00000280] main playlist debug: finished input
[00000280] main playlist debug: dying input
[00000280] main playlist debug: dying input
[00000392] main packetizer debug: removing module "mpeg_audio"
[00000392] main packetizer debug: killing decoder fourcc `mpga', 0 PES in FIFO
[00000383] main stream output debug: removing a sout input (sout_input:0x87f0ba0)
[00000387] mux_ps mux debug: removing input
[00000393] main packetizer debug: removing module "packetizer_mpegvideo"
[00000393] main packetizer debug: killing decoder fourcc `mpgv', 0 PES in FIFO
[00000383] main stream output debug: removing a sout input (sout_input:0x87f1740)
[00000387] mux_ps mux debug: removing input
[00000387] main mux warning: no more input streams for this mux
[00000382] main input debug: Program doesn't contain anymore ES
[00000391] main demux debug: removing module "ps"
[00000280] main playlist debug: dying input
[00000389] main access debug: removing module "access_file"
[00000382] main input debug: thread ended
[00000280] main playlist debug: dead input
[00000382] main input debug: thread 2968964016 joined (playlist/engine.c:244)
[00000382] main input debug: TIMER input launching for '/home/vlc/videoproj.mpg :sout=#std{access=http,mux=mpeg1,dst=10.40.0.154:8081}' : 62,964 ms - Total 62,964 ms / 1 intvls (Avg 62,964 ms)
[00000384] main stream out debug: destroying chain... (name=std)
[00000387] mux_ps mux: Close
[00000387] main mux debug: removing module "mux_ps"
[00000386] main http server debug: waitpipe: object killed
[00000386] main http server debug: thread ended
[00000386] main http server debug: thread 2979453872 joined (network/httpd.c:1164)
[00000386] main http server debug: HTTP host removed
[00000385] access_output_http access out debug: Close
[00000385] main access out debug: removing module "access_output_http"
[00000384] main stream out debug: removing module "stream_out_standard"
[00000384] main stream out debug: destroying chain done
[00000280] main playlist debug: starting new item
[00000280] main playlist debug: repeating item
[00000280] main playlist debug: creating new input thread
[00000394] main input debug: Creating an input for '/home/vlc/videoproj.mpg :sout=#std{access=http,mux=mpeg1,dst=10.40.0.154:8081}'
[00000394] main input debug: waiting for thread initialization
[00000394] main input debug: thread started
[00000395] main stream output debug: stream=`std'
[00000396] main stream out debug: looking for sout stream module: 1 candidate
[00000396] main stream out debug: set config option: sout-standard-access to http
[00000396] main stream out debug: set config option: sout-standard-mux to mpeg1
[00000396] main stream out debug: set config option: sout-standard-dst to 10.40.0.154:8081
[00000396] stream_out_standard stream out debug: creating `http/mpeg1://10.40.0.154:8081'
[00000396] stream_out_standard stream out debug: extension is 154:8081
[00000396] stream_out_standard stream out debug: extension -> mux=(null)
[00000396] stream_out_standard stream out debug: using `http/mpeg1://10.40.0.154:8081'
[00000397] main access out debug: looking for sout access module: 1 candidate
[00000397] main access out debug: net: listening to 10.40.0.154 port 8081
[00000398] main http server debug: thread 2968964016 (httpd host thread) created at priority 0 (network/httpd.c:1107)
[00000397] main access out debug: using sout access module "access_output_http"
[00000397] main access out debug: TIMER module_Need() : 5,023 ms - Total 5,023 ms / 1 intvls (Avg 5,023 ms)
[00000396] stream_out_standard stream out debug: access opened
[00000399] main mux debug: looking for sout mux module: 1 candidate
[00000399] mux_ps mux: Open
[00000399] main mux debug: using sout mux module "mux_ps"
[00000399] main mux debug: TIMER module_Need() : 1,762 ms - Total 1,762 ms / 1 intvls (Avg 1,762 ms)
[00000395] main stream output debug: muxer support adding stream at any time
[00000396] stream_out_standard stream out debug: mux opened
[00000396] main stream out debug: using sout stream module "stream_out_standard"
[00000396] main stream out debug: TIMER module_Need() : 17,089 ms - Total 17,089 ms / 1 intvls (Avg 17,089 ms)
[00000394] main input debug: `/home/vlc/videoproj.mpg' gives access `' demux `' path `/home/vlc/videoproj.mpg'
[00000394] main input debug: creating demux: access='' demux='' path='/home/vlc/videoproj.mpg'
[00000400] main demux debug: looking for access_demux module: 0 candidates
[00000400] main demux warning: no access_demux module matched "any"
[00000400] main demux debug: TIMER module_Need() : 0,273 ms - Total 0,273 ms / 1 intvls (Avg 0,273 ms)
[00000394] main input debug: creating access '' path='/home/vlc/videoproj.mpg'
[00000401] main access debug: looking for access module: 5 candidates
[00000401] vcd access debug: trying .cue file: /home/vlc/videoproj.cue
[00000401] vcd access debug: could not find .cue file
[00000401] access_file access debug: opening file `/home/vlc/videoproj.mpg'
[00000401] main access debug: using access module "access_file"
[00000401] main access debug: TIMER module_Need() : 2,076 ms - Total 2,076 ms / 1 intvls (Avg 2,076 ms)
[00000402] main stream debug: Using AStream*Stream
[00000402] main stream debug: pre-buffering...
[00000402] main stream debug: received first data for our buffer
[00000394] main input debug: thread 2979453872 (input) created at priority 10 (input/input.c:370)
[00000398] main http server debug: thread started
[00000402] main stream debug: pre-buffering done 1408981 bytes in 0s - 97717 kbytes/s
[00000394] main input debug: creating demux: access='' demux='' path='/home/vlc/videoproj.mpg'
[00000403] main demux debug: looking for demux module: 44 candidates
[00000403] main demux debug: using demux module "ps"
[00000403] main demux debug: TIMER module_Need() : 2,221 ms - Total 2,221 ms / 1 intvls (Avg 2,221 ms)
[00000394] main input debug: looking for a subtitle file in /home/vlc/
[00000394] main input debug: starting in async mode
[00000394] main input debug: `/home/vlc/videoproj.mpg' successfully opened
[00000403] ps demux warning: garbage at input, trying to resync...
[00000403] ps demux warning: found sync code
[00000403] ps demux debug: we found a length of: 145397555
[00000403] ps demux debug: we found a length of: 145541666
[00000394] main input debug: control type=1
[00000394] main input debug: selecting program id=0
[00000404] main packetizer debug: looking for packetizer module: 16 candidates
[00000404] main packetizer debug: using packetizer module "mpeg_audio"
[00000404] main packetizer debug: TIMER module_Need() : 3,928 ms - Total 3,928 ms / 1 intvls (Avg 3,928 ms)
[00000394] main input debug: stream out mode -> no decoder thread
[00000405] main packetizer debug: looking for packetizer module: 16 candidates
[00000405] main packetizer debug: using packetizer module "packetizer_mpegvideo"
[00000405] main packetizer debug: TIMER module_Need() : 2,699 ms - Total 2,699 ms / 1 intvls (Avg 2,699 ms)
[00000394] main input debug: stream out mode -> no decoder thread
[00000405] packetizer_mpegvideo packetizer debug: size 384x288 fps=24,000
[00000404] mpeg_audio packetizer debug: waiting for PTS
[00000395] main stream output debug: adding a new sout input (sout_input:0x87de558)
[00000399] main mux debug: adding a new input
[00000399] mux_ps mux debug: adding input codec=mpgv
[00000395] main stream output warning: trying to send non-dated packet to stream output!
[00000405] main packetizer debug: switching to sync mode
[00000399] main mux warning: late buffer for mux input (1245673216946966)
[00000399] main mux warning: late buffer for mux input (1245673216906259)
[00000399] main mux warning: late buffer for mux input (1245673216865638)
[00000399] main mux warning: late buffer for mux input (1245673216824883)
[00000399] main mux warning: late buffer for mux input (1245673216783395)
[00000399] main mux warning: late buffer for mux input (1245673216743958)
[00000404] mpeg_audio packetizer debug: MPGA channels:2 samplerate:22050 bitrate:64
[00000395] main stream output debug: adding a new sout input (sout_input:0x87df870)
[00000399] main mux debug: adding a new input
[00000399] mux_ps mux debug: adding input codec=mpga
[00000394] main input debug: EOF reached
[00000280] main playlist debug: finished input
[00000280] main playlist debug: dying input
[00000280] main playlist debug: dying input
[00000404] main packetizer debug: removing module "mpeg_audio"
[00000404] main packetizer debug: killing decoder fourcc `mpga', 0 PES in FIFO
[00000395] main stream output debug: removing a sout input (sout_input:0x87df870)
[00000399] mux_ps mux debug: removing input
[00000405] main packetizer debug: removing module "packetizer_mpegvideo"
[00000405] main packetizer debug: killing decoder fourcc `mpgv', 0 PES in FIFO
[00000395] main stream output debug: removing a sout input (sout_input:0x87de558)
[00000399] mux_ps mux debug: removing input
[00000399] main mux warning: no more input streams for this mux
[00000394] main input debug: Program doesn't contain anymore ES
[00000403] main demux debug: removing module "ps"
[00000401] main access debug: removing module "access_file"
[00000394] main input debug: thread ended
[00000280] main playlist debug: dead input
[00000394] main input debug: thread 2979453872 joined (playlist/engine.c:244)
[00000394] main input debug: TIMER input launching for '/home/vlc/videoproj.mpg :sout=#std{access=http,mux=mpeg1,dst=10.40.0.154:8081}' : 50,921 ms - Total 50,921 ms / 1 intvls (Avg 50,921 ms)
[00000396] main stream out debug: destroying chain... (name=std)
[00000399] mux_ps mux: Close
[00000399] main mux debug: removing module "mux_ps"
Erreur de segmentation
[vlc@localhost ~]$
Could help me ?