Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add video playback with subtitles via "Universal Media Player" Unity plugin (based on VLC media player) #126

Draft
wants to merge 19 commits into
base: mod
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
110 changes: 110 additions & 0 deletions Assembly-CSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@
<Compile Include="MOD.Scripts.Core.Movie\MODApplyToMaterial.cs" />
<Compile Include="MOD.Scripts.Core.Movie\MovieInfo.cs" />
<Compile Include="MOD.Scripts.Core.Movie\TextureMovieRenderer.cs" />
<Compile Include="MOD.Scripts.Core.Movie\UMPRenderer.cs" />
<Compile Include="MOD.Scripts.Core.Scene\MODSceneController.cs" />
<Compile Include="MOD.Scripts.Core.Scene\MODLipsyncCache.cs" />
<Compile Include="MOD.Scripts.Core.Scene\MODTextureController.cs" />
Expand Down Expand Up @@ -443,6 +444,8 @@
<Compile Include="NGUIMath.cs" />
<Compile Include="NGUIText.cs" />
<Compile Include="NGUITools.cs" />
<Compile Include="PlayerBufferSound.cs" />
<Compile Include="PlayerBufferVideo.cs" />
<Compile Include="Polygon.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="PropertyBinding.cs" />
Expand Down Expand Up @@ -476,7 +479,9 @@
<Compile Include="RenderHeads.Media.AVProVideo\Windows.cs" />
<Compile Include="RenderHeads.Media.AVProVideo\WindowsMediaPlayer.cs" />
<Compile Include="Rotator.cs" />
<Compile Include="Services.Helpers\Query.cs" />
<Compile Include="Sine.cs" />
<Compile Include="SoundType.cs" />
<Compile Include="SpringPanel.cs" />
<Compile Include="SpringPosition.cs" />
<Compile Include="SpriteOptionButton.cs" />
Expand Down Expand Up @@ -613,6 +618,111 @@
<Compile Include="UIWidget.cs" />
<Compile Include="UIWidgetContainer.cs" />
<Compile Include="UIWrapContent.cs" />
<Compile Include="UMP.Services.Helpers\HttpUtility.cs" />
<Compile Include="UMP.Services.Helpers\Json.cs" />
<Compile Include="UMP.Services.Helpers\Operations.cs" />
<Compile Include="UMP.Services.Helpers\Text.cs" />
<Compile Include="UMP.Services.Helpers\UnscrambledQuery.cs" />
<Compile Include="UMP.Services.Youtube\YoutubeService.cs" />
<Compile Include="UMP.Services.Youtube\YoutubeVideo.cs" />
<Compile Include="UMP.Services\AdaptiveFormat.cs" />
<Compile Include="UMP.Services\AudioFormat.cs" />
<Compile Include="UMP.Services\ServiceBase.cs" />
<Compile Include="UMP.Services\Video.cs" />
<Compile Include="UMP.Services\VideoFormat.cs" />
<Compile Include="UMP.Services\VideoServices.cs" />
<Compile Include="UMP.Wrappers\AudioDescription.cs" />
<Compile Include="UMP.Wrappers\AudioOutputDevice.cs" />
<Compile Include="UMP.Wrappers\AudioTrackInfo.cs" />
<Compile Include="UMP.Wrappers\DurationChanged.cs" />
<Compile Include="UMP.Wrappers\EventStruct.cs" />
<Compile Include="UMP.Wrappers\EventTypes.cs" />
<Compile Include="UMP.Wrappers\Freed.cs" />
<Compile Include="UMP.Wrappers\IWrapperAudio.cs" />
<Compile Include="UMP.Wrappers\IWrapperNative.cs" />
<Compile Include="UMP.Wrappers\IWrapperPlayer.cs" />
<Compile Include="UMP.Wrappers\IWrapperSpu.cs" />
<Compile Include="UMP.Wrappers\ListItemAdded.cs" />
<Compile Include="UMP.Wrappers\ListItemDeleted.cs" />
<Compile Include="UMP.Wrappers\ListPlayerNextItemSet.cs" />
<Compile Include="UMP.Wrappers\ListWillAddItem.cs" />
<Compile Include="UMP.Wrappers\ListWillDeleteItem.cs" />
<Compile Include="UMP.Wrappers\LogLevels.cs" />
<Compile Include="UMP.Wrappers\MediaDescriptorUnion.cs" />
<Compile Include="UMP.Wrappers\MediaMetadatas.cs" />
<Compile Include="UMP.Wrappers\MediaSlaveType.cs" />
<Compile Include="UMP.Wrappers\MediaStates.cs" />
<Compile Include="UMP.Wrappers\MetaChanged.cs" />
<Compile Include="UMP.Wrappers\NativeFunctionAttribute.cs" />
<Compile Include="UMP.Wrappers\ParsedChanged.cs" />
<Compile Include="UMP.Wrappers\ParsedStatus.cs" />
<Compile Include="UMP.Wrappers\PlayerBuffering.cs" />
<Compile Include="UMP.Wrappers\PlayerLengthChanged.cs" />
<Compile Include="UMP.Wrappers\PlayerMediaChanged.cs" />
<Compile Include="UMP.Wrappers\PlayerPausableChanged.cs" />
<Compile Include="UMP.Wrappers\PlayerPositionChanged.cs" />
<Compile Include="UMP.Wrappers\PlayerSeekableChanged.cs" />
<Compile Include="UMP.Wrappers\PlayerSnapshotTaken.cs" />
<Compile Include="UMP.Wrappers\PlayerTimeChanged.cs" />
<Compile Include="UMP.Wrappers\PlayerTitleChanged.cs" />
<Compile Include="UMP.Wrappers\StateChanged.cs" />
<Compile Include="UMP.Wrappers\SubitemAdded.cs" />
<Compile Include="UMP.Wrappers\TrackDescription.cs" />
<Compile Include="UMP.Wrappers\TrackInfo.cs" />
<Compile Include="UMP.Wrappers\TrackTypes.cs" />
<Compile Include="UMP.Wrappers\VideoTrackInfo.cs" />
<Compile Include="UMP.Wrappers\VlmMediaEvent.cs" />
<Compile Include="UMP.Wrappers\WrapperInternal.cs" />
<Compile Include="UMP.Wrappers\WrapperStandalone.cs" />
<Compile Include="UMP\ARVideoCanvasHelper.cs" />
<Compile Include="UMP\AudioOutput.cs" />
<Compile Include="UMP\EventsHandlerExample.cs" />
<Compile Include="UMP\ILogMessageListener.cs" />
<Compile Include="UMP\IMediaListener.cs" />
<Compile Include="UMP\IPathPreparedListener.cs" />
<Compile Include="UMP\IPlayer.cs" />
<Compile Include="UMP\IPlayerAudio.cs" />
<Compile Include="UMP\IPlayerBufferingListener.cs" />
<Compile Include="UMP\IPlayerEncounteredErrorListener.cs" />
<Compile Include="UMP\IPlayerEndReachedListener.cs" />
<Compile Include="UMP\IPlayerImageReadyListener.cs" />
<Compile Include="UMP\IPlayerOpeningListener.cs" />
<Compile Include="UMP\IPlayerPausedListener.cs" />
<Compile Include="UMP\IPlayerPlayingListener.cs" />
<Compile Include="UMP\IPlayerPositionChangedListener.cs" />
<Compile Include="UMP\IPlayerPreparedListener.cs" />
<Compile Include="UMP\IPlayerSnapshotTakenListener.cs" />
<Compile Include="UMP\IPlayerSpu.cs" />
<Compile Include="UMP\IPlayerStoppedListener.cs" />
<Compile Include="UMP\IPlayerTimeChangedListener.cs" />
<Compile Include="UMP\LogLevels.cs" />
<Compile Include="UMP\MediaPlayer.cs" />
<Compile Include="UMP\MediaPlayerHelper.cs" />
<Compile Include="UMP\MediaPlayerStandalone.cs" />
<Compile Include="UMP\MediaPlayerWebGL.cs" />
<Compile Include="UMP\MediaStats.cs" />
<Compile Include="UMP\MediaTrackInfo.cs" />
<Compile Include="UMP\MediaTrackInfoAudio.cs" />
<Compile Include="UMP\MediaTrackInfoExpanded.cs" />
<Compile Include="UMP\MediaTrackInfoSpu.cs" />
<Compile Include="UMP\MediaTrackInfoUnknown.cs" />
<Compile Include="UMP\MediaTrackInfoVideo.cs" />
<Compile Include="UMP\NativeInterop.cs" />
<Compile Include="UMP\PlayerManagerAudios.cs" />
<Compile Include="UMP\PlayerManagerEvents.cs" />
<Compile Include="UMP\PlayerManagerLogs.cs" />
<Compile Include="UMP\PlayerOptions.cs" />
<Compile Include="UMP\PlayerOptionsAndroid.cs" />
<Compile Include="UMP\PlayerOptionsIPhone.cs" />
<Compile Include="UMP\PlayerOptionsStandalone.cs" />
<Compile Include="UMP\PlayerState.cs" />
<Compile Include="UMP\SimpleRotateSphere.cs" />
<Compile Include="UMP\UMPAudioOutput.cs" />
<Compile Include="UMP\UMPSettings.cs" />
<Compile Include="UMP\UMPSmoothRewind.cs" />
<Compile Include="UMP\UMPTextureUpdator.cs" />
<Compile Include="UMP\UMPUIExample.cs" />
<Compile Include="UMP\UniversalMediaPlayer.cs" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Expand Down
2 changes: 2 additions & 0 deletions Assets.Scripts.Core.Buriko/BurikoMemory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@ public BurikoMemory()
variableReference.Add("GBackgroundSet", 528);
variableReference.Add("GAudioSet", 529);
variableReference.Add("GRyukishiMode43Aspect", 530);
variableReference.Add("GOpeningSubtitleTrack", 531);
variableReference.Add("GOpeningAudioTrack", 532);

