Как отключить ошибки vlc

innergetic

New Cone
New Cone
Posts: 9
Joined: 24 Apr 2009 22:06
Operating System: Win 8.1

Set «Hide future errors» to off permanently

Hi,

only a minor issue, but it keeps bugging me:
When playing several files, I sometimes delete some (phyisically, not from the playlist) before they are played. When the playlist gets to the respective entry, I get the usual «Error» notification, where I can click the «hide future errors» window. This works fine, but the error windows pops up again after shutting VLC down and restarting it.

How do I set «hide future errors» to permanent mode, i.e., how do I make VLC just skip to the next file instead of notifying me.
I already tried setting VLC to silent (Tools>Preferences>Interface>Be Quiet), but VLC does not seem to care :)

Any help appreciated



JSLover

Cone that earned his stripes
Cone that earned his stripes
Posts: 116
Joined: 20 Mar 2012 00:08
VLC version: 2.1.5
Operating System: Win7
Location: r.secsrv.net/youtube.lua

Re: Set «Hide future errors» to off permanently

Postby JSLover » 01 Oct 2013 23:19

nobody?

…sorry, I’m not sure if I saw this before, but I just tested a solution, so I’m posting it now…

  1. In VLC, click ToolsPreferences
  2. At the bottom left, for Show settings, click All
  3. At the top left, for Search, paste the string: unimportant
  4. In the box below Search, click: Qt
  5. On the right-side, near the very bottom, uncheck Show unimportant error and warnings dialogs
  6. Click Save
  7. Close VLC to commit the pref change (otherwise, if VLC crashes, this change {or some changes} might not be saved)
  8. Run VLC & see if that fixes the problem

Note: To VLC devs: The string «Show unimportant error and warnings dialogs» is slightly bad English («too plural»), I would recommend «Show unimportant errors & warnings» or «Show unimportant error & warning dialogs».

«why the f*** do i need a google+ account to comment on a video?» — jawed (2013) (about YouTube’s new requirement of Google+)

youtube.lua — Play YouTube videos in VLC!
Updated: Thu, Jan 15, 2015 — 1/15/15, 7:19:19pm EST

forum.videolan.org/viewtopic.php?f=29&t=111977&p=379147#p379147
Sigh, the above can’t be a link: «You cannot use certain BBCodes: [url].»…so, I can’t even link back to a post on this forum?
How about this: can long-term/trusted users be allowed links in sigs?


innergetic

New Cone
New Cone
Posts: 9
Joined: 24 Apr 2009 22:06
Operating System: Win 8.1

Re: Set «Hide future errors» to off permanently

Postby innergetic » 02 Oct 2013 23:52

woooohoooooooo!
It works, great, thank you soooo much!!!!!

I bow to the superior (wo?)man



Return to “General VLC media player Troubleshooting”

Who is online

Users browsing this forum: Bing [Bot] and 3 guests

Category:

  • Кино
  • Cancel

Милостивые государи!
В VLC, при просмотре фильма иногда выводится окно с ошибкой, но фильм при этом воспроизводится дальше и каких-то видимых проблем нет. Вывод ошибки отдает маразмом, совсем не понимаю зачем авторы это сделали.

Можно-ли в VLC отключить вывод любых ошибок?

geotheory

У меня Mac Mini запускает видео на петле для публичного показа, который иногда дает сбой, я думаю, что обычно при включении других функций OSX. У меня есть скрипт для определения, когда VLC не запущен, и перезагрузка, но часто сверху появляется системное сообщение «VLC разбился ранее». Есть ли способ отключить это (я не могу найти опцию в расширенных опциях VLC), или, возможно, передать ответ «Продолжить» на него через Applescript?


1 ответ на вопрос

MariusMatutiae

Я не думаю, что это сообщение об ошибке vlc, я считаю, что вместо этого это обычная проблема Mac Reporter. В Snow Leopard, из терминала, эта команда

sudo chmod 000 /System/Library/CoreServices/Problem\ Reporter.app 

отключает его, пока это

sudo chmod 755 /System/Library/CoreServices/Problem\ Reporter.app 

повторно включает это. Вы не указали свою ОС, но я надеюсь, что вы можете использовать это в качестве отправной точки.

РЕДАКТИРОВАТЬ:

Я не сказал, что не знаю, как отключить Crash Reporter, лол. Я только сказал, что не знаю, на какой ОС вы работали. ;-)

Во всяком случае:

defaults write com.apple.CrashReporter DialogType none 

выключает,

defaults write com.apple.CrashReporter DialogType crashreport 

снова включается Единственное: я не могу это проверить.

Похожие вопросы

  • 3
    Варианты программного обеспечения Blu-ray для Mac OS X?


  • 1
    Задержка потокового видео


  • 3
    Как вы можете скопировать DVD с помощью медиаплеера VLC на Mac OSX?



  • 1
    При воспроизведении DVD-дисков с помощью медиаплеера VLC видео и аудио приостанавливаются несколько…


  • 4
    Выполнить яблочный скрипт без открытия редактора


  • 2
    Поиск папок, которые содержат измененные файлы с даты


  • 2
    Звуковая карта прерывается во время чтения / записи DVD-дисков


  • 1
    Способ удалить определенный текст из входящей электронной почты в Mail.app (Mac Mail)?


  • 5
    VLC + Windows 7 = пиксельное воспроизведение?


  • 4
    Почему VLC воспроизводит звук только при использовании наушников?


