ZeBobo5 / Vlc.DotNet

.NET control that hosts the audio/video capabilities of the VLC libraries
MIT License
947 stars 415 forks source link

stream over Multicast group #366

Closed veso266 closed 6 years ago

veso266 commented 6 years ago

Hi I can't seem to figure out how can I stream a file over multicast group and view it while streaming I tried modifying example winform app with this:

string[] test = new string[]
            {
                ":sout=#duplicate{dst=display,dst=std {access=udpmux=ts,dst=232.2.8.4:5002} :sout-all :sout-keep"
            };
            myVlcControl.Play(new FileInfo(@"C:\\simpsons.avi"), test);

but as video plays fine nothing is transmitted over multicast group (normal vlc (not NET library) works fine) and for some reason my resource windows crashed in VS2015 so I don't know what is going on (no exeption occures)

Thanks for Helping and Best Regards

jeremyVignelles commented 6 years ago

Hi, please use the issue template when submitting the issue. specifically, I need the version of libvlc you are using. Please also try to split your string : :sout-all and :sout-keep need to be in a different array item.

veso266 commented 6 years ago

Hi sorry for not using the template but I am using Vlc.DotNet version 2.2.1 (core, WinForms and Core.Interops) and I am using 32 bit libvlc.dll that came with this repo and I am using NET 4.5

PS: is there any specific reason why would I need to split :sout-all and :sout-keep or its just for estetic purposes?

Thanks for Anwsering and Best Regards

jeremyVignelles commented 6 years ago

