Page 1 of 1

How to get vlc log using xcode

Posted: 08 Apr 2015 13:47
by greenboy
i have @"-vvvv" as media player initialization option. like this _listPlayer = [[VLCMediaListPlayer alloc] initWithOptions:@[@"-vvvv"]];
and I add "-vvv" or "-vvvv" in VLCLibrary of MobileVLCKit. detail in below
- (NSArray *)_defaultOptions
{
NSArray *vlcParams = [[NSUserDefaults standardUserDefaults] objectForKey:@"VLCParams"];
#if TARGET_OS_IPHONE
if (!vlcParams) {
vlcParams = @[@"--no-color",
@"--no-osd",
@"--no-video-title-show",
@"--no-stats",
@"-vvvv",
#ifndef NOSCARYCODECS
@"--avcodec-fast",
#endif
@"--verbose=0",
@"--text-renderer=quartztext",
@"--avi-index=3",
@"--extraintf=ios_dialog_provider"];
}
#else
if (!vlcParams) {
NSMutableArray *defaultParams = [NSMutableArray array];
[defaultParams addObject:@"--play-and-pause"]; // We want every movie to pause instead of stopping at eof
[defaultParams addObject:@"--no-color"]; // Don't use color in output (Xcode doesn't show it)
[defaultParams addObject:@"--no-video-title-show"]; // Don't show the title on overlay when starting to play
[defaultParams addObject:@"--verbose=4"]; // Let's not wreck the logs
[defaultParams addObject:@"--no-sout-keep"];
[defaultParams addObject:@"--vout=macosx"]; // Select Mac OS X video output
[defaultParams addObject:@"--text-renderer=quartztext"]; // our CoreText-based renderer
[defaultParams addObject:@"--extraintf=macosx_dialog_provider"]; // Some extra dialog (login, progress) may come up from here

[[NSUserDefaults standardUserDefaults] setObject:defaultParams forKey:@"VLCParams"];
[[NSUserDefaults standardUserDefaults] synchronize];

vlcParams = defaultParams;
}
#endif

return vlcParams;
}

But the log still not show.
Anyone could help me?
Thanks.

Re: How to get vlc log using xcode

Posted: 08 Apr 2015 14:09
by fkuehne
Remove @"--verbose=0".

Re: How to get vlc log using xcode

Posted: 09 Apr 2015 05:10
by greenboy
Hi Felix,

Remove @"--verbose=0". But the log still not show. Xcode version 6.2 ,iPhone 6 plus version8.2 .
what's problem ?
Thanks

Re: How to get vlc log using xcode

Posted: 04 Mar 2022 17:21
by fatih
remove --no-stats from config.