looking for sout stream module: 0 candidates

This forum is about all development around libVLC.
androido
Blank Cone
Blank Cone
Posts: 28
Joined: 20 Jul 2011 11:47

looking for sout stream module: 0 candidates

Postby androido » 08 Aug 2011 16:39

And the libvlc works on Android, thanks for your help, but my last problem is. I have a little streaming application on android

Code: Select all

const char* argv[] = { "-I", "dummy", "--ignore-config", "--extraintf=logger", "--verbose=2" }; const char* sout = "#standard{access=http,mux=ogg,dst=192.168.0.2:8080}"; libvlc_instance_t* instance = libvlc_new_with_builtins(sizeof(argv) / sizeof(*argv),argv, vlc_builtins_modules); libvlc_vlm_add_broadcast(instance, "Play", "/data/ChairDivXL.avi", sout, 0, NULL, 1, 0); libvlc_vlm_play_media(instance, "Play");
The logcat output is

Code: Select all

D/vlc ( 1710): [0x291c0c] main libvlc debug: VLC media player - 1.2.0-git Twoflower D/vlc ( 1710): [0x291c0c] main libvlc debug: Copyright © 1996-2011 the VideoLAN team D/vlc ( 1710): [0x291c0c] main libvlc debug: revision 15cb236 D/vlc ( 1710): [0x291c0c] main libvlc debug: configured with ../extras/package/android/../../../configure '--host=arm-eabi-linux' '--build=x86_64-unknown-linux' '--enable-static-modules' '--disable-vlc' '--enable-debug' '--enable-vlm' '--enable-sout' '--enable-http' '--enable-httpd' '--disable-dbus' '--disable-lua' '--disable-libgcrypt' '--enable-live555' '--enable-realrtsp' '--disable-vcd' '--disable-v4l2' '--disable-gnomevfs' '--disable-dvdread' '--disable-dvdnav' '--disable-bluray' '--disable-linsys' '--disable-decklink' '--enable-avformat' '--enable-swscale' '--enable-avcodec' '--disable-libva' '--enable-mkv' '--disable-dv' '--disable-mod' '--disable-sid' '--disable-x264' '--disable-mad' '--disable-schroedinger' '--disable-dirac' '--disable-sdl-image' '--disable-zvbi' '--disable-fluidsynth' '--enable-opensles' '--disable-jack' '--disable-pulse' '--disable-alsa' '--disable-portaudio' '--disable-sdl' '--disable-xcb' '--disable-atmo' '--disable-qt4' '--disable-skins2' '--disable-mtp' '--disable-taglib' '--disable-notify' D/vlc ( 1710): [0x291c0c] main libvlc debug: translation test: code is "C" D/vlc ( 1710): [0x291c0c] main libvlc debug: checking plugin modules D/vlc ( 1710): [0x291c0c] main libvlc debug: loading plugins cache file /data/data/inca.Server/lib/vlc/plugins/plugins-04041e-0.dat W/vlc ( 1710): [0x291c0c] main libvlc warning: cannot read /data/data/inca.Server/lib/vlc/plugins/plugins-04041e-0.dat (No such file or directory) D/vlc ( 1710): [0x291c0c] main libvlc debug: recursively browsing `/data/data/inca.Server/lib/vlc/plugins' D/vlc ( 1710): [0x291c0c] main libvlc debug: saving plugins cache /data/data/inca.Server/lib/vlc/plugins/plugins-04041e-0.dat D/vlc ( 1710): [0x291c0c] main libvlc debug: module bank initialized (264 modules) D/vlc ( 1710): [0x291c0c] main libvlc debug: looking for memcpy module: 1 candidate D/vlc ( 1710): [0x291c0c] main libvlc debug: using memcpy module "dummy" D/vlc ( 1710): [0x32073c] main interface debug: looking for interface module: 1 candidate I/vlc ( 1710): [0x32073c] logger interface: using logger. W/vlc ( 1710): [0x32073c] logger interface warning: no log filename provided, using `vlc-log.txt' D/vlc ( 1710): [0x32073c] logger interface debug: opening logfile `vlc-log.txt' E/vlc ( 1710): [0x32073c] logger interface error: error opening logfile `vlc-log.txt' D/vlc ( 1710): [0x32073c] main interface debug: no interface module matching "logger,none" could be loaded D/vlc ( 1710): [0x32073c] main interface debug: TIMER module_need() : 0.397 ms - Total 0.397 ms / 1 intvls (Avg 0.397 ms) E/vlc ( 1710): [0x32073c] main interface error: no suitable interface module D/vlc ( 1710): [0x32072c] main interface debug: looking for interface module: 1 candidate D/vlc ( 1710): [0x32072c] main interface debug: using interface module "hotkeys" D/vlc ( 1710): [0x32072c] main interface debug: TIMER module_need() : 1.404 ms - Total 1.404 ms / 1 intvls (Avg 1.404 ms) D/vlc ( 1710): [0x291c0c] main libvlc debug: creating VLM D/vlc ( 1710): [0x321354] main input debug: Creating an input for 'ChairDivXL.avi' D/vlc ( 1710): [0x321354] [Media: Play] main input debug: thread started D/vlc ( 1710): [0x324cdc] main stream output debug: using sout chain=`standard{access=http,mux=ogg,dst=192.168.0.2:8080}' D/vlc ( 1710): [0x324cdc] main stream output debug: stream=`standard' D/vlc ( 1710): [0x324ed4] main stream out debug: looking for sout stream module: 0 candidates D/vlc ( 1710): [0x324ed4] main stream out debug: no sout stream module matched "standard" D/vlc ( 1710): [0x324ed4] main stream out debug: TIMER module_need() : 0.427 ms - Total 0.427 ms / 1 intvls (Avg 0.427 ms) D/vlc ( 1710): [0x324ed4] main stream out debug: destroying chain... (name=(null)) D/vlc ( 1710): [0x324ed4] main stream out debug: destroying chain done
D/vlc ( 1710): [0x324ed4] main stream out debug: looking for sout stream module: 0 candidates
D/vlc ( 1710): [0x324ed4] main stream out debug: no sout stream module matched "standard"