with recent (MobileVLCKit-prod 2.7.9) of MobileVLCKit you can implement VLCCustomDialogRendererProtocol on some object
after that

...
@property (nonatomic, strong) VLCDialogProvider * dialogProvider;
....
        //dump information
        VLCLibrary * lib=[VLCLibrary sharedLibrary];

        //configure dialog provider
        self.dialogProvider=[[VLCDialogProvider alloc] initWithLibrary:lib customUI:YES];
        self.dialogProvider.customRenderer=self;

...

your implementation of Dialog Provider can show any dialog it likes or nothing at all.
Example of «just log but show nothing at all» version of delegate methods

#pragma mark - VLCCustomDialogRendererProtocol methods

/**
 * called when VLC wants to show an error
 * \param the dialog title
 * \param the error message
 */
- (void)showErrorWithTitle:(NSString * _Nonnull)error
                   message:(NSString * _Nonnull)message {
    CLogERROR(LOGDOMAIN_MINIPLAYER,@"VLC Error:%@:%@",error,message);
}

/**
 * called when user logs in to something
 * If VLC includes a keychain module for your platform, a user can store stuff
 * \param login title
 * \param an explaining message
 * \param a default username within context
 * \param indicator whether storing is even a possibility
 * \param reference you need to send the results to
 */
- (void)showLoginWithTitle:(NSString * _Nonnull)title
                   message:(NSString * _Nonnull)message
           defaultUsername:(NSString * _Nullable)username
          askingForStorage:(BOOL)askingForStorage
             withReference:(NSValue * _Nonnull)reference {

    CLogWARN(LOGDOMAIN_MINIPLAYER,@"VLC login request:title:%@,message:%@,username:%@ reference:%@",title,message,username,reference);
    //we should respond with postUsername... but we can't...and we are not supposed to so anyway

}

/**
 * called when VLC needs the user to decide something
 * \param the dialog title
 * \param an explaining message text
 * \param a question type
 * \param cancel button text
 * \param action 1 text
 * \param action 2 text
 * \param reference you need to send the action to
 */
- (void)showQuestionWithTitle:(NSString * _Nonnull)title
                      message:(NSString * _Nonnull)message
                         type:(VLCDialogQuestionType)questionType
                 cancelString:(NSString * _Nullable)cancelString
                action1String:(NSString * _Nullable)action1String
                action2String:(NSString * _Nullable)action2String
                withReference:(NSValue * _Nonnull)reference {

    NSString * questionTypeString;
    switch (questionType) {
        case VLCDialogQuestionNormal:
            questionTypeString=@"VLCDialogQuestionNormal";
            break;
        case VLCDialogQuestionWarning:
            questionTypeString=@"VLCDialogQuestionWarning";
            break;
        case VLCDialogQuestionCritical:
            questionTypeString=@"VLCDialogQuestionCritical";
            break;
    }
    CLogWARN(LOGDOMAIN_MINIPLAYER,@"VLC Question:Type:%@ Title:%@ Message:%@, cancel:%@,action1:%@,action2:%@,reference:%@",
              questionTypeString, title,message,cancelString,action1String,action2String,reference);
    //just cancel
    [self.dialogProvider postAction:3 forDialogReference:reference];
}

/**
 * called when VLC wants to show some progress
 * \param the dialog title
 * \param an explaining message
 * \param indicator whether progress indeterminate
 * \param initial progress position
 * \param optional string for cancel button if operation is cancellable
 * \param reference VLC will include in updates
 */
- (void)showProgressWithTitle:(NSString * _Nonnull)title
                      message:(NSString * _Nonnull)message
              isIndeterminate:(BOOL)isIndeterminate
                     position:(float)position
                 cancelString:(NSString * _Nullable)cancelString
                withReference:(NSValue * _Nonnull)reference {
    CLogWARN(LOGDOMAIN_MINIPLAYER,@"VLC Progress:Title:%@ Message:%@, cancel:%@, position:%f,reference %@",title,message,cancelString,position,reference);
    //just try to cancel
    [self.dialogProvider dismissDialogWithReference:reference];

}

/** called when VLC wants to update an existing progress dialog
 * \param reference to the existing progress dialog
 * \param updated message
 * \param current position
 */
- (void)updateProgressWithReference:(NSValue * _Nonnull)reference
                            message:(NSString * _Nullable)message
                            postion:(float)position {
    CLogWARN(LOGDOMAIN_MINIPLAYER,@"VLC Progress update:Message:%@,  position:%f,reference:%@",message,position,reference);
    //just try to cancel
    [self.dialogProvider dismissDialogWithReference:reference];
}

/** VLC decided to destroy a dialog
 * \param reference to the dialog to destroy
 */
- (void)cancelDialogWithReference:(NSValue * _Nonnull)reference {
    CLogWARN(LOGDOMAIN_MINIPLAYER,@"VLC cancel dialog,referecne %@... ok",reference);
}


r/VLC


r/VLC

This is an unofficial subreddit for the [VLC media player](http://www.videolan.org/vlc/index.html). Anything related to VLC is welcome here.

VLC is a powerful all-in-one, open-source, cross-platform media player. It supports most audio/video formats, DVDs and CDs, and various streaming protocols.




Members





Online



by

ikebu


Понравилась статья? Поделить с друзьями:
  • Как отключить ошибки вов
  • Как определяется абсолютная ошибка прямых измерений
  • Как отключить ошибки eslint
  • Как оспорить кадастровую ошибку
  • Как осознать свою ошибку