实例介绍
Vlc播放rtsp视频demo-src 该例子使用VS2010编写
【实例截图】
【核心代码】
4744302542854166416.rar
└── VlcDemo
├── clear.bat
├── Debug
│ ├── libvlccore.dll
│ ├── libvlc.dll
│ ├── lua
│ │ ├── extensions
│ │ │ └── VLSub.luac
│ │ ├── http
│ │ │ ├── css
│ │ │ │ ├── main.css
│ │ │ │ ├── mobile.css
│ │ │ │ └── ui-lightness
│ │ │ │ ├── images
│ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png
│ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png
│ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png
│ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png
│ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png
│ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png
│ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png
│ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png
│ │ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ │ ├── ui-icons_228ef1_256x240.png
│ │ │ │ │ ├── ui-icons_ef8c08_256x240.png
│ │ │ │ │ ├── ui-icons_ffd27a_256x240.png
│ │ │ │ │ └── ui-icons_ffffff_256x240.png
│ │ │ │ └── jquery-ui-1.8.13.custom.css
│ │ │ ├── custom.lua
│ │ │ ├── dialogs
│ │ │ │ ├── batch_window.html
│ │ │ │ ├── browse_window.html
│ │ │ │ ├── create_stream.html
│ │ │ │ ├── equalizer_window.html
│ │ │ │ ├── error_window.html
│ │ │ │ ├── mosaic_window.html
│ │ │ │ ├── offset_window.html
│ │ │ │ ├── old
│ │ │ │ │ ├── browse
│ │ │ │ │ ├── footer
│ │ │ │ │ ├── input
│ │ │ │ │ ├── main
│ │ │ │ │ ├── playlist
│ │ │ │ │ ├── sout
│ │ │ │ │ └── vlm
│ │ │ │ ├── stream_config_window.html
│ │ │ │ └── stream_window.html
│ │ │ ├── favicon.ico
│ │ │ ├── images
│ │ │ │ ├── Audio-48.png
│ │ │ │ ├── Back-48.png
│ │ │ │ ├── buttons.png
│ │ │ │ ├── Folder-48.png
│ │ │ │ ├── Other-48.png
│ │ │ │ ├── speaker-32.png
│ │ │ │ ├── Video-48.png
│ │ │ │ ├── vlc16x16.png
│ │ │ │ └── vlc-48.png
│ │ │ ├── index.html
│ │ │ ├── js
│ │ │ │ ├── common.js
│ │ │ │ ├── controlers.js
│ │ │ │ ├── controllers.js
│ │ │ │ ├── jquery-1.5.1.min.js
│ │ │ │ ├── jquery.jstree.js
│ │ │ │ ├── jquery-ui-1.8.13.custom.min.js
│ │ │ │ └── ui.js
│ │ │ ├── mobile_browse.html
│ │ │ ├── mobile_equalizer.html
│ │ │ ├── mobile.html
│ │ │ ├── mobile_view.html
│ │ │ ├── old
│ │ │ │ ├── images
│ │ │ │ │ ├── delete.png
│ │ │ │ │ ├── delete_small.png
│ │ │ │ │ ├── eject.png
│ │ │ │ │ ├── empty.png
│ │ │ │ │ ├── fullscreen.png
│ │ │ │ │ ├── help.png
│ │ │ │ │ ├── info.png
│ │ │ │ │ ├── loop.png
│ │ │ │ │ ├── minus.png
│ │ │ │ │ ├── next.png
│ │ │ │ │ ├── pause.png
│ │ │ │ │ ├── playlist.png
│ │ │ │ │ ├── playlist_small.png
│ │ │ │ │ ├── play.png
│ │ │ │ │ ├── plus.png
│ │ │ │ │ ├── prev.png
│ │ │ │ │ ├── refresh.png
│ │ │ │ │ ├── repeat.png
│ │ │ │ │ ├── reset.png
│ │ │ │ │ ├── sd.png
│ │ │ │ │ ├── shuffle.png
│ │ │ │ │ ├── slider_bar.png
│ │ │ │ │ ├── slider_left.png
│ │ │ │ │ ├── slider_point.png
│ │ │ │ │ ├── slider_right.png
│ │ │ │ │ ├── slow.png
│ │ │ │ │ ├── snapshot.png
│ │ │ │ │ ├── sort.png
│ │ │ │ │ ├── sout.png
│ │ │ │ │ ├── speaker_mute.png
│ │ │ │ │ ├── speaker.png
│ │ │ │ │ ├── stop.png
│ │ │ │ │ ├── volume_down.png
│ │ │ │ │ ├── volume_up.png
│ │ │ │ │ ├── white_cross_small.png
│ │ │ │ │ └── white.png
│ │ │ │ ├── js
│ │ │ │ │ ├── functions.js
│ │ │ │ │ └── vlm.js
│ │ │ │ └── style.css
│ │ │ ├── requests
│ │ │ │ ├── browse.json
│ │ │ │ ├── browse.xml
│ │ │ │ ├── playlist.json
│ │ │ │ ├── playlist_jstree.xml
│ │ │ │ ├── playlist.xml
│ │ │ │ ├── README.txt
│ │ │ │ ├── status.json
│ │ │ │ ├── status.xml
│ │ │ │ ├── vlm_cmd.xml
│ │ │ │ └── vlm.xml
│ │ │ ├── view.html
│ │ │ ├── vlm_export.html
│ │ │ └── vlm.html
│ │ ├── intf
│ │ │ ├── cli.luac
│ │ │ ├── dummy.luac
│ │ │ ├── dumpmeta.luac
│ │ │ ├── http.luac
│ │ │ ├── luac.luac
│ │ │ ├── modules
│ │ │ │ ├── common.luac
│ │ │ │ ├── host.luac
│ │ │ │ └── httprequests.luac
│ │ │ └── telnet.luac
│ │ ├── meta
│ │ │ ├── art
│ │ │ │ ├── 00_musicbrainz.luac
│ │ │ │ ├── 01_googleimage.luac
│ │ │ │ ├── 02_frenchtv.luac
│ │ │ │ └── 03_lastfm.luac
│ │ │ ├── fetcher
│ │ │ │ └── tvrage.luac
│ │ │ └── reader
│ │ │ └── filename.luac
│ │ ├── modules
│ │ │ ├── common.luac
│ │ │ ├── dkjson.luac
│ │ │ ├── sandbox.luac
│ │ │ └── simplexml.luac
│ │ ├── playlist
│ │ │ ├── anevia_streams.luac
│ │ │ ├── anevia_xml.luac
│ │ │ ├── appletrailers.luac
│ │ │ ├── bbc_co_uk.luac
│ │ │ ├── break.luac
│ │ │ ├── canalplus.luac
│ │ │ ├── cue.luac
│ │ │ ├── dailymotion.luac
│ │ │ ├── extreme.luac
│ │ │ ├── france2.luac
│ │ │ ├── googlevideo.luac
│ │ │ ├── jamendo.luac
│ │ │ ├── joox.luac
│ │ │ ├── katsomo.luac
│ │ │ ├── koreus.luac
│ │ │ ├── lelombrik.luac
│ │ │ ├── liveleak.luac
│ │ │ ├── metacafe.luac
│ │ │ ├── metachannels.luac
│ │ │ ├── mpora.luac
│ │ │ ├── pinkbike.luac
│ │ │ ├── pluzz.luac
│ │ │ ├── rockbox_fm_presets.luac
│ │ │ ├── soundcloud.luac
│ │ │ ├── vimeo.luac
│ │ │ ├── youtube_homepage.luac
│ │ │ ├── youtube.luac
│ │ │ └── zapiks.luac
│ │ └── sd
│ │ ├── assembleenationale.luac
│ │ ├── fmc.luac
│ │ ├── icast.luac
│ │ ├── icecast.luac
│ │ ├── jamendo.luac
│ │ └── metachannels.luac
│ ├── plugins
│ │ ├── access
│ │ │ ├── libaccess_attachment_plugin.dll
│ │ │ ├── libaccess_bd_plugin.dll
│ │ │ ├── libaccess_ftp_plugin.dll
│ │ │ ├── libaccess_http_plugin.dll
│ │ │ ├── libaccess_imem_plugin.dll
│ │ │ ├── libaccess_mms_plugin.dll
│ │ │ ├── libaccess_rar_plugin.dll
│ │ │ ├── libaccess_realrtsp_plugin.dll
│ │ │ ├── libaccess_smb_plugin.dll
│ │ │ ├── libaccess_tcp_plugin.dll
│ │ │ ├── libaccess_udp_plugin.dll
│ │ │ ├── libaccess_vdr_plugin.dll
│ │ │ ├── libattachment_plugin.dll
│ │ │ ├── libbluray-j2se-0.7.0.jar
│ │ │ ├── libcdda_plugin.dll
│ │ │ ├── libdshow_plugin.dll
│ │ │ ├── libdtv_plugin.dll
│ │ │ ├── libdvdnav_plugin.dll
│ │ │ ├── libdvdread_plugin.dll
│ │ │ ├── libfilesystem_plugin.dll
│ │ │ ├── libftp_plugin.dll
│ │ │ ├── libhttp_plugin.dll
│ │ │ ├── libidummy_plugin.dll
│ │ │ ├── libimem_plugin.dll
│ │ │ ├── liblibbluray_plugin.dll
│ │ │ ├── liblive555_plugin.dll
│ │ │ ├── librar_plugin.dll
│ │ │ ├── librtp_plugin.dll
│ │ │ ├── libscreen_plugin.dll
│ │ │ ├── libsdp_plugin.dll
│ │ │ ├── libsftp_plugin.dll
│ │ │ ├── libshm_plugin.dll
│ │ │ ├── libsmb_plugin.dll
│ │ │ ├── libstream_filter_rar_plugin.dll
│ │ │ ├── libtcp_plugin.dll
│ │ │ ├── libtimecode_plugin.dll
│ │ │ ├── libudp_plugin.dll
│ │ │ ├── libvcd_plugin.dll
│ │ │ ├── libvdr_plugin.dll
│ │ │ └── libzip_plugin.dll
│ │ ├── access_output
│ │ │ ├── libaccess_output_dummy_plugin.dll
│ │ │ ├── libaccess_output_file_plugin.dll
│ │ │ ├── libaccess_output_http_plugin.dll
│ │ │ ├── libaccess_output_livehttp_plugin.dll
│ │ │ ├── libaccess_output_shout_plugin.dll
│ │ │ └── libaccess_output_udp_plugin.dll
│ │ ├── audio_filter
│ │ │ ├── liba52tofloat32_plugin.dll
│ │ │ ├── liba52tospdif_plugin.dll
│ │ │ ├── libaudiobargraph_a_plugin.dll
│ │ │ ├── libaudio_format_plugin.dll
│ │ │ ├── libchorus_flanger_plugin.dll
│ │ │ ├── libcompressor_plugin.dll
│ │ │ ├── libdolby_surround_decoder_plugin.dll
│ │ │ ├── libdtstofloat32_plugin.dll
│ │ │ ├── libdtstospdif_plugin.dll
│ │ │ ├── libequalizer_plugin.dll
│ │ │ ├── libgain_plugin.dll
│ │ │ ├── libheadphone_channel_mixer_plugin.dll
│ │ │ ├── libkaraoke_plugin.dll
│ │ │ ├── libmono_plugin.dll
│ │ │ ├── libmpgatofixed32_plugin.dll
│ │ │ ├── libnormvol_plugin.dll
│ │ │ ├── libparam_eq_plugin.dll
│ │ │ ├── libremap_plugin.dll
│ │ │ ├── libsamplerate_plugin.dll
│ │ │ ├── libscaletempo_plugin.dll
│ │ │ ├── libsimple_channel_mixer_plugin.dll
│ │ │ ├── libspatializer_plugin.dll
│ │ │ ├── libspeex_resampler_plugin.dll
│ │ │ ├── libstereo_widen_plugin.dll
│ │ │ ├── libtrivial_channel_mixer_plugin.dll
│ │ │ └── libugly_resampler_plugin.dll
│ │ ├── audio_mixer
│ │ │ ├── libfloat_mixer_plugin.dll
│ │ │ └── libinteger_mixer_plugin.dll
│ │ ├── audio_output
│ │ │ ├── libadummy_plugin.dll
│ │ │ ├── libafile_plugin.dll
│ │ │ ├── libamem_plugin.dll
│ │ │ ├── libdirectsound_plugin.dll
│ │ │ ├── libmmdevice_plugin.dll
│ │ │ ├── libwasapi_plugin.dll
│ │ │ └── libwaveout_plugin.dll
│ │ ├── codec
│ │ │ ├── liba52_plugin.dll
│ │ │ ├── libadpcm_plugin.dll
│ │ │ ├── libaes3_plugin.dll
│ │ │ ├── libaraw_plugin.dll
│ │ │ ├── libavcodec_plugin.dll
│ │ │ ├── libcc_plugin.dll
│ │ │ ├── libcdg_plugin.dll
│ │ │ ├── libcrystalhd_plugin.dll
│ │ │ ├── libcvdsub_plugin.dll
│ │ │ ├── libddummy_plugin.dll
│ │ │ ├── libdmo_plugin.dll
│ │ │ ├── libdts_plugin.dll
│ │ │ ├── libdvbsub_plugin.dll
│ │ │ ├── libdxva2_plugin.dll
│ │ │ ├── libedummy_plugin.dll
│ │ │ ├── libfaad_plugin.dll
│ │ │ ├── libflac_plugin.dll
│ │ │ ├── libg711_plugin.dll
│ │ │ ├── libjpeg_plugin.dll
│ │ │ ├── libkate_plugin.dll
│ │ │ ├── liblibass_plugin.dll
│ │ │ ├── liblibmpeg2_plugin.dll
│ │ │ ├── liblpcm_plugin.dll
│ │ │ ├── libmft_plugin.dll
│ │ │ ├── libmpeg_audio_plugin.dll
│ │ │ ├── libopus_plugin.dll
│ │ │ ├── libpng_plugin.dll
│ │ │ ├── libqsv_plugin.dll
│ │ │ ├── libquicktime_plugin.dll
│ │ │ ├── librawvideo_plugin.dll
│ │ │ ├── libschroedinger_plugin.dll
│ │ │ ├── libscte27_plugin.dll
│ │ │ ├── libspeex_plugin.dll
│ │ │ ├── libspudec_plugin.dll
│ │ │ ├── libstl_plugin.dll
│ │ │ ├── libsubsdec_plugin.dll
│ │ │ ├── libsubstx3g_plugin.dll
│ │ │ ├── libsubsusf_plugin.dll
│ │ │ ├── libsvcdsub_plugin.dll
│ │ │ ├── libt140_plugin.dll
│ │ │ ├── libtheora_plugin.dll
│ │ │ ├── libtwolame_plugin.dll
│ │ │ ├── libuleaddvaudio_plugin.dll
│ │ │ ├── libvorbis_plugin.dll
│ │ │ ├── libvpx_plugin.dll
│ │ │ ├── libx264_plugin.dll
│ │ │ ├── libx265_plugin.dll
│ │ │ └── libzvbi_plugin.dll
│ │ ├── control
│ │ │ ├── libdummy_plugin.dll
│ │ │ ├── libgestures_plugin.dll
│ │ │ ├── libglobalhotkeys_plugin.dll
│ │ │ ├── libhotkeys_plugin.dll
│ │ │ ├── libnetsync_plugin.dll
│ │ │ ├── libntservice_plugin.dll
│ │ │ ├── liboldrc_plugin.dll
│ │ │ ├── libwin_hotkeys_plugin.dll
│ │ │ └── libwin_msg_plugin.dll
│ │ ├── demux
│ │ │ ├── libaiff_plugin.dll
│ │ │ ├── libasf_plugin.dll
│ │ │ ├── libau_plugin.dll
│ │ │ ├── libavi_plugin.dll
│ │ │ ├── libcaf_plugin.dll
│ │ │ ├── libdemux_cdg_plugin.dll
│ │ │ ├── libdemuxdump_plugin.dll
│ │ │ ├── libdemux_stl_plugin.dll
│ │ │ ├── libdirac_plugin.dll
│ │ │ ├── libdiracsys_plugin.dll
│ │ │ ├── libes_plugin.dll
│ │ │ ├── libflacsys_plugin.dll
│ │ │ ├── libgme_plugin.dll
│ │ │ ├── libh264_plugin.dll
│ │ │ ├── libhevc_plugin.dll
│ │ │ ├── libimage_plugin.dll
│ │ │ ├── libmjpeg_plugin.dll
│ │ │ ├── libmkv_plugin.dll
│ │ │ ├── libmod_plugin.dll
│ │ │ ├── libmp4_plugin.dll
│ │ │ ├── libmpc_plugin.dll
│ │ │ ├── libmpgv_plugin.dll
│ │ │ ├── libnsc_plugin.dll
│ │ │ ├── libnsv_plugin.dll
│ │ │ ├── libnuv_plugin.dll
│ │ │ ├── libogg_plugin.dll
│ │ │ ├── libplaylist_plugin.dll
│ │ │ ├── libps_plugin.dll
│ │ │ ├── libpva_plugin.dll
│ │ │ ├── librawaud_plugin.dll
│ │ │ ├── librawdv_plugin.dll
│ │ │ ├── librawvid_plugin.dll
│ │ │ ├── libreal_plugin.dll
│ │ │ ├── libsid_plugin.dll
│ │ │ ├── libsmf_plugin.dll
│ │ │ ├── libsubtitle_plugin.dll
│ │ │ ├── libts_plugin.dll
│ │ │ ├── libtta_plugin.dll
│ │ │ ├── libty_plugin.dll
│ │ │ ├── libvc1_plugin.dll
│ │ │ ├── libvobsub_plugin.dll
│ │ │ ├── libvoc_plugin.dll
│ │ │ ├── libwav_plugin.dll
│ │ │ └── libxa_plugin.dll
│ │ ├── gui
│ │ │ ├── libqt4_plugin.dll
│ │ │ └── libskins2_plugin.dll
│ │ ├── lua
│ │ │ └── liblua_plugin.dll
│ │ ├── meta_engine
│ │ │ ├── libfolder_plugin.dll
│ │ │ └── libtaglib_plugin.dll
│ │ ├── misc
│ │ │ ├── libaddonsfsstorage_plugin.dll
│ │ │ ├── libaddonsvorepository_plugin.dll
│ │ │ ├── libaudioscrobbler_plugin.dll
│ │ │ ├── libexport_plugin.dll
│ │ │ ├── libfingerprinter_plugin.dll
│ │ │ ├── libgnutls_plugin.dll
│ │ │ ├── liblogger_plugin.dll
│ │ │ ├── libstats_plugin.dll
│ │ │ ├── libvod_rtsp_plugin.dll
│ │ │ └── libxml_plugin.dll
│ │ ├── mmx
│ │ │ ├── libi420_rgb_mmx_plugin.dll
│ │ │ ├── libi420_yuy2_mmx_plugin.dll
│ │ │ └── libi422_yuy2_mmx_plugin.dll
│ │ ├── mux
│ │ │ ├── libmux_asf_plugin.dll
│ │ │ ├── libmux_avi_plugin.dll
│ │ │ ├── libmux_dummy_plugin.dll
│ │ │ ├── libmux_mp4_plugin.dll
│ │ │ ├── libmux_mpjpeg_plugin.dll
│ │ │ ├── libmux_ogg_plugin.dll
│ │ │ ├── libmux_ps_plugin.dll
│ │ │ ├── libmux_ts_plugin.dll
│ │ │ └── libmux_wav_plugin.dll
│ │ ├── packetizer
│ │ │ ├── libpacketizer_copy_plugin.dll
│ │ │ ├── libpacketizer_dirac_plugin.dll
│ │ │ ├── libpacketizer_flac_plugin.dll
│ │ │ ├── libpacketizer_h264_plugin.dll
│ │ │ ├── libpacketizer_hevc_plugin.dll
│ │ │ ├── libpacketizer_mlp_plugin.dll
│ │ │ ├── libpacketizer_mpeg4audio_plugin.dll
│ │ │ ├── libpacketizer_mpeg4video_plugin.dll
│ │ │ ├── libpacketizer_mpegvideo_plugin.dll
│ │ │ └── libpacketizer_vc1_plugin.dll
│ │ ├── plugins.dat
│ │ ├── services_discovery
│ │ │ ├── libmediadirs_plugin.dll
│ │ │ ├── libpodcast_plugin.dll
│ │ │ ├── libsap_plugin.dll
│ │ │ ├── libupnp_plugin.dll
│ │ │ └── libwindrive_plugin.dll
│ │ ├── sse2
│ │ │ ├── libi420_rgb_sse2_plugin.dll
│ │ │ ├── libi420_yuy2_sse2_plugin.dll
│ │ │ └── libi422_yuy2_sse2_plugin.dll
│ │ ├── stream_filter
│ │ │ ├── libdash_plugin.dll
│ │ │ ├── libhttplive_plugin.dll
│ │ │ ├── librecord_plugin.dll
│ │ │ └── libsmooth_plugin.dll
│ │ ├── stream_out
│ │ │ ├── libstream_out_autodel_plugin.dll
│ │ │ ├── libstream_out_bridge_plugin.dll
│ │ │ ├── libstream_out_chromaprint_plugin.dll
│ │ │ ├── libstream_out_delay_plugin.dll
│ │ │ ├── libstream_out_description_plugin.dll
│ │ │ ├── libstream_out_display_plugin.dll
│ │ │ ├── libstream_out_dummy_plugin.dll
│ │ │ ├── libstream_out_duplicate_plugin.dll
│ │ │ ├── libstream_out_es_plugin.dll
│ │ │ ├── libstream_out_gather_plugin.dll
│ │ │ ├── libstream_out_langfromtelx_plugin.dll
│ │ │ ├── libstream_out_mosaic_bridge_plugin.dll
│ │ │ ├── libstream_out_raop_plugin.dll
│ │ │ ├── libstream_out_record_plugin.dll
│ │ │ ├── libstream_out_rtp_plugin.dll
│ │ │ ├── libstream_out_setid_plugin.dll
│ │ │ ├── libstream_out_smem_plugin.dll
│ │ │ ├── libstream_out_standard_plugin.dll
│ │ │ ├── libstream_out_stats_plugin.dll
│ │ │ └── libstream_out_transcode_plugin.dll
│ │ ├── text_renderer
│ │ │ ├── libfreetype_plugin.dll
│ │ │ └── libtdummy_plugin.dll
│ │ ├── video_chroma
│ │ │ ├── libchain_plugin.dll
│ │ │ ├── libgrey_yuv_plugin.dll
│ │ │ ├── libi420_rgb_mmx_plugin.dll
│ │ │ ├── libi420_rgb_plugin.dll
│ │ │ ├── libi420_rgb_sse2_plugin.dll
│ │ │ ├── libi420_yuy2_mmx_plugin.dll
│ │ │ ├── libi420_yuy2_plugin.dll
│ │ │ ├── libi420_yuy2_sse2_plugin.dll
│ │ │ ├── libi422_i420_plugin.dll
│ │ │ ├── libi422_yuy2_mmx_plugin.dll
│ │ │ ├── libi422_yuy2_plugin.dll
│ │ │ ├── libi422_yuy2_sse2_plugin.dll
│ │ │ ├── librv32_plugin.dll
│ │ │ ├── libswscale_plugin.dll
│ │ │ ├── libyuy2_i420_plugin.dll
│ │ │ └── libyuy2_i422_plugin.dll
│ │ ├── video_filter
│ │ │ ├── libadjust_plugin.dll
│ │ │ ├── libalphamask_plugin.dll
│ │ │ ├── libanaglyph_plugin.dll
│ │ │ ├── libantiflicker_plugin.dll
│ │ │ ├── libatmo_plugin.dll
│ │ │ ├── libaudiobargraph_v_plugin.dll
│ │ │ ├── libball_plugin.dll
│ │ │ ├── libblendbench_plugin.dll
│ │ │ ├── libblend_plugin.dll
│ │ │ ├── libbluescreen_plugin.dll
│ │ │ ├── libcanvas_plugin.dll
│ │ │ ├── libchain_plugin.dll
│ │ │ ├── libclone_plugin.dll
│ │ │ ├── libcolorthres_plugin.dll
│ │ │ ├── libcroppadd_plugin.dll
│ │ │ ├── libdeinterlace_plugin.dll
│ │ │ ├── liberase_plugin.dll
│ │ │ ├── libextract_plugin.dll
│ │ │ ├── libfreeze_plugin.dll
│ │ │ ├── libgaussianblur_plugin.dll
│ │ │ ├── libgradfun_plugin.dll
│ │ │ ├── libgradient_plugin.dll
│ │ │ ├── libgrain_plugin.dll
│ │ │ ├── libhqdn3d_plugin.dll
│ │ │ ├── libinvert_plugin.dll
│ │ │ ├── liblogo_plugin.dll
│ │ │ ├── libmagnify_plugin.dll
│ │ │ ├── libmarq_plugin.dll
│ │ │ ├── libmirror_plugin.dll
│ │ │ ├── libmosaic_plugin.dll
│ │ │ ├── libmotionblur_plugin.dll
│ │ │ ├── libmotiondetect_plugin.dll
│ │ │ ├── liboldmovie_plugin.dll
│ │ │ ├── libpanoramix_plugin.dll
│ │ │ ├── libposterize_plugin.dll
│ │ │ ├── libpostproc_plugin.dll
│ │ │ ├── libpsychedelic_plugin.dll
│ │ │ ├── libpuzzle_plugin.dll
│ │ │ ├── libremoteosd_plugin.dll
│ │ │ ├── libripple_plugin.dll
│ │ │ ├── librotate_plugin.dll
│ │ │ ├── librss_plugin.dll
│ │ │ ├── libscale_plugin.dll
│ │ │ ├── libscene_plugin.dll
│ │ │ ├── libsepia_plugin.dll
│ │ │ ├── libsharpen_plugin.dll
│ │ │ ├── libsubsdelay_plugin.dll
│ │ │ ├── libswscale_plugin.dll
│ │ │ ├── libtransform_plugin.dll
│ │ │ ├── libvhs_plugin.dll
│ │ │ ├── libwall_plugin.dll
│ │ │ ├── libwave_plugin.dll
│ │ │ └── libyuvp_plugin.dll
│ │ ├── video_output
│ │ │ ├── libcaca_plugin.dll
│ │ │ ├── libdirect2d_plugin.dll
│ │ │ ├── libdirect3d_plugin.dll
│ │ │ ├── libdirectdraw_plugin.dll
│ │ │ ├── libdrawable_plugin.dll
│ │ │ ├── libgl_plugin.dll
│ │ │ ├── libglwin32_plugin.dll
│ │ │ ├── libvdummy_plugin.dll
│ │ │ ├── libvmem_plugin.dll
│ │ │ ├── libwingdi_plugin.dll
│ │ │ └── libyuv_plugin.dll
│ │ ├── video_splitter
│ │ │ ├── libclone_plugin.dll
│ │ │ ├── libpanoramix_plugin.dll
│ │ │ └── libwall_plugin.dll
│ │ └── visualization
│ │ ├── libglspectrum_plugin.dll
│ │ ├── libgoom_plugin.dll
│ │ ├── libprojectm_plugin.dll
│ │ └── libvisual_plugin.dll
│ └── VlcDemo.exe
├── Release
│ ├── libvlccore.dll
│ ├── libvlc.dll
│ ├── lua
│ │ ├── extensions
│ │ │ └── VLSub.luac
│ │ ├── http
│ │ │ ├── css
│ │ │ │ ├── main.css
│ │ │ │ ├── mobile.css
│ │ │ │ └── ui-lightness
│ │ │ │ ├── images
│ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png
│ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png
│ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png
│ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png
│ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png
│ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png
│ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png
│ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png
│ │ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ │ ├── ui-icons_228ef1_256x240.png
│ │ │ │ │ ├── ui-icons_ef8c08_256x240.png
│ │ │ │ │ ├── ui-icons_ffd27a_256x240.png
│ │ │ │ │ └── ui-icons_ffffff_256x240.png
│ │ │ │ └── jquery-ui-1.8.13.custom.css
│ │ │ ├── custom.lua
│ │ │ ├── dialogs
│ │ │ │ ├── batch_window.html
│ │ │ │ ├── browse_window.html
│ │ │ │ ├── create_stream.html
│ │ │ │ ├── equalizer_window.html
│ │ │ │ ├── error_window.html
│ │ │ │ ├── mosaic_window.html
│ │ │ │ ├── offset_window.html
│ │ │ │ ├── old
│ │ │ │ │ ├── browse
│ │ │ │ │ ├── footer
│ │ │ │ │ ├── input
│ │ │ │ │ ├── main
│ │ │ │ │ ├── playlist
│ │ │ │ │ ├── sout
│ │ │ │ │ └── vlm
│ │ │ │ ├── stream_config_window.html
│ │ │ │ └── stream_window.html
│ │ │ ├── favicon.ico
│ │ │ ├── images
│ │ │ │ ├── Audio-48.png
│ │ │ │ ├── Back-48.png
│ │ │ │ ├── buttons.png
│ │ │ │ ├── Folder-48.png
│ │ │ │ ├── Other-48.png
│ │ │ │ ├── speaker-32.png
│ │ │ │ ├── Video-48.png
│ │ │ │ ├── vlc16x16.png
│ │ │ │ └── vlc-48.png
│ │ │ ├── index.html
│ │ │ ├── js
│ │ │ │ ├── common.js
│ │ │ │ ├── controlers.js
│ │ │ │ ├── controllers.js
│ │ │ │ ├── jquery-1.5.1.min.js
│ │ │ │ ├── jquery.jstree.js
│ │ │ │ ├── jquery-ui-1.8.13.custom.min.js
│ │ │ │ └── ui.js
│ │ │ ├── mobile_browse.html
│ │ │ ├── mobile_equalizer.html
│ │ │ ├── mobile.html
│ │ │ ├── mobile_view.html
│ │ │ ├── old
│ │ │ │ ├── images
│ │ │ │ │ ├── delete.png
│ │ │ │ │ ├── delete_small.png
│ │ │ │ │ ├── eject.png
│ │ │ │ │ ├── empty.png
│ │ │ │ │ ├── fullscreen.png
│ │ │ │ │ ├── help.png
│ │ │ │ │ ├── info.png
│ │ │ │ │ ├── loop.png
│ │ │ │ │ ├── minus.png
│ │ │ │ │ ├── next.png
│ │ │ │ │ ├── pause.png
│ │ │ │ │ ├── playlist.png
│ │ │ │ │ ├── playlist_small.png
│ │ │ │ │ ├── play.png
│ │ │ │ │ ├── plus.png
│ │ │ │ │ ├── prev.png
│ │ │ │ │ ├── refresh.png
│ │ │ │ │ ├── repeat.png
│ │ │ │ │ ├── reset.png
│ │ │ │ │ ├── sd.png
│ │ │ │ │ ├── shuffle.png
│ │ │ │ │ ├── slider_bar.png
│ │ │ │ │ ├── slider_left.png
│ │ │ │ │ ├── slider_point.png
│ │ │ │ │ ├── slider_right.png
│ │ │ │ │ ├── slow.png
│ │ │ │ │ ├── snapshot.png
│ │ │ │ │ ├── sort.png
│ │ │ │ │ ├── sout.png
│ │ │ │ │ ├── speaker_mute.png
│ │ │ │ │ ├── speaker.png
│ │ │ │ │ ├── stop.png
│ │ │ │ │ ├── volume_down.png
│ │ │ │ │ ├── volume_up.png
│ │ │ │ │ ├── white_cross_small.png
│ │ │ │ │ └── white.png
│ │ │ │ ├── js
│ │ │ │ │ ├── functions.js
│ │ │ │ │ └── vlm.js
│ │ │ │ └── style.css
│ │ │ ├── requests
│ │ │ │ ├── browse.json
│ │ │ │ ├── browse.xml
│ │ │ │ ├── playlist.json
│ │ │ │ ├── playlist_jstree.xml
│ │ │ │ ├── playlist.xml
│ │ │ │ ├── README.txt
│ │ │ │ ├── status.json
│ │ │ │ ├── status.xml
│ │ │ │ ├── vlm_cmd.xml
│ │ │ │ └── vlm.xml
│ │ │ ├── view.html
│ │ │ ├── vlm_export.html
│ │ │ └── vlm.html
│ │ ├── intf
│ │ │ ├── cli.luac
│ │ │ ├── dummy.luac
│ │ │ ├── dumpmeta.luac
│ │ │ ├── http.luac
│ │ │ ├── luac.luac
│ │ │ ├── modules
│ │ │ │ ├── common.luac
│ │ │ │ ├── host.luac
│ │ │ │ └── httprequests.luac
│ │ │ └── telnet.luac
│ │ ├── meta
│ │ │ ├── art
│ │ │ │ ├── 00_musicbrainz.luac
│ │ │ │ ├── 01_googleimage.luac
│ │ │ │ ├── 02_frenchtv.luac
│ │ │ │ └── 03_lastfm.luac
│ │ │ ├── fetcher
│ │ │ │ └── tvrage.luac
│ │ │ └── reader
│ │ │ └── filename.luac
│ │ ├── modules
│ │ │ ├── common.luac
│ │ │ ├── dkjson.luac
│ │ │ ├── sandbox.luac
│ │ │ └── simplexml.luac
│ │ ├── playlist
│ │ │ ├── anevia_streams.luac
│ │ │ ├── anevia_xml.luac
│ │ │ ├── appletrailers.luac
│ │ │ ├── bbc_co_uk.luac
│ │ │ ├── break.luac
│ │ │ ├── canalplus.luac
│ │ │ ├── cue.luac
│ │ │ ├── dailymotion.luac
│ │ │ ├── extreme.luac
│ │ │ ├── france2.luac
│ │ │ ├── googlevideo.luac
│ │ │ ├── jamendo.luac
│ │ │ ├── joox.luac
│ │ │ ├── katsomo.luac
│ │ │ ├── koreus.luac
│ │ │ ├── lelombrik.luac
│ │ │ ├── liveleak.luac
│ │ │ ├── metacafe.luac
│ │ │ ├── metachannels.luac
│ │ │ ├── mpora.luac
│ │ │ ├── pinkbike.luac
│ │ │ ├── pluzz.luac
│ │ │ ├── rockbox_fm_presets.luac
│ │ │ ├── soundcloud.luac
│ │ │ ├── vimeo.luac
│ │ │ ├── youtube_homepage.luac
│ │ │ ├── youtube.luac
│ │ │ └── zapiks.luac
│ │ └── sd
│ │ ├── assembleenationale.luac
│ │ ├── fmc.luac
│ │ ├── icast.luac
│ │ ├── icecast.luac
│ │ ├── jamendo.luac
│ │ └── metachannels.luac
│ ├── plugins
│ │ ├── access
│ │ │ ├── libaccess_attachment_plugin.dll
│ │ │ ├── libaccess_bd_plugin.dll
│ │ │ ├── libaccess_ftp_plugin.dll
│ │ │ ├── libaccess_http_plugin.dll
│ │ │ ├── libaccess_imem_plugin.dll
│ │ │ ├── libaccess_mms_plugin.dll
│ │ │ ├── libaccess_rar_plugin.dll
│ │ │ ├── libaccess_realrtsp_plugin.dll
│ │ │ ├── libaccess_smb_plugin.dll
│ │ │ ├── libaccess_tcp_plugin.dll
│ │ │ ├── libaccess_udp_plugin.dll
│ │ │ ├── libaccess_vdr_plugin.dll
│ │ │ ├── libattachment_plugin.dll
│ │ │ ├── libbluray-j2se-0.7.0.jar
│ │ │ ├── libcdda_plugin.dll
│ │ │ ├── libdshow_plugin.dll
│ │ │ ├── libdtv_plugin.dll
│ │ │ ├── libdvdnav_plugin.dll
│ │ │ ├── libdvdread_plugin.dll
│ │ │ ├── libfilesystem_plugin.dll
│ │ │ ├── libftp_plugin.dll
│ │ │ ├── libhttp_plugin.dll
│ │ │ ├── libidummy_plugin.dll
│ │ │ ├── libimem_plugin.dll
│ │ │ ├── liblibbluray_plugin.dll
│ │ │ ├── liblive555_plugin.dll
│ │ │ ├── librar_plugin.dll
│ │ │ ├── librtp_plugin.dll
│ │ │ ├── libscreen_plugin.dll
│ │ │ ├── libsdp_plugin.dll
│ │ │ ├── libsftp_plugin.dll
│ │ │ ├── libshm_plugin.dll
│ │ │ ├── libsmb_plugin.dll
│ │ │ ├── libstream_filter_rar_plugin.dll
│ │ │ ├── libtcp_plugin.dll
│ │ │ ├── libtimecode_plugin.dll
│ │ │ ├── libudp_plugin.dll
│ │ │ ├── libvcd_plugin.dll
│ │ │ ├── libvdr_plugin.dll
│ │ │ └── libzip_plugin.dll
│ │ ├── access_output
│ │ │ ├── libaccess_output_dummy_plugin.dll
│ │ │ ├── libaccess_output_file_plugin.dll
│ │ │ ├── libaccess_output_http_plugin.dll
│ │ │ ├── libaccess_output_livehttp_plugin.dll
│ │ │ ├── libaccess_output_shout_plugin.dll
│ │ │ └── libaccess_output_udp_plugin.dll
│ │ ├── audio_filter
│ │ │ ├── liba52tofloat32_plugin.dll
│ │ │ ├── liba52tospdif_plugin.dll
│ │ │ ├── libaudiobargraph_a_plugin.dll
│ │ │ ├── libaudio_format_plugin.dll
│ │ │ ├── libchorus_flanger_plugin.dll
│ │ │ ├── libcompressor_plugin.dll
│ │ │ ├── libdolby_surround_decoder_plugin.dll
│ │ │ ├── libdtstofloat32_plugin.dll
│ │ │ ├── libdtstospdif_plugin.dll
│ │ │ ├── libequalizer_plugin.dll
│ │ │ ├── libgain_plugin.dll
│ │ │ ├── libheadphone_channel_mixer_plugin.dll
│ │ │ ├── libkaraoke_plugin.dll
│ │ │ ├── libmono_plugin.dll
│ │ │ ├── libmpgatofixed32_plugin.dll
│ │ │ ├── libnormvol_plugin.dll
│ │ │ ├── libparam_eq_plugin.dll
│ │ │ ├── libremap_plugin.dll
│ │ │ ├── libsamplerate_plugin.dll
│ │ │ ├── libscaletempo_plugin.dll
│ │ │ ├── libsimple_channel_mixer_plugin.dll
│ │ │ ├── libspatializer_plugin.dll
│ │ │ ├── libspeex_resampler_plugin.dll
│ │ │ ├── libstereo_widen_plugin.dll
│ │ │ ├── libtrivial_channel_mixer_plugin.dll
│ │ │ └── libugly_resampler_plugin.dll
│ │ ├── audio_mixer
│ │ │ ├── libfloat_mixer_plugin.dll
│ │ │ └── libinteger_mixer_plugin.dll
│ │ ├── audio_output
│ │ │ ├── libadummy_plugin.dll
│ │ │ ├── libafile_plugin.dll
│ │ │ ├── libamem_plugin.dll
│ │ │ ├── libdirectsound_plugin.dll
│ │ │ ├── libmmdevice_plugin.dll
│ │ │ ├── libwasapi_plugin.dll
│ │ │ └── libwaveout_plugin.dll
│ │ ├── codec
│ │ │ ├── liba52_plugin.dll
│ │ │ ├── libadpcm_plugin.dll
│ │ │ ├── libaes3_plugin.dll
│ │ │ ├── libaraw_plugin.dll
│ │ │ ├── libavcodec_plugin.dll
│ │ │ ├── libcc_plugin.dll
│ │ │ ├── libcdg_plugin.dll
│ │ │ ├── libcrystalhd_plugin.dll
│ │ │ ├── libcvdsub_plugin.dll
│ │ │ ├── libddummy_plugin.dll
│ │ │ ├── libdmo_plugin.dll
│ │ │ ├── libdts_plugin.dll
│ │ │ ├── libdvbsub_plugin.dll
│ │ │ ├── libdxva2_plugin.dll
│ │ │ ├── libedummy_plugin.dll
│ │ │ ├── libfaad_plugin.dll
│ │ │ ├── libflac_plugin.dll
│ │ │ ├── libg711_plugin.dll
│ │ │ ├── libjpeg_plugin.dll
│ │ │ ├── libkate_plugin.dll
│ │ │ ├── liblibass_plugin.dll
│ │ │ ├── liblibmpeg2_plugin.dll
│ │ │ ├── liblpcm_plugin.dll
│ │ │ ├── libmft_plugin.dll
│ │ │ ├── libmpeg_audio_plugin.dll
│ │ │ ├── libopus_plugin.dll
│ │ │ ├── libpng_plugin.dll
│ │ │ ├── libqsv_plugin.dll
│ │ │ ├── libquicktime_plugin.dll
│ │ │ ├── librawvideo_plugin.dll
│ │ │ ├── libschroedinger_plugin.dll
│ │ │ ├── libscte27_plugin.dll
│ │ │ ├── libspeex_plugin.dll
│ │ │ ├── libspudec_plugin.dll
│ │ │ ├── libstl_plugin.dll
│ │ │ ├── libsubsdec_plugin.dll
│ │ │ ├── libsubstx3g_plugin.dll
│ │ │ ├── libsubsusf_plugin.dll
│ │ │ ├── libsvcdsub_plugin.dll
│ │ │ ├── libt140_plugin.dll
│ │ │ ├── libtheora_plugin.dll
│ │ │ ├── libtwolame_plugin.dll
│ │ │ ├── libuleaddvaudio_plugin.dll
│ │ │ ├── libvorbis_plugin.dll
│ │ │ ├── libvpx_plugin.dll
│ │ │ ├── libx264_plugin.dll
│ │ │ ├── libx265_plugin.dll
│ │ │ └── libzvbi_plugin.dll
│ │ ├── control
│ │ │ ├── libdummy_plugin.dll
│ │ │ ├── libgestures_plugin.dll
│ │ │ ├── libglobalhotkeys_plugin.dll
│ │ │ ├── libhotkeys_plugin.dll
│ │ │ ├── libnetsync_plugin.dll
│ │ │ ├── libntservice_plugin.dll
│ │ │ ├── liboldrc_plugin.dll
│ │ │ ├── libwin_hotkeys_plugin.dll
│ │ │ └── libwin_msg_plugin.dll
│ │ ├── demux
│ │ │ ├── libaiff_plugin.dll
│ │ │ ├── libasf_plugin.dll
│ │ │ ├── libau_plugin.dll
│ │ │ ├── libavi_plugin.dll
│ │ │ ├── libcaf_plugin.dll
│ │ │ ├── libdemux_cdg_plugin.dll
│ │ │ ├── libdemuxdump_plugin.dll
│ │ │ ├── libdemux_stl_plugin.dll
│ │ │ ├── libdirac_plugin.dll
│ │ │ ├── libdiracsys_plugin.dll
│ │ │ ├── libes_plugin.dll
│ │ │ ├── libflacsys_plugin.dll
│ │ │ ├── libgme_plugin.dll
│ │ │ ├── libh264_plugin.dll
│ │ │ ├── libhevc_plugin.dll
│ │ │ ├── libimage_plugin.dll
│ │ │ ├── libmjpeg_plugin.dll
│ │ │ ├── libmkv_plugin.dll
│ │ │ ├── libmod_plugin.dll
│ │ │ ├── libmp4_plugin.dll
│ │ │ ├── libmpc_plugin.dll
│ │ │ ├── libmpgv_plugin.dll
│ │ │ ├── libnsc_plugin.dll
│ │ │ ├── libnsv_plugin.dll
│ │ │ ├── libnuv_plugin.dll
│ │ │ ├── libogg_plugin.dll
│ │ │ ├── libplaylist_plugin.dll
│ │ │ ├── libps_plugin.dll
│ │ │ ├── libpva_plugin.dll
│ │ │ ├── librawaud_plugin.dll
│ │ │ ├── librawdv_plugin.dll
│ │ │ ├── librawvid_plugin.dll
│ │ │ ├── libreal_plugin.dll
│ │ │ ├── libsid_plugin.dll
│ │ │ ├── libsmf_plugin.dll
│ │ │ ├── libsubtitle_plugin.dll
│ │ │ ├── libts_plugin.dll
│ │ │ ├── libtta_plugin.dll
│ │ │ ├── libty_plugin.dll
│ │ │ ├── libvc1_plugin.dll
│ │ │ ├── libvobsub_plugin.dll
│ │ │ ├── libvoc_plugin.dll
│ │ │ ├── libwav_plugin.dll
│ │ │ └── libxa_plugin.dll
│ │ ├── gui
│ │ │ ├── libqt4_plugin.dll
│ │ │ └── libskins2_plugin.dll
│ │ ├── lua
│ │ │ └── liblua_plugin.dll
│ │ ├── meta_engine
│ │ │ ├── libfolder_plugin.dll
│ │ │ └── libtaglib_plugin.dll
│ │ ├── misc
│ │ │ ├── libaddonsfsstorage_plugin.dll
│ │ │ ├── libaddonsvorepository_plugin.dll
│ │ │ ├── libaudioscrobbler_plugin.dll
│ │ │ ├── libexport_plugin.dll
│ │ │ ├── libfingerprinter_plugin.dll
│ │ │ ├── libgnutls_plugin.dll
│ │ │ ├── liblogger_plugin.dll
│ │ │ ├── libstats_plugin.dll
│ │ │ ├── libvod_rtsp_plugin.dll
│ │ │ └── libxml_plugin.dll
│ │ ├── mmx
│ │ │ ├── libi420_rgb_mmx_plugin.dll
│ │ │ ├── libi420_yuy2_mmx_plugin.dll
│ │ │ └── libi422_yuy2_mmx_plugin.dll
│ │ ├── mux
│ │ │ ├── libmux_asf_plugin.dll
│ │ │ ├── libmux_avi_plugin.dll
│ │ │ ├── libmux_dummy_plugin.dll
│ │ │ ├── libmux_mp4_plugin.dll
│ │ │ ├── libmux_mpjpeg_plugin.dll
│ │ │ ├── libmux_ogg_plugin.dll
│ │ │ ├── libmux_ps_plugin.dll
│ │ │ ├── libmux_ts_plugin.dll
│ │ │ └── libmux_wav_plugin.dll
│ │ ├── packetizer
│ │ │ ├── libpacketizer_copy_plugin.dll
│ │ │ ├── libpacketizer_dirac_plugin.dll
│ │ │ ├── libpacketizer_flac_plugin.dll
│ │ │ ├── libpacketizer_h264_plugin.dll
│ │ │ ├── libpacketizer_hevc_plugin.dll
│ │ │ ├── libpacketizer_mlp_plugin.dll
│ │ │ ├── libpacketizer_mpeg4audio_plugin.dll
│ │ │ ├── libpacketizer_mpeg4video_plugin.dll
│ │ │ ├── libpacketizer_mpegvideo_plugin.dll
│ │ │ └── libpacketizer_vc1_plugin.dll
│ │ ├── plugins.dat
│ │ ├── services_discovery
│ │ │ ├── libmediadirs_plugin.dll
│ │ │ ├── libpodcast_plugin.dll
│ │ │ ├── libsap_plugin.dll
│ │ │ ├── libupnp_plugin.dll
│ │ │ └── libwindrive_plugin.dll
│ │ ├── sse2
│ │ │ ├── libi420_rgb_sse2_plugin.dll
│ │ │ ├── libi420_yuy2_sse2_plugin.dll
│ │ │ └── libi422_yuy2_sse2_plugin.dll
│ │ ├── stream_filter
│ │ │ ├── libdash_plugin.dll
│ │ │ ├── libhttplive_plugin.dll
│ │ │ ├── librecord_plugin.dll
│ │ │ └── libsmooth_plugin.dll
│ │ ├── stream_out
│ │ │ ├── libstream_out_autodel_plugin.dll
│ │ │ ├── libstream_out_bridge_plugin.dll
│ │ │ ├── libstream_out_chromaprint_plugin.dll
│ │ │ ├── libstream_out_delay_plugin.dll
│ │ │ ├── libstream_out_description_plugin.dll
│ │ │ ├── libstream_out_display_plugin.dll
│ │ │ ├── libstream_out_dummy_plugin.dll
│ │ │ ├── libstream_out_duplicate_plugin.dll
│ │ │ ├── libstream_out_es_plugin.dll
│ │ │ ├── libstream_out_gather_plugin.dll
│ │ │ ├── libstream_out_langfromtelx_plugin.dll
│ │ │ ├── libstream_out_mosaic_bridge_plugin.dll
│ │ │ ├── libstream_out_raop_plugin.dll
│ │ │ ├── libstream_out_record_plugin.dll
│ │ │ ├── libstream_out_rtp_plugin.dll
│ │ │ ├── libstream_out_setid_plugin.dll
│ │ │ ├── libstream_out_smem_plugin.dll
│ │ │ ├── libstream_out_standard_plugin.dll
│ │ │ ├── libstream_out_stats_plugin.dll
│ │ │ └── libstream_out_transcode_plugin.dll
│ │ ├── text_renderer
│ │ │ ├── libfreetype_plugin.dll
│ │ │ └── libtdummy_plugin.dll
│ │ ├── video_chroma
│ │ │ ├── libchain_plugin.dll
│ │ │ ├── libgrey_yuv_plugin.dll
│ │ │ ├── libi420_rgb_mmx_plugin.dll
│ │ │ ├── libi420_rgb_plugin.dll
│ │ │ ├── libi420_rgb_sse2_plugin.dll
│ │ │ ├── libi420_yuy2_mmx_plugin.dll
│ │ │ ├── libi420_yuy2_plugin.dll
│ │ │ ├── libi420_yuy2_sse2_plugin.dll
│ │ │ ├── libi422_i420_plugin.dll
│ │ │ ├── libi422_yuy2_mmx_plugin.dll
│ │ │ ├── libi422_yuy2_plugin.dll
│ │ │ ├── libi422_yuy2_sse2_plugin.dll
│ │ │ ├── librv32_plugin.dll
│ │ │ ├── libswscale_plugin.dll
│ │ │ ├── libyuy2_i420_plugin.dll
│ │ │ └── libyuy2_i422_plugin.dll
│ │ ├── video_filter
│ │ │ ├── libadjust_plugin.dll
│ │ │ ├── libalphamask_plugin.dll
│ │ │ ├── libanaglyph_plugin.dll
│ │ │ ├── libantiflicker_plugin.dll
│ │ │ ├── libatmo_plugin.dll
│ │ │ ├── libaudiobargraph_v_plugin.dll
│ │ │ ├── libball_plugin.dll
│ │ │ ├── libblendbench_plugin.dll
│ │ │ ├── libblend_plugin.dll
│ │ │ ├── libbluescreen_plugin.dll
│ │ │ ├── libcanvas_plugin.dll
│ │ │ ├── libchain_plugin.dll
│ │ │ ├── libclone_plugin.dll
│ │ │ ├── libcolorthres_plugin.dll
│ │ │ ├── libcroppadd_plugin.dll
│ │ │ ├── libdeinterlace_plugin.dll
│ │ │ ├── liberase_plugin.dll
│ │ │ ├── libextract_plugin.dll
│ │ │ ├── libfreeze_plugin.dll
│ │ │ ├── libgaussianblur_plugin.dll
│ │ │ ├── libgradfun_plugin.dll
│ │ │ ├── libgradient_plugin.dll
│ │ │ ├── libgrain_plugin.dll
│ │ │ ├── libhqdn3d_plugin.dll
│ │ │ ├── libinvert_plugin.dll
│ │ │ ├── liblogo_plugin.dll
│ │ │ ├── libmagnify_plugin.dll
│ │ │ ├── libmarq_plugin.dll
│ │ │ ├── libmirror_plugin.dll
│ │ │ ├── libmosaic_plugin.dll
│ │ │ ├── libmotionblur_plugin.dll
│ │ │ ├── libmotiondetect_plugin.dll
│ │ │ ├── liboldmovie_plugin.dll
│ │ │ ├── libpanoramix_plugin.dll
│ │ │ ├── libposterize_plugin.dll
│ │ │ ├── libpostproc_plugin.dll
│ │ │ ├── libpsychedelic_plugin.dll
│ │ │ ├── libpuzzle_plugin.dll
│ │ │ ├── libremoteosd_plugin.dll
│ │ │ ├── libripple_plugin.dll
│ │ │ ├── librotate_plugin.dll
│ │ │ ├── librss_plugin.dll
│ │ │ ├── libscale_plugin.dll
│ │ │ ├── libscene_plugin.dll
│ │ │ ├── libsepia_plugin.dll
│ │ │ ├── libsharpen_plugin.dll
│ │ │ ├── libsubsdelay_plugin.dll
│ │ │ ├── libswscale_plugin.dll
│ │ │ ├── libtransform_plugin.dll
│ │ │ ├── libvhs_plugin.dll
│ │ │ ├── libwall_plugin.dll
│ │ │ ├── libwave_plugin.dll
│ │ │ └── libyuvp_plugin.dll
│ │ ├── video_output
│ │ │ ├── libcaca_plugin.dll
│ │ │ ├── libdirect2d_plugin.dll
│ │ │ ├── libdirect3d_plugin.dll
│ │ │ ├── libdirectdraw_plugin.dll
│ │ │ ├── libdrawable_plugin.dll
│ │ │ ├── libgl_plugin.dll
│ │ │ ├── libglwin32_plugin.dll
│ │ │ ├── libvdummy_plugin.dll
│ │ │ ├── libvmem_plugin.dll
│ │ │ ├── libwingdi_plugin.dll
│ │ │ └── libyuv_plugin.dll
│ │ ├── video_splitter
│ │ │ ├── libclone_plugin.dll
│ │ │ ├── libpanoramix_plugin.dll
│ │ │ └── libwall_plugin.dll
│ │ └── visualization
│ │ ├── libglspectrum_plugin.dll
│ │ ├── libgoom_plugin.dll
│ │ ├── libprojectm_plugin.dll
│ │ └── libvisual_plugin.dll
│ └── VlcDemo.exe
├── VlcDemo
│ ├── Debug
│ ├── ReadMe.txt
│ ├── Release
│ ├── res
│ │ ├── VlcDemo.ico
│ │ └── VlcDemo.rc2
│ ├── resource.h
│ ├── stdafx.cpp
│ ├── stdafx.h
│ ├── targetver.h
│ ├── vlc-2.2.1
│ │ ├── bin
│ │ │ ├── libvlccore.dll
│ │ │ ├── libvlc.dll
│ │ │ ├── lua
│ │ │ │ ├── extensions
│ │ │ │ │ └── VLSub.luac
│ │ │ │ ├── http
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── main.css
│ │ │ │ │ │ ├── mobile.css
│ │ │ │ │ │ └── ui-lightness
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png
│ │ │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png
│ │ │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png
│ │ │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png
│ │ │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png
│ │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png
│ │ │ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png
│ │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png
│ │ │ │ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ │ │ │ ├── ui-icons_228ef1_256x240.png
│ │ │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png
│ │ │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png
│ │ │ │ │ │ │ └── ui-icons_ffffff_256x240.png
│ │ │ │ │ │ └── jquery-ui-1.8.13.custom.css
│ │ │ │ │ ├── custom.lua
│ │ │ │ │ ├── dialogs
│ │ │ │ │ │ ├── batch_window.html
│ │ │ │ │ │ ├── browse_window.html
│ │ │ │ │ │ ├── create_stream.html
│ │ │ │ │ │ ├── equalizer_window.html
│ │ │ │ │ │ ├── error_window.html
│ │ │ │ │ │ ├── mosaic_window.html
│ │ │ │ │ │ ├── offset_window.html
│ │ │ │ │ │ ├── old
│ │ │ │ │ │ │ ├── browse
│ │ │ │ │ │ │ ├── footer
│ │ │ │ │ │ │ ├── input
│ │ │ │ │ │ │ ├── main
│ │ │ │ │ │ │ ├── playlist
│ │ │ │ │ │ │ ├── sout
│ │ │ │ │ │ │ └── vlm
│ │ │ │ │ │ ├── stream_config_window.html
│ │ │ │ │ │ └── stream_window.html
│ │ │ │ │ ├── favicon.ico
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── Audio-48.png
│ │ │ │ │ │ ├── Back-48.png
│ │ │ │ │ │ ├── buttons.png
│ │ │ │ │ │ ├── Folder-48.png
│ │ │ │ │ │ ├── Other-48.png
│ │ │ │ │ │ ├── speaker-32.png
│ │ │ │ │ │ ├── Video-48.png
│ │ │ │ │ │ ├── vlc16x16.png
│ │ │ │ │ │ └── vlc-48.png
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── js
│ │ │ │ │ │ ├── common.js
│ │ │ │ │ │ ├── controlers.js
│ │ │ │ │ │ ├── controllers.js
│ │ │ │ │ │ ├── jquery-1.5.1.min.js
│ │ │ │ │ │ ├── jquery.jstree.js
│ │ │ │ │ │ ├── jquery-ui-1.8.13.custom.min.js
│ │ │ │ │ │ └── ui.js
│ │ │ │ │ ├── mobile_browse.html
│ │ │ │ │ ├── mobile_equalizer.html
│ │ │ │ │ ├── mobile.html
│ │ │ │ │ ├── mobile_view.html
│ │ │ │ │ ├── old
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── delete.png
│ │ │ │ │ │ │ ├── delete_small.png
│ │ │ │ │ │ │ ├── eject.png
│ │ │ │ │ │ │ ├── empty.png
│ │ │ │ │ │ │ ├── fullscreen.png
│ │ │ │ │ │ │ ├── help.png
│ │ │ │ │ │ │ ├── info.png
│ │ │ │ │ │ │ ├── loop.png
│ │ │ │ │ │ │ ├── minus.png
│ │ │ │ │ │ │ ├── next.png
│ │ │ │ │ │ │ ├── pause.png
│ │ │ │ │ │ │ ├── playlist.png
│ │ │ │ │ │ │ ├── playlist_small.png
│ │ │ │ │ │ │ ├── play.png
│ │ │ │ │ │ │ ├── plus.png
│ │ │ │ │ │ │ ├── prev.png
│ │ │ │ │ │ │ ├── refresh.png
│ │ │ │ │ │ │ ├── repeat.png
│ │ │ │ │ │ │ ├── reset.png
│ │ │ │ │ │ │ ├── sd.png
│ │ │ │ │ │ │ ├── shuffle.png
│ │ │ │ │ │ │ ├── slider_bar.png
│ │ │ │ │ │ │ ├── slider_left.png
│ │ │ │ │ │ │ ├── slider_point.png
│ │ │ │ │ │ │ ├── slider_right.png
│ │ │ │ │ │ │ ├── slow.png
│ │ │ │ │ │ │ ├── snapshot.png
│ │ │ │ │ │ │ ├── sort.png
│ │ │ │ │ │ │ ├── sout.png
│ │ │ │ │ │ │ ├── speaker_mute.png
│ │ │ │ │ │ │ ├── speaker.png
│ │ │ │ │ │ │ ├── stop.png
│ │ │ │ │ │ │ ├── volume_down.png
│ │ │ │ │ │ │ ├── volume_up.png
│ │ │ │ │ │ │ ├── white_cross_small.png
│ │ │ │ │ │ │ └── white.png
│ │ │ │ │ │ ├── js
│ │ │ │ │ │ │ ├── functions.js
│ │ │ │ │ │ │ └── vlm.js
│ │ │ │ │ │ └── style.css
│ │ │ │ │ ├── requests
│ │ │ │ │ │ ├── browse.json
│ │ │ │ │ │ ├── browse.xml
│ │ │ │ │ │ ├── playlist.json
│ │ │ │ │ │ ├── playlist_jstree.xml
│ │ │ │ │ │ ├── playlist.xml
│ │ │ │ │ │ ├── README.txt
│ │ │ │ │ │ ├── status.json
│ │ │ │ │ │ ├── status.xml
│ │ │ │ │ │ ├── vlm_cmd.xml
│ │ │ │ │ │ └── vlm.xml
│ │ │ │ │ ├── view.html
│ │ │ │ │ ├── vlm_export.html
│ │ │ │ │ └── vlm.html
│ │ │ │ ├── intf
│ │ │ │ │ ├── cli.luac
│ │ │ │ │ ├── dummy.luac
│ │ │ │ │ ├── dumpmeta.luac
│ │ │ │ │ ├── http.luac
│ │ │ │ │ ├── luac.luac
│ │ │ │ │ ├── modules
│ │ │ │ │ │ ├── common.luac
│ │ │ │ │ │ ├── host.luac
│ │ │ │ │ │ └── httprequests.luac
│ │ │ │ │ └── telnet.luac
│ │ │ │ ├── meta
│ │ │ │ │ ├── art
│ │ │ │ │ │ ├── 00_musicbrainz.luac
│ │ │ │ │ │ ├── 01_googleimage.luac
│ │ │ │ │ │ ├── 02_frenchtv.luac
│ │ │ │ │ │ └── 03_lastfm.luac
│ │ │ │ │ ├── fetcher
│ │ │ │ │ │ └── tvrage.luac
│ │ │ │ │ └── reader
│ │ │ │ │ └── filename.luac
│ │ │ │ ├── modules
│ │ │ │ │ ├── common.luac
│ │ │ │ │ ├── dkjson.luac
│ │ │ │ │ ├── sandbox.luac
│ │ │ │ │ └── simplexml.luac
│ │ │ │ ├── playlist
│ │ │ │ │ ├── anevia_streams.luac
│ │ │ │ │ ├── anevia_xml.luac
│ │ │ │ │ ├── appletrailers.luac
│ │ │ │ │ ├── bbc_co_uk.luac
│ │ │ │ │ ├── break.luac
│ │ │ │ │ ├── canalplus.luac
│ │ │ │ │ ├── cue.luac
│ │ │ │ │ ├── dailymotion.luac
│ │ │ │ │ ├── extreme.luac
│ │ │ │ │ ├── france2.luac
│ │ │ │ │ ├── googlevideo.luac
│ │ │ │ │ ├── jamendo.luac
│ │ │ │ │ ├── joox.luac
│ │ │ │ │ ├── katsomo.luac
│ │ │ │ │ ├── koreus.luac
│ │ │ │ │ ├── lelombrik.luac
│ │ │ │ │ ├── liveleak.luac
│ │ │ │ │ ├── metacafe.luac
│ │ │ │ │ ├── metachannels.luac
│ │ │ │ │ ├── mpora.luac
│ │ │ │ │ ├── pinkbike.luac
│ │ │ │ │ ├── pluzz.luac
│ │ │ │ │ ├── rockbox_fm_presets.luac
│ │ │ │ │ ├── soundcloud.luac
│ │ │ │ │ ├── vimeo.luac
│ │ │ │ │ ├── youtube_homepage.luac
│ │ │ │ │ ├── youtube.luac
│ │ │ │ │ └── zapiks.luac
│ │ │ │ └── sd
│ │ │ │ ├── assembleenationale.luac
│ │ │ │ ├── fmc.luac
│ │ │ │ ├── icast.luac
│ │ │ │ ├── icecast.luac
│ │ │ │ ├── jamendo.luac
│ │ │ │ └── metachannels.luac
│ │ │ └── plugins
│ │ │ ├── access
│ │ │ │ ├── libaccess_attachment_plugin.dll
│ │ │ │ ├── libaccess_bd_plugin.dll
│ │ │ │ ├── libaccess_ftp_plugin.dll
│ │ │ │ ├── libaccess_http_plugin.dll
│ │ │ │ ├── libaccess_imem_plugin.dll
│ │ │ │ ├── libaccess_mms_plugin.dll
│ │ │ │ ├── libaccess_rar_plugin.dll
│ │ │ │ ├── libaccess_realrtsp_plugin.dll
│ │ │ │ ├── libaccess_smb_plugin.dll
│ │ │ │ ├── libaccess_tcp_plugin.dll
│ │ │ │ ├── libaccess_udp_plugin.dll
│ │ │ │ ├── libaccess_vdr_plugin.dll
│ │ │ │ ├── libattachment_plugin.dll
│ │ │ │ ├── libbluray-j2se-0.7.0.jar
│ │ │ │ ├── libcdda_plugin.dll
│ │ │ │ ├── libdshow_plugin.dll
│ │ │ │ ├── libdtv_plugin.dll
│ │ │ │ ├── libdvdnav_plugin.dll
│ │ │ │ ├── libdvdread_plugin.dll
│ │ │ │ ├── libfilesystem_plugin.dll
│ │ │ │ ├── libftp_plugin.dll
│ │ │ │ ├── libhttp_plugin.dll
│ │ │ │ ├── libidummy_plugin.dll
│ │ │ │ ├── libimem_plugin.dll
│ │ │ │ ├── liblibbluray_plugin.dll
│ │ │ │ ├── liblive555_plugin.dll
│ │ │ │ ├── librar_plugin.dll
│ │ │ │ ├── librtp_plugin.dll
│ │ │ │ ├── libscreen_plugin.dll
│ │ │ │ ├── libsdp_plugin.dll
│ │ │ │ ├── libsftp_plugin.dll
│ │ │ │ ├── libshm_plugin.dll
│ │ │ │ ├── libsmb_plugin.dll
│ │ │ │ ├── libstream_filter_rar_plugin.dll
│ │ │ │ ├── libtcp_plugin.dll
│ │ │ │ ├── libtimecode_plugin.dll
│ │ │ │ ├── libudp_plugin.dll
│ │ │ │ ├── libvcd_plugin.dll
│ │ │ │ ├── libvdr_plugin.dll
│ │ │ │ └── libzip_plugin.dll
│ │ │ ├── access_output
│ │ │ │ ├── libaccess_output_dummy_plugin.dll
│ │ │ │ ├── libaccess_output_file_plugin.dll
│ │ │ │ ├── libaccess_output_http_plugin.dll
│ │ │ │ ├── libaccess_output_livehttp_plugin.dll
│ │ │ │ ├── libaccess_output_shout_plugin.dll
│ │ │ │ └── libaccess_output_udp_plugin.dll
│ │ │ ├── audio_filter
│ │ │ │ ├── liba52tofloat32_plugin.dll
│ │ │ │ ├── liba52tospdif_plugin.dll
│ │ │ │ ├── libaudiobargraph_a_plugin.dll
│ │ │ │ ├── libaudio_format_plugin.dll
│ │ │ │ ├── libchorus_flanger_plugin.dll
│ │ │ │ ├── libcompressor_plugin.dll
│ │ │ │ ├── libdolby_surround_decoder_plugin.dll
│ │ │ │ ├── libdtstofloat32_plugin.dll
│ │ │ │ ├── libdtstospdif_plugin.dll
│ │ │ │ ├── libequalizer_plugin.dll
│ │ │ │ ├── libgain_plugin.dll
│ │ │ │ ├── libheadphone_channel_mixer_plugin.dll
│ │ │ │ ├── libkaraoke_plugin.dll
│ │ │ │ ├── libmono_plugin.dll
│ │ │ │ ├── libmpgatofixed32_plugin.dll
│ │ │ │ ├── libnormvol_plugin.dll
│ │ │ │ ├── libparam_eq_plugin.dll
│ │ │ │ ├── libremap_plugin.dll
│ │ │ │ ├── libsamplerate_plugin.dll
│ │ │ │ ├── libscaletempo_plugin.dll
│ │ │ │ ├── libsimple_channel_mixer_plugin.dll
│ │ │ │ ├── libspatializer_plugin.dll
│ │ │ │ ├── libspeex_resampler_plugin.dll
│ │ │ │ ├── libstereo_widen_plugin.dll
│ │ │ │ ├── libtrivial_channel_mixer_plugin.dll
│ │ │ │ └── libugly_resampler_plugin.dll
│ │ │ ├── audio_mixer
│ │ │ │ ├── libfloat_mixer_plugin.dll
│ │ │ │ └── libinteger_mixer_plugin.dll
│ │ │ ├── audio_output
│ │ │ │ ├── libadummy_plugin.dll
│ │ │ │ ├── libafile_plugin.dll
│ │ │ │ ├── libamem_plugin.dll
│ │ │ │ ├── libdirectsound_plugin.dll
│ │ │ │ ├── libmmdevice_plugin.dll
│ │ │ │ ├── libwasapi_plugin.dll
│ │ │ │ └── libwaveout_plugin.dll
│ │ │ ├── codec
│ │ │ │ ├── liba52_plugin.dll
│ │ │ │ ├── libadpcm_plugin.dll
│ │ │ │ ├── libaes3_plugin.dll
│ │ │ │ ├── libaraw_plugin.dll
│ │ │ │ ├── libavcodec_plugin.dll
│ │ │ │ ├── libcc_plugin.dll
│ │ │ │ ├── libcdg_plugin.dll
│ │ │ │ ├── libcrystalhd_plugin.dll
│ │ │ │ ├── libcvdsub_plugin.dll
│ │ │ │ ├── libddummy_plugin.dll
│ │ │ │ ├── libdmo_plugin.dll
│ │ │ │ ├── libdts_plugin.dll
│ │ │ │ ├── libdvbsub_plugin.dll
│ │ │ │ ├── libdxva2_plugin.dll
│ │ │ │ ├── libedummy_plugin.dll
│ │ │ │ ├── libfaad_plugin.dll
│ │ │ │ ├── libflac_plugin.dll
│ │ │ │ ├── libg711_plugin.dll
│ │ │ │ ├── libjpeg_plugin.dll
│ │ │ │ ├── libkate_plugin.dll
│ │ │ │ ├── liblibass_plugin.dll
│ │ │ │ ├── liblibmpeg2_plugin.dll
│ │ │ │ ├── liblpcm_plugin.dll
│ │ │ │ ├── libmft_plugin.dll
│ │ │ │ ├── libmpeg_audio_plugin.dll
│ │ │ │ ├── libopus_plugin.dll
│ │ │ │ ├── libpng_plugin.dll
│ │ │ │ ├── libqsv_plugin.dll
│ │ │ │ ├── libquicktime_plugin.dll
│ │ │ │ ├── librawvideo_plugin.dll
│ │ │ │ ├── libschroedinger_plugin.dll
│ │ │ │ ├── libscte27_plugin.dll
│ │ │ │ ├── libspeex_plugin.dll
│ │ │ │ ├── libspudec_plugin.dll
│ │ │ │ ├── libstl_plugin.dll
│ │ │ │ ├── libsubsdec_plugin.dll
│ │ │ │ ├── libsubstx3g_plugin.dll
│ │ │ │ ├── libsubsusf_plugin.dll
│ │ │ │ ├── libsvcdsub_plugin.dll
│ │ │ │ ├── libt140_plugin.dll
│ │ │ │ ├── libtheora_plugin.dll
│ │ │ │ ├── libtwolame_plugin.dll
│ │ │ │ ├── libuleaddvaudio_plugin.dll
│ │ │ │ ├── libvorbis_plugin.dll
│ │ │ │ ├── libvpx_plugin.dll
│ │ │ │ ├── libx264_plugin.dll
│ │ │ │ ├── libx265_plugin.dll
│ │ │ │ └── libzvbi_plugin.dll
│ │ │ ├── control
│ │ │ │ ├── libdummy_plugin.dll
│ │ │ │ ├── libgestures_plugin.dll
│ │ │ │ ├── libglobalhotkeys_plugin.dll
│ │ │ │ ├── libhotkeys_plugin.dll
│ │ │ │ ├── libnetsync_plugin.dll
│ │ │ │ ├── libntservice_plugin.dll
│ │ │ │ ├── liboldrc_plugin.dll
│ │ │ │ ├── libwin_hotkeys_plugin.dll
│ │ │ │ └── libwin_msg_plugin.dll
│ │ │ ├── demux
│ │ │ │ ├── libaiff_plugin.dll
│ │ │ │ ├── libasf_plugin.dll
│ │ │ │ ├── libau_plugin.dll
│ │ │ │ ├── libavi_plugin.dll
│ │ │ │ ├── libcaf_plugin.dll
│ │ │ │ ├── libdemux_cdg_plugin.dll
│ │ │ │ ├── libdemuxdump_plugin.dll
│ │ │ │ ├── libdemux_stl_plugin.dll
│ │ │ │ ├── libdirac_plugin.dll
│ │ │ │ ├── libdiracsys_plugin.dll
│ │ │ │ ├── libes_plugin.dll
│ │ │ │ ├── libflacsys_plugin.dll
│ │ │ │ ├── libgme_plugin.dll
│ │ │ │ ├── libh264_plugin.dll
│ │ │ │ ├── libhevc_plugin.dll
│ │ │ │ ├── libimage_plugin.dll
│ │ │ │ ├── libmjpeg_plugin.dll
│ │ │ │ ├── libmkv_plugin.dll
│ │ │ │ ├── libmod_plugin.dll
│ │ │ │ ├── libmp4_plugin.dll
│ │ │ │ ├── libmpc_plugin.dll
│ │ │ │ ├── libmpgv_plugin.dll
│ │ │ │ ├── libnsc_plugin.dll
│ │ │ │ ├── libnsv_plugin.dll
│ │ │ │ ├── libnuv_plugin.dll
│ │ │ │ ├── libogg_plugin.dll
│ │ │ │ ├── libplaylist_plugin.dll
│ │ │ │ ├── libps_plugin.dll
│ │ │ │ ├── libpva_plugin.dll
│ │ │ │ ├── librawaud_plugin.dll
│ │ │ │ ├── librawdv_plugin.dll
│ │ │ │ ├── librawvid_plugin.dll
│ │ │ │ ├── libreal_plugin.dll
│ │ │ │ ├── libsid_plugin.dll
│ │ │ │ ├── libsmf_plugin.dll
│ │ │ │ ├── libsubtitle_plugin.dll
│ │ │ │ ├── libts_plugin.dll
│ │ │ │ ├── libtta_plugin.dll
│ │ │ │ ├── libty_plugin.dll
│ │ │ │ ├── libvc1_plugin.dll
│ │ │ │ ├── libvobsub_plugin.dll
│ │ │ │ ├── libvoc_plugin.dll
│ │ │ │ ├── libwav_plugin.dll
│ │ │ │ └── libxa_plugin.dll
│ │ │ ├── gui
│ │ │ │ ├── libqt4_plugin.dll
│ │ │ │ └── libskins2_plugin.dll
│ │ │ ├── lua
│ │ │ │ └── liblua_plugin.dll
│ │ │ ├── meta_engine
│ │ │ │ ├── libfolder_plugin.dll
│ │ │ │ └── libtaglib_plugin.dll
│ │ │ ├── misc
│ │ │ │ ├── libaddonsfsstorage_plugin.dll
│ │ │ │ ├── libaddonsvorepository_plugin.dll
│ │ │ │ ├── libaudioscrobbler_plugin.dll
│ │ │ │ ├── libexport_plugin.dll
│ │ │ │ ├── libfingerprinter_plugin.dll
│ │ │ │ ├── libgnutls_plugin.dll
│ │ │ │ ├── liblogger_plugin.dll
│ │ │ │ ├── libstats_plugin.dll
│ │ │ │ ├── libvod_rtsp_plugin.dll
│ │ │ │ └── libxml_plugin.dll
│ │ │ ├── mmx
│ │ │ │ ├── libi420_rgb_mmx_plugin.dll
│ │ │ │ ├── libi420_yuy2_mmx_plugin.dll
│ │ │ │ └── libi422_yuy2_mmx_plugin.dll
│ │ │ ├── mux
│ │ │ │ ├── libmux_asf_plugin.dll
│ │ │ │ ├── libmux_avi_plugin.dll
│ │ │ │ ├── libmux_dummy_plugin.dll
│ │ │ │ ├── libmux_mp4_plugin.dll
│ │ │ │ ├── libmux_mpjpeg_plugin.dll
│ │ │ │ ├── libmux_ogg_plugin.dll
│ │ │ │ ├── libmux_ps_plugin.dll
│ │ │ │ ├── libmux_ts_plugin.dll
│ │ │ │ └── libmux_wav_plugin.dll
│ │ │ ├── packetizer
│ │ │ │ ├── libpacketizer_copy_plugin.dll
│ │ │ │ ├── libpacketizer_dirac_plugin.dll
│ │ │ │ ├── libpacketizer_flac_plugin.dll
│ │ │ │ ├── libpacketizer_h264_plugin.dll
│ │ │ │ ├── libpacketizer_hevc_plugin.dll
│ │ │ │ ├── libpacketizer_mlp_plugin.dll
│ │ │ │ ├── libpacketizer_mpeg4audio_plugin.dll
│ │ │ │ ├── libpacketizer_mpeg4video_plugin.dll
│ │ │ │ ├── libpacketizer_mpegvideo_plugin.dll
│ │ │ │ └── libpacketizer_vc1_plugin.dll
│ │ │ ├── plugins.dat
│ │ │ ├── services_discovery
│ │ │ │ ├── libmediadirs_plugin.dll
│ │ │ │ ├── libpodcast_plugin.dll
│ │ │ │ ├── libsap_plugin.dll
│ │ │ │ ├── libupnp_plugin.dll
│ │ │ │ └── libwindrive_plugin.dll
│ │ │ ├── sse2
│ │ │ │ ├── libi420_rgb_sse2_plugin.dll
│ │ │ │ ├── libi420_yuy2_sse2_plugin.dll
│ │ │ │ └── libi422_yuy2_sse2_plugin.dll
│ │ │ ├── stream_filter
│ │ │ │ ├── libdash_plugin.dll
│ │ │ │ ├── libhttplive_plugin.dll
│ │ │ │ ├── librecord_plugin.dll
│ │ │ │ └── libsmooth_plugin.dll
│ │ │ ├── stream_out
│ │ │ │ ├── libstream_out_autodel_plugin.dll
│ │ │ │ ├── libstream_out_bridge_plugin.dll
│ │ │ │ ├── libstream_out_chromaprint_plugin.dll
│ │ │ │ ├── libstream_out_delay_plugin.dll
│ │ │ │ ├── libstream_out_description_plugin.dll
│ │ │ │ ├── libstream_out_display_plugin.dll
│ │ │ │ ├── libstream_out_dummy_plugin.dll
│ │ │ │ ├── libstream_out_duplicate_plugin.dll
│ │ │ │ ├── libstream_out_es_plugin.dll
│ │ │ │ ├── libstream_out_gather_plugin.dll
│ │ │ │ ├── libstream_out_langfromtelx_plugin.dll
│ │ │ │ ├── libstream_out_mosaic_bridge_plugin.dll
│ │ │ │ ├── libstream_out_raop_plugin.dll
│ │ │ │ ├── libstream_out_record_plugin.dll
│ │ │ │ ├── libstream_out_rtp_plugin.dll
│ │ │ │ ├── libstream_out_setid_plugin.dll
│ │ │ │ ├── libstream_out_smem_plugin.dll
│ │ │ │ ├── libstream_out_standard_plugin.dll
│ │ │ │ ├── libstream_out_stats_plugin.dll
│ │ │ │ └── libstream_out_transcode_plugin.dll
│ │ │ ├── text_renderer
│ │ │ │ ├── libfreetype_plugin.dll
│ │ │ │ └── libtdummy_plugin.dll
│ │ │ ├── video_chroma
│ │ │ │ ├── libchain_plugin.dll
│ │ │ │ ├── libgrey_yuv_plugin.dll
│ │ │ │ ├── libi420_rgb_mmx_plugin.dll
│ │ │ │ ├── libi420_rgb_plugin.dll
│ │ │ │ ├── libi420_rgb_sse2_plugin.dll
│ │ │ │ ├── libi420_yuy2_mmx_plugin.dll
│ │ │ │ ├── libi420_yuy2_plugin.dll
│ │ │ │ ├── libi420_yuy2_sse2_plugin.dll
│ │ │ │ ├── libi422_i420_plugin.dll
│ │ │ │ ├── libi422_yuy2_mmx_plugin.dll
│ │ │ │ ├── libi422_yuy2_plugin.dll
│ │ │ │ ├── libi422_yuy2_sse2_plugin.dll
│ │ │ │ ├── librv32_plugin.dll
│ │ │ │ ├── libswscale_plugin.dll
│ │ │ │ ├── libyuy2_i420_plugin.dll
│ │ │ │ └── libyuy2_i422_plugin.dll
│ │ │ ├── video_filter
│ │ │ │ ├── libadjust_plugin.dll
│ │ │ │ ├── libalphamask_plugin.dll
│ │ │ │ ├── libanaglyph_plugin.dll
│ │ │ │ ├── libantiflicker_plugin.dll
│ │ │ │ ├── libatmo_plugin.dll
│ │ │ │ ├── libaudiobargraph_v_plugin.dll
│ │ │ │ ├── libball_plugin.dll
│ │ │ │ ├── libblendbench_plugin.dll
│ │ │ │ ├── libblend_plugin.dll
│ │ │ │ ├── libbluescreen_plugin.dll
│ │ │ │ ├── libcanvas_plugin.dll
│ │ │ │ ├── libchain_plugin.dll
│ │ │ │ ├── libclone_plugin.dll
│ │ │ │ ├── libcolorthres_plugin.dll
│ │ │ │ ├── libcroppadd_plugin.dll
│ │ │ │ ├── libdeinterlace_plugin.dll
│ │ │ │ ├── liberase_plugin.dll
│ │ │ │ ├── libextract_plugin.dll
│ │ │ │ ├── libfreeze_plugin.dll
│ │ │ │ ├── libgaussianblur_plugin.dll
│ │ │ │ ├── libgradfun_plugin.dll
│ │ │ │ ├── libgradient_plugin.dll
│ │ │ │ ├── libgrain_plugin.dll
│ │ │ │ ├── libhqdn3d_plugin.dll
│ │ │ │ ├── libinvert_plugin.dll
│ │ │ │ ├── liblogo_plugin.dll
│ │ │ │ ├── libmagnify_plugin.dll
│ │ │ │ ├── libmarq_plugin.dll
│ │ │ │ ├── libmirror_plugin.dll
│ │ │ │ ├── libmosaic_plugin.dll
│ │ │ │ ├── libmotionblur_plugin.dll
│ │ │ │ ├── libmotiondetect_plugin.dll
│ │ │ │ ├── liboldmovie_plugin.dll
│ │ │ │ ├── libpanoramix_plugin.dll
│ │ │ │ ├── libposterize_plugin.dll
│ │ │ │ ├── libpostproc_plugin.dll
│ │ │ │ ├── libpsychedelic_plugin.dll
│ │ │ │ ├── libpuzzle_plugin.dll
│ │ │ │ ├── libremoteosd_plugin.dll
│ │ │ │ ├── libripple_plugin.dll
│ │ │ │ ├── librotate_plugin.dll
│ │ │ │ ├── librss_plugin.dll
│ │ │ │ ├── libscale_plugin.dll
│ │ │ │ ├── libscene_plugin.dll
│ │ │ │ ├── libsepia_plugin.dll
│ │ │ │ ├── libsharpen_plugin.dll
│ │ │ │ ├── libsubsdelay_plugin.dll
│ │ │ │ ├── libswscale_plugin.dll
│ │ │ │ ├── libtransform_plugin.dll
│ │ │ │ ├── libvhs_plugin.dll
│ │ │ │ ├── libwall_plugin.dll
│ │ │ │ ├── libwave_plugin.dll
│ │ │ │ └── libyuvp_plugin.dll
│ │ │ ├── video_output
│ │ │ │ ├── libcaca_plugin.dll
│ │ │ │ ├── libdirect2d_plugin.dll
│ │ │ │ ├── libdirect3d_plugin.dll
│ │ │ │ ├── libdirectdraw_plugin.dll
│ │ │ │ ├── libdrawable_plugin.dll
│ │ │ │ ├── libgl_plugin.dll
│ │ │ │ ├── libglwin32_plugin.dll
│ │ │ │ ├── libvdummy_plugin.dll
│ │ │ │ ├── libvmem_plugin.dll
│ │ │ │ ├── libwingdi_plugin.dll
│ │ │ │ └── libyuv_plugin.dll
│ │ │ ├── video_splitter
│ │ │ │ ├── libclone_plugin.dll
│ │ │ │ ├── libpanoramix_plugin.dll
│ │ │ │ └── libwall_plugin.dll
│ │ │ └── visualization
│ │ │ ├── libglspectrum_plugin.dll
│ │ │ ├── libgoom_plugin.dll
│ │ │ ├── libprojectm_plugin.dll
│ │ │ └── libvisual_plugin.dll
│ │ ├── include
│ │ │ ├── vlc
│ │ │ │ ├── deprecated.h
│ │ │ │ ├── libvlc_events.h
│ │ │ │ ├── libvlc.h
│ │ │ │ ├── libvlc_media_discoverer.h
│ │ │ │ ├── libvlc_media.h
│ │ │ │ ├── libvlc_media_library.h
│ │ │ │ ├── libvlc_media_list.h
│ │ │ │ ├── libvlc_media_list_player.h
│ │ │ │ ├── libvlc_media_player.h
│ │ │ │ ├── libvlc_structures.h
│ │ │ │ ├── libvlc_version.h
│ │ │ │ ├── libvlc_vlm.h
│ │ │ │ ├── plugins
│ │ │ │ │ ├── vlc_about.h
│ │ │ │ │ ├── vlc_access.h
│ │ │ │ │ ├── vlc_addons.h
│ │ │ │ │ ├── vlc_aout.h
│ │ │ │ │ ├── vlc_aout_volume.h
│ │ │ │ │ ├── vlc_arrays.h
│ │ │ │ │ ├── vlc_art_finder.h
│ │ │ │ │ ├── vlc_atomic.h
│ │ │ │ │ ├── vlc_avcodec.h
│ │ │ │ │ ├── vlc_bits.h
│ │ │ │ │ ├── vlc_block.h
│ │ │ │ │ ├── vlc_block_helper.h
│ │ │ │ │ ├── vlc_charset.h
│ │ │ │ │ ├── vlc_codec.h
│ │ │ │ │ ├── vlc_common.h
│ │ │ │ │ ├── vlc_config_cat.h
│ │ │ │ │ ├── vlc_config.h
│ │ │ │ │ ├── vlc_configuration.h
│ │ │ │ │ ├── vlc_cpu.h
│ │ │ │ │ ├── vlc_demux.h
│ │ │ │ │ ├── vlc_dialog.h
│ │ │ │ │ ├── vlc_epg.h
│ │ │ │ │ ├── vlc_es.h
│ │ │ │ │ ├── vlc_es_out.h
│ │ │ │ │ ├── vlc_events.h
│ │ │ │ │ ├── vlc_filter.h
│ │ │ │ │ ├── vlc_fingerprinter.h
│ │ │ │ │ ├── vlc_fourcc.h
│ │ │ │ │ ├── vlc_fs.h
│ │ │ │ │ ├── vlc_gcrypt.h
│ │ │ │ │ ├── vlc_httpd.h
│ │ │ │ │ ├── vlc_http.h
│ │ │ │ │ ├── vlc_image.h
│ │ │ │ │ ├── vlc_inhibit.h
│ │ │ │ │ ├── vlc_input.h
│ │ │ │ │ ├── vlc_input_item.h
│ │ │ │ │ ├── vlc_keys.h
│ │ │ │ │ ├── vlc_main.h
│ │ │ │ │ ├── vlc_md5.h
│ │ │ │ │ ├── vlc_media_library.h
│ │ │ │ │ ├── vlc_messages.h
│ │ │ │ │ ├── vlc_meta_fetcher.h
│ │ │ │ │ ├── vlc_meta.h
│ │ │ │ │ ├── vlc_mime.h
│ │ │ │ │ ├── vlc_modules.h
│ │ │ │ │ ├── vlc_mouse.h
│ │ │ │ │ ├── vlc_mtime.h
│ │ │ │ │ ├── vlc_network.h
│ │ │ │ │ ├── vlc_objects.h
│ │ │ │ │ ├── vlc_opengl.h
│ │ │ │ │ ├── vlc_picture_fifo.h
│ │ │ │ │ ├── vlc_picture.h
│ │ │ │ │ ├── vlc_picture_pool.h
│ │ │ │ │ ├── vlc_playlist.h
│ │ │ │ │ ├── vlc_plugin.h
│ │ │ │ │ ├── vlc_probe.h
│ │ │ │ │ ├── vlc_rand.h
│ │ │ │ │ ├── vlc_services_discovery.h
│ │ │ │ │ ├── vlc_sout.h
│ │ │ │ │ ├── vlc_spu.h
│ │ │ │ │ ├── vlc_stream.h
│ │ │ │ │ ├── vlc_strings.h
│ │ │ │ │ ├── vlc_subpicture.h
│ │ │ │ │ ├── vlc_text_style.h
│ │ │ │ │ ├── vlc_threads.h
│ │ │ │ │ ├── vlc_tls.h
│ │ │ │ │ ├── vlc_url.h
│ │ │ │ │ ├── vlc_variables.h
│ │ │ │ │ ├── vlc_video_splitter.h
│ │ │ │ │ ├── vlc_vlm.h
│ │ │ │ │ ├── vlc_vout_display.h
│ │ │ │ │ ├── vlc_vout.h
│ │ │ │ │ ├── vlc_vout_osd.h
│ │ │ │ │ ├── vlc_vout_window.h
│ │ │ │ │ ├── vlc_xlib.h
│ │ │ │ │ └── vlc_xml.h
│ │ │ │ └── vlc.h
│ │ │ └── vlc.h
│ │ ├── lib
│ │ │ ├── libvlccore.lib
│ │ │ └── libvlc.lib
│ │ └── makeexport.exe
│ ├── VlcDemo.aps
│ ├── VlcDemo.cpp
│ ├── VlcDemoDlg.cpp
│ ├── VlcDemoDlg.h
│ ├── VlcDemo.h
│ ├── VlcDemo.rc
│ ├── VlcDemo.vcxproj
│ ├── VlcDemo.vcxproj.filters
│ └── VlcDemo.vcxproj.user
├── VlcDemo.opensdf
├── VlcDemo.sln
└── VlcDemo.suo
160 directories, 1630 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论