I made --enable-sout and --enable-http in the configure.sh, but it does not work. I found a few similar problems in the internet but all of them got solved by setting the --enable-sout, what can I do? I think its only a little flag, isn't it?

Jean-Baptiste Kempf
Site Administrator
Site Administrator
Posts: 37523
Joined: 22 Jul 2005 15:29
VLC version: 4.0.0-git
Operating System: Linux, Windows, Mac
Location: Cone, France
Contact:

Re: looking for sout stream module: 0 candidates

Postby Jean-Baptiste Kempf » 08 Aug 2011 22:07

You need to patch a lot many more things, like contribs...
Jean-Baptiste Kempf
http://www.jbkempf.com/ - http://www.jbkempf.com/blog/category/Videolan
VLC media player developer, VideoLAN President and Sites administrator
If you want an answer to your question, just be specific and precise. Don't use Private Messages.

Rémi Denis-Courmont
Developer
Developer
Posts: 15330
Joined: 07 Jun 2004 16:01
VLC version: master
Operating System: Linux
Contact:

Re: looking for sout stream module: 0 candidates

Postby Rémi Denis-Courmont » 09 Aug 2011 09:00

That simply means there are none of the stream output plugins in your build. Presumably, you've enabled the core support only.
Rémi Denis-Courmont
https://www.remlab.net/
Private messages soliciting support will be systematically discarded

androido
Blank Cone
Blank Cone
Posts: 28
Joined: 20 Jul 2011 11:47

Re: looking for sout stream module: 0 candidates

Postby androido » 09 Aug 2011 10:13