// 611 - 619 used for additional chapter progress info
SetGlobalFlag("GMessageSpeed", 60);
Expand Down
3 changes: 3 additions & 0 deletions Assets.Scripts.Core/GameSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
using Assets.Scripts.UI.Config;
using Assets.Scripts.UI.Prompt;
using MOD.Scripts.Core.Localization;
using MOD.Scripts.Core.Movie;
using MOD.Scripts.UI;
using System;
using System.Collections;
Expand Down Expand Up @@ -291,6 +292,8 @@ private void Initialize()
{
KeyHook = new KeyHook();
}

UMPRenderer.InitMediaPlayerGameObject(this);
}

public void SetResolution(int width, int height, bool fullscreen)
Expand Down
Binary file added DLLs/UniversalMediaPlayer.dll
Binary file not shown.
Binary file added DLLs/libvlc.dll
Binary file not shown.
Binary file added DLLs/libvlccore.dll
Binary file not shown.
Binary file added DLLs/plugins/access/libfilesystem_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/access/libhttp_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/access/libhttps_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/access/liblive555_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/access/librtp_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/access/libudp_plugin.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added DLLs/plugins/audio_filter/libequalizer_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/audio_filter/libgain_plugin.dll
Binary file not shown.
Binary file not shown.
Binary file added DLLs/plugins/audio_filter/libkaraoke_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/audio_filter/libmad_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/audio_filter/libmono_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/audio_filter/libnormvol_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/audio_filter/libparam_eq_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/audio_filter/libremap_plugin.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added DLLs/plugins/audio_filter/libtospdif_plugin.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added DLLs/plugins/audio_output/libamem_plugin.dll
Binary file not shown.
Binary file not shown.
Binary file added DLLs/plugins/codec/liba52_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libadpcm_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libaes3_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libaom_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libaraw_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libaribsub_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libavcodec_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libcc_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libcdg_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libcrystalhd_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libcvdsub_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libd3d11va_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libdav1d_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libdca_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libddummy_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libdmo_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libdvbsub_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libdxva2_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libedummy_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libfaad_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libflac_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libfluidsynth_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libg711_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libjpeg_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libkate_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/liblibass_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/liblibmpeg2_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/liblpcm_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libmft_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libmpg123_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/liboggspots_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libopus_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libpng_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libqsv_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/librawvideo_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/librtpvideo_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libschroedinger_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libscte18_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libscte27_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libsdl_image_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libspdif_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libspeex_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libspudec_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libstl_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libsubsdec_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libsubstx3g_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libsubsusf_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libsvcdsub_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libt140_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libtextst_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libtheora_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libttml_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libtwolame_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libuleaddvaudio_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libvorbis_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libvpx_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libwebvtt_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libx26410b_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libx264_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libx265_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/codec/libzvbi_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/control/libdummy_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/control/libgestures_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/control/libhotkeys_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/control/libnetsync_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/control/libntservice_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/control/liboldrc_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/control/libwin_hotkeys_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/control/libwin_msg_plugin.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added DLLs/plugins/demux/libadaptive_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libaiff_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libasf_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libau_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libavi_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libcaf_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libdemux_cdg_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libdemux_chromecast_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libdemux_stl_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libdemuxdump_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libdiracsys_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libdirectory_demux_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libes_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libflacsys_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libgme_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libh26x_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libimage_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libmjpeg_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libmkv_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libmod_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libmp4_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libmpc_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libmpgv_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libnoseek_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libnsc_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libnsv_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libnuv_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libogg_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libplaylist_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libps_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libpva_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/librawaud_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/librawdv_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/librawvid_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libreal_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libsid_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libsmf_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libsubtitle_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libts_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libtta_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libty_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libvc1_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libvobsub_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libvoc_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libwav_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/demux/libxa_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/gui/libqt_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/gui/libskins2_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/misc/libaddonsfsstorage_plugin.dll
Binary file not shown.
Binary file not shown.
Binary file added DLLs/plugins/misc/libaudioscrobbler_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/misc/libexport_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/misc/libfingerprinter_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/misc/libgnutls_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/misc/liblogger_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/misc/libstats_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/misc/libvod_rtsp_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/misc/libxml_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/mux/libmux_asf_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/mux/libmux_avi_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/mux/libmux_dummy_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/mux/libmux_mp4_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/mux/libmux_mpjpeg_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/mux/libmux_ogg_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/mux/libmux_ps_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/mux/libmux_ts_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/mux/libmux_wav_plugin.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added DLLs/plugins/stream_filter/libadf_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/stream_filter/libaribcam_plugin.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added DLLs/plugins/stream_filter/libhds_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/stream_filter/libinflate_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/stream_filter/libprefetch_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/stream_filter/librecord_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/stream_filter/libskiptags_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/text_renderer/libfreetype_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/text_renderer/libsapi_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/text_renderer/libtdummy_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_chroma/libchain_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_chroma/libgrey_yuv_plugin.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added DLLs/plugins/video_chroma/libi420_rgb_plugin.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added DLLs/plugins/video_chroma/libi420_yuy2_plugin.dll
Binary file not shown.
Binary file not shown.
Binary file added DLLs/plugins/video_chroma/libi422_i420_plugin.dll
Binary file not shown.
Binary file not shown.
Binary file added DLLs/plugins/video_chroma/libi422_yuy2_plugin.dll
Binary file not shown.
Binary file not shown.
Binary file added DLLs/plugins/video_chroma/librv32_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_chroma/libswscale_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_chroma/libyuvp_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_chroma/libyuy2_i420_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_chroma/libyuy2_i422_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_filter/libadjust_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_filter/libalphamask_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_filter/libanaglyph_plugin.dll
Binary file not shown.
Binary file not shown.
Binary file added DLLs/plugins/video_filter/libball_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_filter/libblend_plugin.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added DLLs/plugins/video_filter/libcanvas_plugin.dll
Binary file not shown.
Binary file not shown.
Binary file added DLLs/plugins/video_filter/libcroppadd_plugin.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added DLLs/plugins/video_filter/liberase_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_filter/libextract_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_filter/libfps_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_filter/libfreeze_plugin.dll
Binary file not shown.
Binary file not shown.
Binary file added DLLs/plugins/video_filter/libgradfun_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_filter/libgradient_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_filter/libgrain_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_filter/libhqdn3d_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_filter/libinvert_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_filter/libmagnify_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_filter/libmirror_plugin.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added DLLs/plugins/video_filter/liboldmovie_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_filter/libposterize_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_filter/libpostproc_plugin.dll
Binary file not shown.
Binary file not shown.
Binary file added DLLs/plugins/video_filter/libpuzzle_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_filter/libripple_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_filter/librotate_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_filter/libscale_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_filter/libscene_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_filter/libsepia_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_filter/libsharpen_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_filter/libtransform_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_filter/libvhs_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_filter/libwave_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_output/libcaca_plugin.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added DLLs/plugins/video_output/libdrawable_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_output/libflaschen_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_output/libgl_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_output/libglwin32_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_output/libvdummy_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_output/libvmem_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_output/libwgl_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_output/libwingdi_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_output/libwinhibit_plugin.dll
Binary file not shown.
Binary file added DLLs/plugins/video_output/libyuv_plugin.dll
Binary file not shown.
3 changes: 3 additions & 0 deletions MOD.Scripts.Core.Movie/MovieInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,8 @@ public MovieInfo(string name, string ext)
Name = name;
Ext = ext;
}

public int subtitleTrack = 0;
public int audioTrack = 0;
}
}
Loading
Loading