The library that comes with this repository is outdated, please do not use it (see #288 and https://github.com/ZeBobo5/Vlc.DotNet/wiki/Getting-started#getting-libvlc ).

If you want to confirm that "It works in VLC but not with this project", please make sure that you are using the same version for both.

Yes, there is a reason to split : When you pass arguments to a command line, the arguments behind are space separated and converted into an array (by splitting at spaces) by the operating system. Since you are using a library and not running a command line, arguments are expected to be given as an array. Maybe vlc will be smart enough to resplit the array correctly, but most probably not.

You should also have a log file that is created near to your project or executable if you have not specified anything in VlcMediaPlayerOptions .

veso266 commented 6 years ago

I splitted the options so it looks like this now

            string[] test = new string[]
            {
                ":sout=#duplicate{dst=display,dst=std {access=udpmux=ts,dst=232.2.8.4:5002}",
                ":sout-all",
                ":sout-keep"
            };
            myVlcControl.Play(new FileInfo(@"C:\\simpsons.avi"), test);

using this lib: http://download.videolan.org/pub/videolan/vlc/2.1.5/win32/vlc-2.1.5-win32.7z and using VLC 2.1.5 to compare to

for some reason resource monitor in VS2015 decided to work again libvlcerror

for some reason there is no log at build\Vlc.DotNet.Forms.Samples\Debug - AnyCPU - .Net 4.5\

realy don't know how to debug this and don't know why there isn't any error shown

Thanks for Anwsering and Best Regards

jeremyVignelles commented 6 years ago

Oh, I forgot about that, but the WinForms sample is in fact registering a log callback, which cause the log to be printed on the console rather than in the file.

You can see that in Debug/Windows/Output window (or something). You can also remove the log callback from the designer so that logs are printed to a file.

Once you've got logs, could you upload the log file here?

veso266 commented 6 years ago

well as I didn't know how to remove log callback from the designer I just called a log class from here:

private void OnVlcMediaPlayerLog(object sender, Core.VlcMediaPlayerLogEventArgs e)
LogWriter debug = new LogWriter(string.Format("libVlc : {0} {1} @ {2}", e.Level, e.Message, e.Module));

and I've found this class here: https://stackoverflow.com/a/20185061/3368585

and here are the logs:

Log Entry : 19:27:41 10. januar 2018
  :
  :libVlc : Debug VLC media player - 2.1.5 Rincewind @ main
-------------------------------

Log Entry : 19:27:41 10. januar 2018
  :
  :libVlc : Debug Copyright © 1996-2014 the VideoLAN team @ main
-------------------------------

Log Entry : 19:27:41 10. januar 2018
  :
  :libVlc : Debug configured with ../extras/package/win32/../../../configure  '--enable-update-check' '--enable-lua' '--enable-faad' '--enable-flac' '--enable-theora' '--enable-twolame' '--enable-quicktime' '--enable-avcodec' '--enable-merge-ffmpeg' '--enable-dca' '--enable-mpc' '--enable-libass' '--enable-x264' '--enable-schroedinger' '--enable-realrtsp' '--enable-live555' '--enable-dvdread' '--enable-shout' '--enable-goom' '--enable-caca' '--disable-sdl' '--enable-qt' '--enable-skins2' '--enable-sse' '--enable-mmx' '--enable-libcddb' '--enable-zvbi' '--disable-telx' '--enable-nls' '--disable-dirac' '--host=i686-w64-mingw32' 'host_alias=i686-w64-mingw32' @ main
-------------------------------

Log Entry : 19:27:41 10. januar 2018
  :
  :libVlc : Debug revision 2.1.5-9-gb3fd0af @ main
-------------------------------

Log Entry : 19:27:50 10. januar 2018
  :
  :libVlc : Debug Creating an input for 'simpsons.avi' @ main
-------------------------------

Log Entry : 19:27:50 10. januar 2018
  :
  :libVlc : Debug using sout chain=`duplicate{dst=display,dst=std {access=udpmux=ts,dst=232.2.8.4:5002}' @ main
-------------------------------

Log Entry : 19:27:50 10. januar 2018
  :
  :libVlc : Debug  * adding `std {access=udpmux=ts,dst=232.2.8.4:5002}' @ stream_out_duplicate
-------------------------------

Log Entry : 19:27:50 10. januar 2018
  :
  :libVlc : Debug stream=`duplicate' @ main
-------------------------------

Log Entry : 19:27:50 10. januar 2018
  :
  :libVlc : Debug using sout stream module "stream_out_display" @ main
-------------------------------

Log Entry : 19:27:50 10. januar 2018
  :
  :libVlc : Debug looking for sout stream module matching "std": zd candidates @ main
-------------------------------

Log Entry : 19:27:50 10. januar 2018
  :
  :libVlc : Debug  * adding `display' @ stream_out_duplicate
-------------------------------

Log Entry : 19:27:50 10. januar 2018
  :
  :libVlc : Debug creating 'duplicate' @ stream_out_duplicate
-------------------------------

Log Entry : 19:27:50 10. januar 2018
  :
  :libVlc : Debug stream=`display' @ main
-------------------------------

Log Entry : 19:27:50 10. januar 2018
  :
  :libVlc : Debug set config option: sout-standard-access to udpmux=ts @ main
-------------------------------

Log Entry : 19:27:50 10. januar 2018
  :
  :libVlc : Debug set config option: sout-standard-dst to 232.2.8.4:5002 @ main
-------------------------------

Log Entry : 19:27:50 10. januar 2018
  :
  :libVlc : Debug looking for sout stream module matching "display": zd candidates @ main
-------------------------------

Log Entry : 19:27:50 10. januar 2018
  :
  :libVlc : Debug stream=`std' @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug no sout stream modules matched @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Error no mux specified or found by extension @ stream_out_standard
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug looking for sout stream module matching "duplicate": zd candidates @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug using sout stream module "stream_out_duplicate" @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug destroying chain... (name=(null)) @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug destroying chain done @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug creating demux: access='file' demux='' location='/C:/simpsons.avi' file='C:\simpsons.avi' @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug `file:///C:/simpsons.avi' gives access `file' demux `' path `/C:/simpsons.avi' @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug using timeshift granularity of 50 MiB, in path 'C:\Users\Mitja\AppData\Local\Temp' @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug creating access 'file' location='/C:/simpsons.avi', path='C:\simpsons.avi' @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug looking for access module matching "file": zd candidates @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug opening file `C:\simpsons.avi' @ filesystem
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug looking for access_demux module matching "file": zd candidates @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug no access_demux modules matched @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug Using stream method for AStream* @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug using access module "filesystem" @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug starting pre-buffering @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug looking for stream_filter module matching "any": zd candidates @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug received first data after 0 ms @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug pre-buffering done 1024 bytes in 0s - 1000000 KiB/s @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug no stream_filter modules matched @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug looking for stream_filter module matching "record": zd candidates @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug creating demux: access='file' demux='' location='/C:/simpsons.avi' file='C:\simpsons.avi' @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug <list 'AVI '> @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug </list 'strl'> @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug looking for demux module matching "avi": zd candidates @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug <list 'strl'> @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug using stream_filter module "record" @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug <list 'hdrl'> @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug </list 'strl'> @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug <list 'odml'> @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug <list 'strl'> @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug </list 'odml'> @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug <list 'INFO'> @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug </list 'hdrl'> @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug </list 'INFO'> @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug * LIST-root size:147095552 pos:0 @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug     + RIFF-AVI  size:147093936 pos:0 @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug </list 'AVI '> @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug skipping movi chunk @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug     |   |   + avih size:56 pos:24 @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug     |   |   + LIST-strl size:4244 pos:88 @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug     |   + LIST-hdrl size:8830 pos:12 @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug     |   |   + LIST-strl size:4234 pos:4340 @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug     |   |   |   + strf size:40 pos:164 @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug     |   |   |   + JUNK size:4120 pos:212 @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug     |   |   |   + strh size:56 pos:4352 @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug     |   |   |   + strf size:30 pos:4416 @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug     |   |   + LIST-odml size:260 pos:8582 @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug     |   |   |   + strh size:56 pos:100 @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug     |   |   + ISFT size:15 pos:8862 @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug     |   + LIST-INFO size:28 pos:8850 @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug     |   |   |   + JUNK size:4120 pos:4454 @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug     |   |   |   + dmlh size:248 pos:8594 @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug     |   + LIST-movi size:145750888 pos:10240 @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug     |   + JUNK size:1346 pos:8886 @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug stream[0] rate:29970 scale:1000 samplesize:0 @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug     + JUNK size:1600 pos:147093944 @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug stream[1] audio(0x55 - MPEG Audio layer 1/2/3) 2 channels 48000Hz 0bits @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug AVIH: 2 stream, flags  HAS_INDEX IS_INTERLEAVED  @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug selected standard index for stream[0] @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug     |   + idx1 size:1332800 pos:145761136 @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug selected standard index for stream[1] @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug stream[1] created 41643 index entries @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug stream[0] video(DIV3) 512x384 24bpp 29.970000fps @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug stream[0] created 41657 index entries @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug looking for a subtitle file in C:\ @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug stream[1] length:1389 (based on index) @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug using demux module "avi" @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug looking for packetizer module matching "any": zd candidates @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug stream[1] rate:20000 scale:1 samplesize:1 @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug selecting program id=0 @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug using packetizer module "packetizer_copy" @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug using packetizer module "mpeg_audio" @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug looking for packetizer module matching "any": zd candidates @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug Trying Lua scripts in C:\Users\Mitja\AppData\Roaming\vlc\lua\meta\reader @ lua
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug starting in async mode @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug looking for meta reader module matching "any": zd candidates @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug Buffering 0% @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug `file:///C:/simpsons.avi' successfully opened @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug Trying Lua scripts in C:\libVLC_x86\lua\meta\reader @ lua
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug no meta reader modules matched @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug Buffering 8% @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug switching to sync mode @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug stream[0] length:1389 (based on index) @ avi
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug Buffering 16% @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug Buffering 25% @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug Buffering 50% @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug Buffering 33% @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug Buffering 41% @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug Buffering 58% @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug Buffering 91% @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug Buffering 66% @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug Buffering 75% @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug Buffering 100% @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug MPGA channels:2 samplerate:48000 bitrate:160 @ mpeg_audio
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug Stream buffering done (325 ms in 1 ms) @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug using decoder module "mpeg_audio" @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug adding a new sout input (sout_input:073AA100) @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug looking for decoder module matching "any": zd candidates @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug adding a new sout input (sout_input:073AA160) @ main
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug duplicated a new stream codec=mpga (es=1 group=0) @ stream_out_duplicate
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug trying to use direct rendering @ avcodec
-------------------------------

Log Entry : 19:27:51 10. januar 2018
  :
  :libVlc : Debug     - added for output 0 @ stream_out_duplicate
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug looking for decoder module matching "any": zd candidates @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug allowing 4 thread(s) for decoding @ avcodec
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug using decoder module "avcodec" @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug duplicated a new stream codec=DIV3 (es=0 group=0) @ stream_out_duplicate
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug Buffering 83% @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug     - added for output 0 @ stream_out_duplicate
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug avcodec codec (MS MPEG-4 Video v3) started @ avcodec
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug MPGA channels:2 samplerate:48000 bitrate:160 @ mpeg_audio
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug Using Arial as font from file C:\Windows\Fonts\arial.ttf @ freetype
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug using fontsize: 2 @ freetype
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug Decoder buffering done in 52 ms @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug using text renderer module "freetype" @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug looking for video filter2 module matching "any": zd candidates @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug using video filter2 module "swscale" @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug looking for text renderer module matching "any": zd candidates @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug YUVP to YUVA converter @ yuvp
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug looking for video filter2 module matching "any": zd candidates @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug 32x32 chroma: YUVA -> 16x16 chroma: RGBA with scaling using Bicubic (good quality) @ swscale
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug using video filter2 module "yuvp" @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug Deinterlacing available @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug deinterlace 0, mode blend, is_needed 0 @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug Opening vout display wrapper @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug looking for vout display module matching "any": zd candidates @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug DirectXCreateWindow @ direct3d
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug creating Vout EventThread @ direct3d
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug looking for vout window hwnd module matching "embed-hwnd,any": zd candidates @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug created video sub-window @ direct3d
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug using vout window hwnd module "drawable" @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug Vout EventThread running @ direct3d
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Warning trying surface pixel format: YV12 @ direct3d
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug VoutDisplayEvent 'resize' 528x422 window @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug disabling screen saver @ direct3d
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug Direct3D scene created successfully @ direct3d
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug Direct3d Device: AMD Radeon (TM) R9 390 Series 4098 26545 128 @ direct3d
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug using vout display module "direct3d" @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug Direct3D device adapter successfully initialized @ direct3d
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug original format sz 512x384, of (0,0), vsz 512x384, 4cc I420, sar 1:1, msk r0x0 g0x0 b0x0 @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug Using D3DTEXF_LINEAR for minification @ direct3d
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug using direct rendering @ avcodec
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug Using D3DTEXF_LINEAR for magnification @ direct3d
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug VoutDisplayEvent 'resize' 564x338 window @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug creating audio output @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug selected surface pixel format is YV12 @ direct3d
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug looking for audio output module matching "any": zd candidates @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Error Failed to resize display @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Warning picture is too late to be displayed (missing 35 ms) @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Error Failed to set on top @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug using audio output module "directsound" @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Warning picture is too late to be displayed (missing 36 ms) @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug Windows speaker config: Stereo and stream has 2 channels, using 2 channels @ directsound
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug Opening DirectSound Audio Output @ directsound
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug picture might be displayed late (missing 3 ms) @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug found 6 devices @ directsound
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug output 'f32l' 48000 Hz Stereo frame=1 samples/8 bytes @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug looking for audio volume module matching "any": zd candidates @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug using audio volume module "float_mixer" @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug format: 48000 rate, 2 nch, 4 bps, fl32 @ scaletempo
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug looking for audio filter module matching "scaletempo": zd candidates @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug params: 30 stride, 0.200 overlap, 14 search @ scaletempo
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug input 'mpga' 48000 Hz Stereo frame=1152 samples/969 bytes @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug using audio filter module "scaletempo" @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug conversion: 'mpga'->'f32l' 48000 Hz->48000 Hz Stereo->Stereo @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug looking for audio converter module matching "any": zd candidates @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug 1.000 scale, 1440.000 stride_in, 1440 stride_out, 1152 standing, 288 overlap, 672 search, 2400 queue, fl32 mode @ scaletempo
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Warning picture is too late to be displayed (missing 70 ms) @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug using audio converter module "mpgatofixed32" @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug conversion pipeline complete @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug no audio converter modules matched @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug looking for audio converter module matching "any": zd candidates @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug mpga->f32l, bits per sample: 32 @ mpgatofixed32
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug conversion pipeline complete @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug looking for audio resampler module matching "any": zd candidates @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug using audio resampler module "samplerate" @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Warning buffer too late (-142000 us): dropped @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug conversion: 'f32l'->'f32l' 48000 Hz->48000 Hz Stereo->Stereo @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug auto hiding mouse cursor @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Error libmad error: bad main_data_begin pointer @ mpgatofixed32
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Warning buffer too late (-118000 us): dropped @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Warning buffer too late (-72000 us): dropped @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug playback too late (50000): flushing buffers @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Debug picture might be displayed late (missing 0 ms) @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Warning playback too late (78583): up-sampling @ main
-------------------------------

Log Entry : 19:27:52 10. januar 2018
  :
  :libVlc : Warning buffer too late (-117000 us): dropped @ main
-------------------------------

Log Entry : 19:27:53 10. januar 2018
  :
  :libVlc : Debug auto hiding mouse cursor @ main
-------------------------------

Log Entry : 19:27:58 10. januar 2018
  :
  :libVlc : Debug auto hiding mouse cursor @ main
-------------------------------

Log Entry : 19:27:59 10. januar 2018
  :
  :libVlc : Debug auto hiding mouse cursor @ main
-------------------------------

Log Entry : 19:28:02 10. januar 2018
  :
  :libVlc : Debug auto hiding mouse cursor @ main
-------------------------------

Log Entry : 19:28:04 10. januar 2018
  :
  :libVlc : Debug auto hiding mouse cursor @ main
-------------------------------

Log Entry : 19:28:05 10. januar 2018
  :
  :libVlc : Warning playback too early (-40042): down-sampling @ main
-------------------------------

Log Entry : 19:28:08 10. januar 2018
  :
  :libVlc : Debug auto hiding mouse cursor @ main
-------------------------------

its a horrible solution to write logs to a file but it works :smiley:

jeremyVignelles commented 6 years ago

Didn't you forgot a "," in =udp,mux= ?

Next time, could you send the logs in an attached txt file rather than inline? 😄

veso266 commented 6 years ago

that "," did it all now it works Thanks you