WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: [wine] verbosity produces glitches  (Read 2754 times)

Offline P5music

  • Full Member
  • ***
  • Posts: 167
[wine] verbosity produces glitches
« on: June 15, 2010, 06:43:42 AM »
Hello,
I am using Reaper and Samplelord (testing Kontakt4 too) on tinycore with wine/wineasio.
(I am tweaking the system and I need your help also for the other two open questions found in this forum)
I am experiencing that in normal circumstances when Reaper is focused glitches can occur, while when it is minimized there are no glitches.
When the use is resource critical I see that glitches occur also with Reaper minimized and they are coincident with verbose messages in the corresponding terminal.
I suspect that all these glitches are not caused by real resource problems but by debugging stuff.
Can anyone help on this? Is there a way to disable all that messaging in the terminal?
Thanks in advance also for the other questions.

Offline curaga

  • Administrator
  • Hero Member
  • *****
  • Posts: 11022
Re: [wine] verbosity produces glitches
« Reply #1 on: June 15, 2010, 06:50:21 AM »
export WINEDEBUG=err-all,fixme-all

should remove all wine debug messages.
The only barriers that can stop you are the ones you create yourself.

Offline P5music

  • Full Member
  • ***
  • Posts: 167
Re: [wine] verbosity produces glitches
« Reply #2 on: June 15, 2010, 06:58:15 AM »
thanks friend!
is it permanent or have I to put it in xsession?

Offline curaga

  • Administrator
  • Hero Member
  • *****
  • Posts: 11022
Re: [wine] verbosity produces glitches
« Reply #3 on: June 15, 2010, 07:58:22 AM »
It's permanent for the shell session, so if you want it always, .xsession, .profile, or .ashrc would be ok places for it.

In general, wine isn't perfect, so if your hw is capable, have you considered virtualization?
The only barriers that can stop you are the ones you create yourself.

Offline P5music

  • Full Member
  • ***
  • Posts: 167
Re: [wine] verbosity produces glitches
« Reply #4 on: June 15, 2010, 10:50:53 AM »
I think virtualization does not go towards fast boot time, which is my main goal. However, now I am trying to accomplish this system. Your answers were useful. thanks.
last thing: is the command for jack similar?
like
export JACKDEBUG=err-all,fixme-all

Offline curaga

  • Administrator
  • Hero Member
  • *****
  • Posts: 11022
Re: [wine] verbosity produces glitches
« Reply #5 on: June 15, 2010, 04:44:54 PM »
I don't know about jack, but I'd doubt it's similar.
The only barriers that can stop you are the ones you create yourself.

Offline P5music

  • Full Member
  • ***
  • Posts: 167
Re: [wine] verbosity produces glitches
« Reply #6 on: June 18, 2010, 05:12:45 AM »
could jack 2>/dev/null be useful?
does this command start jack too?

Offline gutmensch

  • Retired Admins
  • Hero Member
  • *****
  • Posts: 605
  • I can make it disappear, have no fear!
    • remembrance blog
Re: [wine] verbosity produces glitches
« Reply #7 on: June 18, 2010, 07:20:58 AM »
there are 3 standard channels for input and output of programs:

STDIN - Input to a program, = 0
STDOUT - Output of a program, = 1
STDERR - Error-Output of a program, = 2

when executing a command you can always redirect the output of the program with > to another file, so 2>/dev/null redirects the error output to /dev/null (which means it is "thrown away" and you won't see it in the console anymore).

example: $ jack 1>/dev/null 2>&1

would mean "redirect the output to trash and redirect STDERR(2) to STDOUT(1), therefore it goes to trash as well".
If I seem unduly clear to you, you must have misunderstood what I said. (Alan Greenspan)

Offline P5music

  • Full Member
  • ***
  • Posts: 167
Re: [wine] verbosity produces glitches
« Reply #8 on: June 21, 2010, 04:42:05 AM »
$ jack 1>/dev/null
gave
command not found (or similar)

Offline P5music

  • Full Member
  • ***
  • Posts: 167
still glitches with audio app
« Reply #9 on: October 07, 2010, 01:25:51 PM »
Hello,
I am using Reaper with wine,wineasio,jack,alsa.
Early posts earned me this tricks:
Code: [Select]
jack 2>/dev/null
wine 2>/dev/null
export WINEDEBUG=err-all,fixme-all
to avoid glitches but still some glitches remain. They do not seem to be caused by too short audio latency.
Note: when I minimize the Reaper window they disappear, so it is still an "output" issue.
Thanks for any help.