gitextract_ehw9vfn_/ ├── .gitignore ├── NetStream/ │ ├── CONTENTS/ │ │ ├── module/ │ │ │ ├── download_enabler_netstream.suprx │ │ │ ├── libFourthTube.suprx │ │ │ ├── libLootkit.suprx │ │ │ ├── libSceAvPlayerPSVitaRGBA8888.suprx │ │ │ ├── libcurl.suprx │ │ │ ├── libfmodngpext.suprx │ │ │ ├── libfmodstudio.suprx │ │ │ └── libhvdb.suprx │ │ └── sce_sys/ │ │ └── livearea/ │ │ └── contents/ │ │ └── template.xml │ ├── NetStream.vcxproj │ ├── NetStream.vcxproj.filters │ ├── NetStream.vcxproj.user │ ├── RES_RCO/ │ │ ├── file/ │ │ │ └── netstream_settings.xml │ │ ├── locale/ │ │ │ ├── netstream_locale_en.xml │ │ │ ├── netstream_locale_es.xml │ │ │ ├── netstream_locale_fr.xml │ │ │ ├── netstream_locale_it.xml │ │ │ ├── netstream_locale_ja.xml │ │ │ ├── netstream_locale_pl.xml │ │ │ ├── netstream_locale_pt-br.xml │ │ │ ├── netstream_locale_pt.xml │ │ │ ├── netstream_locale_ru.xml │ │ │ ├── netstream_locale_zh-s.xml │ │ │ └── netstream_locale_zh-t.xml │ │ ├── netstream_plugin.xml │ │ └── texture/ │ │ ├── tex_black.dds │ │ ├── tex_button_arrow_left.zlib │ │ ├── tex_button_arrow_right.zlib │ │ ├── tex_button_big_repeat.zlib │ │ ├── tex_button_pause.zlib │ │ ├── tex_button_play.zlib │ │ ├── tex_button_settings.zlib │ │ ├── tex_file_icon_music.zlib │ │ ├── tex_vertical_separator.zlib │ │ ├── tex_video_control_panel_status_pause.gim │ │ ├── tex_video_control_panel_status_play.gim │ │ ├── tex_yt_icon_favourite.zlib │ │ ├── tex_yt_icon_history.zlib │ │ └── tex_yt_icon_search.zlib │ ├── gen_headers.bat │ ├── gen_rco.bat │ ├── include/ │ │ ├── browsers/ │ │ │ ├── ftp_server_browser.h │ │ │ ├── generic_server_browser.h │ │ │ ├── http_server_browser.h │ │ │ ├── hvdb_tracks_browser.h │ │ │ └── local_server_browser.h │ │ ├── common.h │ │ ├── debug.h │ │ ├── dialog.h │ │ ├── downloader.h │ │ ├── event.h │ │ ├── ftpparse.h │ │ ├── hvdb_utils.h │ │ ├── main.h │ │ ├── menus/ │ │ │ ├── menu_first.h │ │ │ ├── menu_ftp.h │ │ │ ├── menu_generic.h │ │ │ ├── menu_http.h │ │ │ ├── menu_hvdb.h │ │ │ ├── menu_hvdb_tracks.h │ │ │ ├── menu_local.h │ │ │ ├── menu_player_simple.h │ │ │ ├── menu_player_youtube.h │ │ │ ├── menu_server.h │ │ │ ├── menu_settings.h │ │ │ └── menu_youtube.h │ │ ├── netstream_locale.h │ │ ├── netstream_plugin.h │ │ ├── netstream_settings.h │ │ ├── np_utils.h │ │ ├── option_menu.h │ │ ├── players/ │ │ │ ├── player_av.h │ │ │ ├── player_beav.h │ │ │ ├── player_fmod.h │ │ │ └── player_generic.h │ │ ├── subs/ │ │ │ ├── subs_generic.h │ │ │ └── subs_srt.h │ │ ├── tex_pool.h │ │ ├── tw_utils.h │ │ ├── utils.h │ │ └── yt_utils.h │ ├── libs/ │ │ ├── include/ │ │ │ ├── fmodngpext.h │ │ │ ├── ftube.h │ │ │ ├── hvdb.h │ │ │ ├── lootkit.h │ │ │ └── sceavplayer_webmaf.h │ │ └── lib/ │ │ ├── libFourthTube_stub.a │ │ ├── libLootkit_stub.a │ │ ├── libSceAvPlayerWebMAF_stub.a │ │ ├── libfmodngpext_stub.a │ │ └── libhvdb_stub.a │ ├── package.conf │ ├── param.sfx │ └── source/ │ ├── browsers/ │ │ ├── ftp_server_browser.cpp │ │ ├── http_server_browser.cpp │ │ ├── hvdb_tracks_browser.cpp │ │ └── local_server_browser.cpp │ ├── debug.cpp │ ├── dialog.cpp │ ├── downloader.cpp │ ├── event.cpp │ ├── ftpparse.c │ ├── hvdb_utils.cpp │ ├── main.cpp │ ├── menus/ │ │ ├── menu_first.cpp │ │ ├── menu_generic.cpp │ │ ├── menu_hvdb.cpp │ │ ├── menu_player_simple.cpp │ │ ├── menu_player_youtube.cpp │ │ ├── menu_server.cpp │ │ ├── menu_settings.cpp │ │ └── menu_youtube.cpp │ ├── np_utils.cpp │ ├── option_menu.cpp │ ├── paf_runtime.cpp │ ├── players/ │ │ ├── player_av.cpp │ │ ├── player_beav.cpp │ │ └── player_fmod.cpp │ ├── subs/ │ │ ├── subs_generic.cpp │ │ └── subs_srt.cpp │ ├── tex_pool.cpp │ ├── tw_utils.cpp │ ├── utils.cpp │ └── yt_utils.cpp ├── NetStream-DE/ │ ├── NetStream-DE.vcxproj │ ├── NetStream-DE.vcxproj.filters │ ├── NetStream-DE.vcxproj.user │ ├── download_enabler.cpp │ └── paf_runtime.c ├── NetStream.sln ├── README.md ├── README_MODULE.md ├── hls_test.m3u8 └── hls_test_clean_multi_aux.m3u8