What I'm searching is in the "libstream_out_standard_plugin.a" isn't it? Please give me a feedback if its right or not. I found the libstream_out_standard_plugin.a but not in the libvlcjni.so, if I'm right than i just have bind the libstream_out_standard_plugin.a in the libvlcjni.so? But the libstream_out_standard_plugin.a is referred in the Android.mk but not included in the libstream_out_standard_plugin.a. I think its the same problem i had a little time before viewtopic.php?f=32&t=92557. But which methods I need to activate the libstream-standard-plugin? If i include the "vlc_sout.h" in the Android.mk than it should work, what you think?

androido
Blank Cone
Blank Cone
Posts: 28
Joined: 20 Jul 2011 11:47

Re: looking for sout stream module: 0 candidates

Postby androido » 09 Aug 2011 13:16

It doesn't work, which library i need to activate? Btw my libvlcjni.h looks like that

Code: Select all

/* File: libvlcjni.h * Autogenerated from the list of modules */ vlc_declare_plugin(packetizer_h264); vlc_declare_plugin(packetizer_mlp); vlc_declare_plugin(packetizer_mpeg4audio); vlc_declare_plugin(packetizer_dirac); vlc_declare_plugin(packetizer_flac); vlc_declare_plugin(packetizer_copy); vlc_declare_plugin(packetizer_mpegvideo); vlc_declare_plugin(packetizer_mpeg4video); vlc_declare_plugin(packetizer_vc1); vlc_declare_plugin(avcodec); vlc_declare_plugin(subsdec); vlc_declare_plugin(araw); vlc_declare_plugin(dts); vlc_declare_plugin(cdg); vlc_declare_plugin(svcdsub); vlc_declare_plugin(libmpeg2); vlc_declare_plugin(aes3); vlc_declare_plugin(rawvideo); vlc_declare_plugin(kate); vlc_declare_plugin(png); vlc_declare_plugin(vorbis); vlc_declare_plugin(flac); vlc_declare_plugin(cc); vlc_declare_plugin(lpcm); vlc_declare_plugin(twolame); vlc_declare_plugin(theora); vlc_declare_plugin(telx); vlc_declare_plugin(cvdsub); vlc_declare_plugin(mpeg_audio); vlc_declare_plugin(t140); vlc_declare_plugin(dvbsub); vlc_declare_plugin(a52); vlc_declare_plugin(subsusf); vlc_declare_plugin(speex); vlc_declare_plugin(adpcm); vlc_declare_plugin(spudec); vlc_declare_plugin(dynamicoverlay); vlc_declare_plugin(gradfun); vlc_declare_plugin(swscale); vlc_declare_plugin(mirror); vlc_declare_plugin(marq); vlc_declare_plugin(extract); vlc_declare_plugin(rv32); vlc_declare_plugin(croppadd); vlc_declare_plugin(clone); vlc_declare_plugin(adjust); vlc_declare_plugin(rotate); vlc_declare_plugin(wave); vlc_declare_plugin(psychedelic); vlc_declare_plugin(audiobargraph_v); vlc_declare_plugin(grain); vlc_declare_plugin(alphamask); vlc_declare_plugin(canvas); vlc_declare_plugin(ball); vlc_declare_plugin(invert); vlc_declare_plugin(gaussianblur); vlc_declare_plugin(deinterlace); vlc_declare_plugin(osdmenu); vlc_declare_plugin(chain); vlc_declare_plugin(ripple); vlc_declare_plugin(sharpen); vlc_declare_plugin(rss); vlc_declare_plugin(yuvp); vlc_declare_plugin(erase); vlc_declare_plugin(noise); vlc_declare_plugin(posterize); vlc_declare_plugin(motiondetect); vlc_declare_plugin(mosaic); vlc_declare_plugin(logo); vlc_declare_plugin(gradient); vlc_declare_plugin(transform); vlc_declare_plugin(puzzle); vlc_declare_plugin(motionblur); vlc_declare_plugin(blend); vlc_declare_plugin(magnify); vlc_declare_plugin(scene); vlc_declare_plugin(blendbench); vlc_declare_plugin(scale); vlc_declare_plugin(wall); vlc_declare_plugin(postproc); vlc_declare_plugin(bluescreen); vlc_declare_plugin(subsdelay); vlc_declare_plugin(colorthres); vlc_declare_plugin(sepia); vlc_declare_plugin(a52tofloat32); vlc_declare_plugin(dtstospdif); vlc_declare_plugin(chorus_flanger); vlc_declare_plugin(compressor); vlc_declare_plugin(dolby_surround_decoder); vlc_declare_plugin(simple_channel_mixer); vlc_declare_plugin(spatializer); vlc_declare_plugin(converter_fixed); vlc_declare_plugin(trivial_channel_mixer); vlc_declare_plugin(scaletempo); vlc_declare_plugin(audio_format); vlc_declare_plugin(param_eq); vlc_declare_plugin(equalizer); vlc_declare_plugin(mono); vlc_declare_plugin(normvol); vlc_declare_plugin(audiobargraph_a); vlc_declare_plugin(a52tospdif); vlc_declare_plugin(ugly_resampler); vlc_declare_plugin(dtstofloat32); vlc_declare_plugin(headphone_channel_mixer); vlc_declare_plugin(hotkeys); vlc_declare_plugin(gestures); vlc_declare_plugin(motion); vlc_declare_plugin(netsync); vlc_declare_plugin(oldrc); vlc_declare_plugin(i420_yuy2_neon); vlc_declare_plugin(audio_format_neon); vlc_declare_plugin(i420_rgb_neon); vlc_declare_plugin(access_mms); vlc_declare_plugin(zip); vlc_declare_plugin(access_realrtsp); vlc_declare_plugin(access_bd); vlc_declare_plugin(rtp); vlc_declare_plugin(access_avio); vlc_declare_plugin(access_rar); vlc_declare_plugin(access_ftp); vlc_declare_plugin(access_imem); vlc_declare_plugin(access_attachment); vlc_declare_plugin(sdp); vlc_declare_plugin(access_udp); vlc_declare_plugin(stream_filter_rar); vlc_declare_plugin(access_http); vlc_declare_plugin(access_tcp); vlc_declare_plugin(filesystem); vlc_declare_plugin(access_vdr); vlc_declare_plugin(folder); vlc_declare_plugin(mediadirs); vlc_declare_plugin(sap); vlc_declare_plugin(podcast); vlc_declare_plugin(spdif_mixer); vlc_declare_plugin(float32_mixer); vlc_declare_plugin(trivial_mixer); vlc_declare_plugin(fb); vlc_declare_plugin(vout_android); vlc_declare_plugin(yuv); vlc_declare_plugin(vmem); vlc_declare_plugin(visual); vlc_declare_plugin(avi); vlc_declare_plugin(mkv); vlc_declare_plugin(asf); vlc_declare_plugin(h264); vlc_declare_plugin(mpgv); vlc_declare_plugin(es); vlc_declare_plugin(mp4); vlc_declare_plugin(playlist); vlc_declare_plugin(real); vlc_declare_plugin(ty); vlc_declare_plugin(vobsub); vlc_declare_plugin(nsc); vlc_declare_plugin(xa); vlc_declare_plugin(pva); vlc_declare_plugin(image); vlc_declare_plugin(demux_cdg); vlc_declare_plugin(vc1); vlc_declare_plugin(mjpeg); vlc_declare_plugin(ogg); vlc_declare_plugin(demuxdump); vlc_declare_plugin(voc); vlc_declare_plugin(au); vlc_declare_plugin(rawvid); vlc_declare_plugin(dirac); vlc_declare_plugin(nuv); vlc_declare_plugin(tta); vlc_declare_plugin(rawdv); vlc_declare_plugin(wav); vlc_declare_plugin(nsv); vlc_declare_plugin(smf); vlc_declare_plugin(live555); vlc_declare_plugin(subtitle); vlc_declare_plugin(ps); vlc_declare_plugin(aiff); vlc_declare_plugin(flacsys); vlc_declare_plugin(rawaud); vlc_declare_plugin(avformat); vlc_declare_plugin(stream_out_transcode); vlc_declare_plugin(stream_out_standard); vlc_declare_plugin(stream_out_select); vlc_declare_plugin(stream_out_record); vlc_declare_plugin(stream_out_rtp); vlc_declare_plugin(stream_out_description); vlc_declare_plugin(stream_out_setid); vlc_declare_plugin(stream_out_duplicate); vlc_declare_plugin(stream_out_dummy); vlc_declare_plugin(stream_out_autodel); vlc_declare_plugin(stream_out_smem); vlc_declare_plugin(stream_out_bridge); vlc_declare_plugin(stream_out_es); vlc_declare_plugin(stream_out_display); vlc_declare_plugin(stream_out_langfromtelx); vlc_declare_plugin(stream_out_delay); vlc_declare_plugin(stream_out_mosaic_bridge); vlc_declare_plugin(stream_out_gather); vlc_declare_plugin(access_output_file); vlc_declare_plugin(access_output_dummy); vlc_declare_plugin(access_output_udp); vlc_declare_plugin(access_output_livehttp); vlc_declare_plugin(access_output_http); vlc_declare_plugin(mux_ps); vlc_declare_plugin(mux_wav); vlc_declare_plugin(mux_mp4); vlc_declare_plugin(mux_asf); vlc_declare_plugin(mux_avi); vlc_declare_plugin(mux_mpjpeg); vlc_declare_plugin(mux_ogg); vlc_declare_plugin(mux_dummy); vlc_declare_plugin(stream_filter_record); vlc_declare_plugin(decomp); vlc_declare_plugin(stream_filter_httplive); vlc_declare_plugin(dummy); vlc_declare_plugin(export); vlc_declare_plugin(osd_parser); vlc_declare_plugin(audioscrobbler); vlc_declare_plugin(vod_rtsp); vlc_declare_plugin(logger); vlc_declare_plugin(amem); vlc_declare_plugin(opensles); vlc_declare_plugin(aout_file); vlc_declare_plugin(i422_yuy2); vlc_declare_plugin(yuy2_i420); vlc_declare_plugin(grey_yuv); vlc_declare_plugin(i420_rgb); vlc_declare_plugin(i422_i420); vlc_declare_plugin(i420_yuy2); vlc_declare_plugin(yuy2_i422); const void *vlc_builtins_modules[] = { vlc_plugin(packetizer_h264), vlc_plugin(packetizer_mlp), vlc_plugin(packetizer_mpeg4audio), vlc_plugin(packetizer_dirac), vlc_plugin(packetizer_flac), vlc_plugin(packetizer_copy), vlc_plugin(packetizer_mpegvideo), vlc_plugin(packetizer_mpeg4video), vlc_plugin(packetizer_vc1), vlc_plugin(avcodec), vlc_plugin(subsdec), vlc_plugin(araw), vlc_plugin(dts), vlc_plugin(cdg), vlc_plugin(svcdsub), vlc_plugin(libmpeg2), vlc_plugin(aes3), vlc_plugin(rawvideo), vlc_plugin(kate), vlc_plugin(png), vlc_plugin(vorbis), vlc_plugin(flac), vlc_plugin(cc), vlc_plugin(lpcm), vlc_plugin(twolame), vlc_plugin(theora), vlc_plugin(telx), vlc_plugin(cvdsub), vlc_plugin(mpeg_audio), vlc_plugin(t140), vlc_plugin(dvbsub), vlc_plugin(a52), vlc_plugin(subsusf), vlc_plugin(speex), vlc_plugin(adpcm), vlc_plugin(spudec), vlc_plugin(dynamicoverlay), vlc_plugin(gradfun), vlc_plugin(swscale), vlc_plugin(mirror), vlc_plugin(marq), vlc_plugin(extract), vlc_plugin(rv32), vlc_plugin(croppadd), vlc_plugin(clone), vlc_plugin(adjust), vlc_plugin(rotate), vlc_plugin(wave), vlc_plugin(psychedelic), vlc_plugin(audiobargraph_v), vlc_plugin(grain), vlc_plugin(alphamask), vlc_plugin(canvas), vlc_plugin(ball), vlc_plugin(invert), vlc_plugin(gaussianblur), vlc_plugin(deinterlace), vlc_plugin(osdmenu), vlc_plugin(chain), vlc_plugin(ripple), vlc_plugin(sharpen), vlc_plugin(rss), vlc_plugin(yuvp), vlc_plugin(erase), vlc_plugin(noise), vlc_plugin(posterize), vlc_plugin(motiondetect), vlc_plugin(mosaic), vlc_plugin(logo), vlc_plugin(gradient), vlc_plugin(transform), vlc_plugin(puzzle), vlc_plugin(motionblur), vlc_plugin(blend), vlc_plugin(magnify), vlc_plugin(scene), vlc_plugin(blendbench), vlc_plugin(scale), vlc_plugin(wall), vlc_plugin(postproc), vlc_plugin(bluescreen), vlc_plugin(subsdelay), vlc_plugin(colorthres), vlc_plugin(sepia), vlc_plugin(a52tofloat32), vlc_plugin(dtstospdif), vlc_plugin(chorus_flanger), vlc_plugin(compressor), vlc_plugin(dolby_surround_decoder), vlc_plugin(simple_channel_mixer), vlc_plugin(spatializer), vlc_plugin(converter_fixed), vlc_plugin(trivial_channel_mixer), vlc_plugin(scaletempo), vlc_plugin(audio_format), vlc_plugin(param_eq), vlc_plugin(equalizer), vlc_plugin(mono), vlc_plugin(normvol), vlc_plugin(audiobargraph_a), vlc_plugin(a52tospdif), vlc_plugin(ugly_resampler), vlc_plugin(dtstofloat32), vlc_plugin(headphone_channel_mixer), vlc_plugin(hotkeys), vlc_plugin(gestures), vlc_plugin(motion), vlc_plugin(netsync), vlc_plugin(oldrc), vlc_plugin(i420_yuy2_neon), vlc_plugin(audio_format_neon), vlc_plugin(i420_rgb_neon), vlc_plugin(access_mms), vlc_plugin(zip), vlc_plugin(access_realrtsp), vlc_plugin(access_bd), vlc_plugin(rtp), vlc_plugin(access_avio), vlc_plugin(access_rar), vlc_plugin(access_ftp), vlc_plugin(access_imem), vlc_plugin(access_attachment), vlc_plugin(sdp), vlc_plugin(access_udp), vlc_plugin(stream_filter_rar), vlc_plugin(access_http), vlc_plugin(access_tcp), vlc_plugin(filesystem), vlc_plugin(access_vdr), vlc_plugin(folder), vlc_plugin(mediadirs), vlc_plugin(sap), vlc_plugin(podcast), vlc_plugin(spdif_mixer), vlc_plugin(float32_mixer), vlc_plugin(trivial_mixer), vlc_plugin(fb), vlc_plugin(vout_android), vlc_plugin(yuv), vlc_plugin(vmem), vlc_plugin(visual), vlc_plugin(avi), vlc_plugin(mkv), vlc_plugin(asf), vlc_plugin(h264), vlc_plugin(mpgv), vlc_plugin(es), vlc_plugin(mp4), vlc_plugin(playlist), vlc_plugin(real), vlc_plugin(ty), vlc_plugin(vobsub), vlc_plugin(nsc), vlc_plugin(xa), vlc_plugin(pva), vlc_plugin(image), vlc_plugin(demux_cdg), vlc_plugin(vc1), vlc_plugin(mjpeg), vlc_plugin(ogg), vlc_plugin(demuxdump), vlc_plugin(voc), vlc_plugin(au), vlc_plugin(rawvid), vlc_plugin(dirac), vlc_plugin(nuv), vlc_plugin(tta), vlc_plugin(rawdv), vlc_plugin(wav), vlc_plugin(nsv), vlc_plugin(smf), vlc_plugin(live555), vlc_plugin(subtitle), vlc_plugin(ps), vlc_plugin(aiff), vlc_plugin(flacsys), vlc_plugin(rawaud), vlc_plugin(avformat), vlc_plugin(stream_out_transcode), vlc_plugin(stream_out_standard), vlc_plugin(stream_out_select), vlc_plugin(stream_out_record), vlc_plugin(stream_out_rtp), vlc_plugin(stream_out_description), vlc_plugin(stream_out_setid), vlc_plugin(stream_out_duplicate), vlc_plugin(stream_out_dummy), vlc_plugin(stream_out_autodel), vlc_plugin(stream_out_smem), vlc_plugin(stream_out_bridge), vlc_plugin(stream_out_es), vlc_plugin(stream_out_display), vlc_plugin(stream_out_langfromtelx), vlc_plugin(stream_out_delay), vlc_plugin(stream_out_mosaic_bridge), vlc_plugin(stream_out_gather), vlc_plugin(access_output_file), vlc_plugin(access_output_dummy), vlc_plugin(access_output_udp), vlc_plugin(access_output_livehttp), vlc_plugin(access_output_http), vlc_plugin(mux_ps), vlc_plugin(mux_wav), vlc_plugin(mux_mp4), vlc_plugin(mux_asf), vlc_plugin(mux_avi), vlc_plugin(mux_mpjpeg), vlc_plugin(mux_ogg), vlc_plugin(mux_dummy), vlc_plugin(stream_filter_record), vlc_plugin(decomp), vlc_plugin(stream_filter_httplive), vlc_plugin(dummy), vlc_plugin(export), vlc_plugin(osd_parser), vlc_plugin(audioscrobbler), vlc_plugin(vod_rtsp), vlc_plugin(logger), vlc_plugin(amem), vlc_plugin(opensles), vlc_plugin(aout_file), vlc_plugin(i422_yuy2), vlc_plugin(yuy2_i420), vlc_plugin(grey_yuv), vlc_plugin(i420_rgb), vlc_plugin(i422_i420), vlc_plugin(i420_yuy2), vlc_plugin(yuy2_i422), NULL };
There is a plugin named stream_out_standard. And the file modules/stream_out/standard.c is included in the libvlcjni.so, so for me I see no reason, why it does not work.
Just tell me in which file I have to find the module standard?

androido
Blank Cone
Blank Cone
Posts: 28
Joined: 20 Jul 2011 11:47

Re: looking for sout stream module: 0 candidates

Postby androido » 12 Aug 2011 13:17

I solved the Problem, the problem was, that there is no standard-module on android. A few weeks before i tested the same on linux and it worked with const char* sout = "#standard{access=http,mux=ogg,dst=192.168.0.2:8080}". I thoughts I could use this on android too, why not? The Problem was, the standard.c I identified as the module was built in the libvlcjni.so. I checked the the loaded modules in the libvlcjni.h and there I found no standard-module but a similar looking module, wich sounds like i wanna do. It was working the whole time, the module was only renamed, it was not "standard" like in linux, now the module is named "stream_out_standard", someone renamed it. With sout = "#stream_out_standard{access=http,mux=ogg,dst=192.168.0.2:8080}" it works fine.


Return to “Development around libVLC”

Who is online

Users browsing this forum: No registered users and 17 guests