File tree 4 files changed +4
-4
lines changed
Assets/VLCUnity/Demos/Scripts
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ void Awake()
18
18
19
19
Core . Initialize ( Application . dataPath ) ;
20
20
21
- _libVLC = new LibVLC ( enableDebugLogs : true , "--no-osd" ) ;
21
+ _libVLC = new LibVLC ( enableDebugLogs : true ) ;
22
22
23
23
Application . SetStackTraceLogType ( LogType . Log , StackTraceLogType . None ) ;
24
24
//_libVLC.Log += (s, e) => UnityEngine.Debug.Log(e.FormattedLog); // enable this for logs in the editor
Original file line number Diff line number Diff line change @@ -252,7 +252,7 @@ void CreateLibVLC()
252
252
}
253
253
254
254
Core . Initialize ( Application . dataPath ) ; //Load VLC dlls
255
- libVLC = new LibVLC ( enableDebugLogs : true , "--no-osd" ) ; //--no-osd prevents play and pause icons being overlaid on our video
255
+ libVLC = new LibVLC ( enableDebugLogs : true ) ; //You can customize LibVLC with advanced CLI options here https://wiki.videolan.org/VLC_command-line_help/
256
256
257
257
//Setup Error Logging
258
258
Application . SetStackTraceLogType ( LogType . Log , StackTraceLogType . None ) ;
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ void Awake()
22
22
23
23
Core . Initialize ( Application . dataPath ) ;
24
24
25
- _libVLC = new LibVLC ( enableDebugLogs : true , "--no-osd" ) ;
25
+ _libVLC = new LibVLC ( enableDebugLogs : true ) ;
26
26
27
27
Application . SetStackTraceLogType ( LogType . Log , StackTraceLogType . None ) ;
28
28
//_libVLC.Log += (s, e) => UnityEngine.Debug.Log(e.FormattedLog); // enable this for logs in the editor
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ void Awake()
19
19
{
20
20
Core . Initialize ( Application . dataPath ) ;
21
21
22
- _libVLC = new LibVLC ( enableDebugLogs : true , "--no-osd" ) ;
22
+ _libVLC = new LibVLC ( enableDebugLogs : true ) ;
23
23
24
24
Application . SetStackTraceLogType ( LogType . Log , StackTraceLogType . None ) ;
25
25
//_libVLC.Log += (s, e) => UnityEngine.Debug.Log(e.FormattedLog); // enable this for logs in the editor
You can’t perform that action at this time.
0 commit comments